/* ============================================
   SelfStart Tech — Design System & Styles
   ============================================ */
@import url('responsive.css');

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-bg: #eff6ff;
  --secondary: #22c55e;
  --secondary-light: #4ade80;
  --secondary-dark: #16a34a;
  --secondary-bg: #f0fdf4;
  --blue: var(--primary);
  --blue-light: var(--primary-light);
  --blue-dark: var(--primary-dark);
  --green: var(--secondary);
  --green-light: var(--secondary-light);
  --green-dark: var(--secondary-dark);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(37, 99, 235, 0.12);
  --shadow-xl: 0 12px 40px rgba(37, 99, 235, 0.15);

  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --radius-full: 8px;

  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-agency: 'Plus Jakarta Sans', var(--font-sans);
  --font-display: var(--font-agency);

  --header-height: 58px;
  --header-crumb-height: 30px;
  --site-top-offset: var(--header-height);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section {
  padding: 100px 0;
  width: 100%;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__text {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

.section__text--center {
  margin: 0 auto;
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.gradient-text {
  color: var(--secondary);
}

.text-blue { color: var(--primary); }
.text-green { color: var(--secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.btn--cta {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn--cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--secondary);
  color: var(--white);
}

.btn--green:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
  gap: 16px;
}

.header--clean {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--gray-200);
}

.header--slim .header__inner {
  height: 58px;
}

.header--slim .logo__img {
  height: 36px;
}

.header__crumb {
  border-top: 1px solid rgba(226, 232, 240, 0.75);
  background: transparent;
}

.header.has-crumb {
  background: rgba(255, 255, 255, 0.94);
}

.header__crumb-inner {
  padding: 5px 0 7px;
  min-height: var(--header-crumb-height);
  display: flex;
  align-items: center;
}

.header__crumb .breadcrumb {
  width: 100%;
}

.header__crumb .breadcrumb ol {
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

body.has-page-top {
  --site-top-offset: calc(var(--header-height) + var(--header-crumb-height));
  scroll-padding-top: var(--site-top-offset);
}

body.has-page-top.has-svc-hero {
  --site-top-offset: calc(var(--header-height) + var(--header-crumb-height));
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-agency);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.header__phone:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo__img--footer,
.logo--footer .logo__img {
  height: 40px;
  max-width: 200px;
}

.logo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__icon svg {
  width: 100%;
  height: 100%;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
}

.logo__text strong {
  font-weight: 700;
  color: var(--gray-900);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__item--dropdown {
  position: relative;
}

.nav__link {
  font-family: var(--font-agency);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gray-600);
  position: relative;
}

.nav__link--trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
}

.nav__chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav__item--dropdown.open .nav__chevron {
  transform: rotate(180deg);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gray-900);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Services Dropdown — clean white list */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(320px, 92vw);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.nav__item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown--wide {
  width: min(520px, 94vw);
}

.nav-dropdown--wide .nav-dropdown__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: min(70vh, 520px);
}

@media (max-width: 600px) {
  .nav-dropdown--wide .nav-dropdown__list {
    grid-template-columns: 1fr;
  }
}

.nav-dropdown--clean {
  padding: 0;
}

.nav-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  max-height: min(68vh, 480px);
  overflow-y: auto;
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown__list li:last-child .nav-dropdown__item {
  border-bottom: none;
}

.nav-dropdown__item:hover {
  color: var(--primary);
  background: var(--primary-bg);
  padding-left: 24px;
}

.nav-dropdown__item--featured {
  font-weight: 600;
  color: var(--gray-900);
}

.nav-dropdown__item--featured:hover {
  color: var(--secondary-dark);
  background: var(--secondary-bg);
}

.nav-dropdown__tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--secondary);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-dropdown__tag--soon {
  background: var(--gray-500);
}

.nav-dropdown__item--soon {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-800);
}

.nav-dropdown__item--soon:hover {
  color: var(--gray-800);
  background: var(--gray-50);
  padding-left: 16px;
}

.nav-dropdown__hint {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
  max-width: 14rem;
}

.nav-dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.nav-dropdown__all {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.nav-dropdown__all:hover {
  color: var(--primary-dark);
}

/* Legacy dropdown sections — kept for compatibility */
.nav-dropdown__inner {
  max-height: min(72vh, 560px);
  overflow-y: auto;
  padding: 10px 0 12px;
  overscroll-behavior: contain;
}

.nav-dropdown__section {
  padding: 4px 10px;
}

.nav-dropdown__section--featured {
  margin: 4px 8px 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.nav-dropdown__section--ecommerce {
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
}

.nav-dropdown__section--webapp {
  background: var(--secondary-bg);
  border-left: 3px solid var(--secondary);
}

.nav-dropdown__parent {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown__parent:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.nav-dropdown__section--webapp .nav-dropdown__parent:hover {
  color: var(--secondary-dark);
  background: rgba(34, 197, 94, 0.08);
}

.nav-dropdown__links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 2px 0 4px 4px;
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown__link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.nav-dropdown__link--plus {
  font-weight: 700;
  color: var(--gray-800);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.nav-dropdown__link--plus:hover {
  color: var(--secondary-dark);
  background: rgba(34, 197, 94, 0.16);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.15);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.12);
  bottom: 0;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  top: 50%;
  left: 40%;
  animation: float 12s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  top: 20%;
  right: 10%;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.mockup__laptop {
  position: relative;
  z-index: 2;
}

.mockup__laptop-screen {
  background: var(--gray-900);
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  box-shadow: var(--shadow-xl);
}

.mockup__ui {
  background: var(--gray-50);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.mockup__ui-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.mockup__ui-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup__ui-bar span:first-child { background: #ef4444; }
.mockup__ui-bar span:nth-child(2) { background: #f59e0b; }
.mockup__ui-bar span:nth-child(3) { background: #22c55e; }

.mockup__ui-content {
  display: flex;
  height: calc(100% - 36px);
  padding: 12px;
  gap: 10px;
}

.mockup__ui-sidebar {
  width: 28%;
  background: var(--primary-bg);
  border-radius: 6px;
}

.mockup__ui-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mockup__ui-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.mockup__ui-card--wide {
  grid-column: 1 / -1;
}

.mockup__laptop-base {
  height: 12px;
  background: linear-gradient(to bottom, var(--gray-300), var(--gray-400));
  border-radius: 0 0 8px 8px;
  margin: 0 20px;
}

.mockup__phone {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 120px;
  background: var(--gray-900);
  border-radius: 20px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.mockup__phone-screen {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.mockup__phone-ui {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__phone-header {
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0.8;
}

.mockup__phone-item {
  height: 32px;
  background: var(--gray-100);
  border-radius: 4px;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.floating-icon svg {
  width: 26px;
  height: 26px;
}

.floating-icon--react {
  top: 5%;
  left: 0;
  color: #61dafb;
  animation-delay: 0s;
}

.floating-icon--node {
  top: 30%;
  right: -10px;
  color: #68a063;
  animation-delay: 1s;
}

.floating-icon--php {
  bottom: 35%;
  left: -20px;
  color: #777bb4;
  animation-delay: 2s;
}

.floating-icon--shopify {
  bottom: 10%;
  right: 5%;
  color: #96bf48;
  animation-delay: 1.5s;
}

/* About */
.about {
  background: var(--gray-50);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.about__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
}

.about__list li:nth-child(even) .about__check {
  background: var(--secondary);
}

.about__check svg {
  width: 16px;
  height: 16px;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 4px;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__icon--react {
  background: rgba(97, 218, 251, 0.12);
  color: #0891b2;
}

.service-card__icon--node {
  background: rgba(104, 160, 99, 0.12);
  color: #16a34a;
}

.service-card__icon--php {
  background: rgba(119, 123, 180, 0.12);
  color: #6366f1;
}

.service-card__icon--shopify {
  background: rgba(150, 191, 72, 0.12);
  color: #65a30d;
}

.service-card__icon--custom {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

.service-card__icon--mobile {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary-dark);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Stats */
.stats {
  padding: 0 0 100px;
}

/* Global full-width sections */
main,
.header,
.footer,
.portfolio,
.services,
.about,
.stats,
.cta,
.cta-full,
.trust-bar,
.main-services,
.about-strip,
.testimonials,
.hero-slider {
  width: 100%;
}

.stats__bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--primary);
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 48px 32px;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

.stats__item {
  text-align: center;
  color: var(--white);
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.stats__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 8px;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}

/* Portfolio */
.portfolio {
  background: var(--gray-50);
}

.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--secondary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card__image {
  position: relative;
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
}

.portfolio-card__body {
  padding: 24px 28px;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.portfolio-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* CTA */
.cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--primary-bg);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cta__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.cta__contact:hover {
  color: var(--blue);
}

.cta__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
}

.cta__contact-icon svg {
  width: 18px;
  height: 18px;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--footer .logo__text {
  color: var(--gray-200);
}

.logo--footer .logo__text strong {
  color: var(--white);
}

.footer__desc {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--secondary-light);
}

.footer__contact li {
  font-size: 0.9375rem;
}

.newsletter {
  display: flex;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--white);
}

.newsletter input::placeholder {
  color: var(--gray-500);
}

.newsletter button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background: var(--secondary);
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: filter var(--transition);
  border-radius: var(--radius-sm);
}

.newsletter button:hover {
  filter: brightness(1.1);
}

.newsletter button svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 20px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__bar {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .stats__divider {
    display: none;
  }

  .stats__item {
    flex: 1 1 40%;
    min-width: 140px;
  }

  .cta__card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .cta__contacts {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .mockup__phone {
    width: 90px;
    right: -10px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;
  }

  .floating-icon svg {
    width: 20px;
    height: 20px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats__item {
    flex: 1 1 100%;
  }

  .cta__contacts {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* Maintenance plans — shared home + services */
.section-block--plans {
  background: var(--gray-50);
  padding: 64px 0;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.plan-card--enterprise {
  border-color: var(--secondary);
}

.plan-card--custom {
  border-style: dashed;
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.plan-card__badge {
  display: inline-block;
  font-family: var(--font-agency);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  align-self: flex-start;
}

.plan-card__badge--popular {
  color: var(--white);
  background: var(--primary);
}

.plan-card h3 {
  font-family: var(--font-agency);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.plan-card__price {
  margin-bottom: 20px;
}

.plan-card__price strong {
  font-family: var(--font-agency);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.plan-card--enterprise .plan-card__price strong {
  color: var(--secondary-dark);
}

.plan-card__price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 4px;
}

.plan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  flex: 1;
}

.plan-card__list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.plan-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.plan-card__btn {
  width: 100%;
  text-align: center;
}

/* Services list — single services page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-item__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.service-item__icon img {
  object-fit: contain;
}

.service-item__icon svg {
  color: var(--primary);
}

.service-item__icon--blue {
  background: var(--primary-bg);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.service-item__icon--green {
  background: var(--secondary-bg);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.service-item__icon--green svg {
  color: var(--secondary-dark);
}

.service-item__body h3 {
  font-family: var(--font-agency);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.service-item__body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

.service-item__link {
  font-family: var(--font-agency);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.service-item__link:hover {
  color: var(--primary-dark);
}

.text-center {
  text-align: center;
}

/* Site footer redesign */
.footer--site {
  padding: 0;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.65);
}

.footer__cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 55%, #15803d 100%);
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__cta-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.footer__cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer__cta-text h3 span {
  color: #bbf7d0;
}

.footer__cta-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer--site .footer__main {
  padding: 56px 0 0;
}

.footer__grid--site {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: inline-block;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer__logo img {
  display: block;
  height: 38px;
  width: auto;
}

.footer--site .footer__desc {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: var(--white);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link--wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer__col .footer__heading {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--secondary-light);
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__contact-list li,
.footer__contact-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-list a:hover {
  color: var(--secondary-light);
}

.footer__newsletter {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.footer__newsletter input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 0.8125rem;
}

.footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter button {
  padding: 10px 14px;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
}

.footer__newsletter button svg {
  width: 16px;
  height: 16px;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
}

.footer__trust span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer--site .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  text-align: center;
}

.footer--site .footer__bottom--center {
  justify-content: center;
}

.footer--site .footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: var(--white);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  .header__phone span {
    display: none;
  }

  .footer__grid--site {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer__grid--site {
    grid-template-columns: 1fr;
  }

  .footer--site .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
  }

  .service-item {
    grid-template-columns: auto 1fr;
  }

  .service-item__link {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
