

/* ──────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-primary: #0A2540;
  --color-primary-light: #0d3260;
  --color-accent: #1a73e8;
  --color-accent-2: #00c6a2;
  --color-bg: #ffffff;
  --color-surface: #f7f9fc;
  --color-surface-2: #eef2f8;
  --color-text: #111111;
  --color-text-muted: #5a6a7a;
  --color-border: #e2e8f0;
  --color-white: #ffffff;
  --bg: #f0f5ff;
  --bg2: #e8f0fe;
  --color-gold: #f59e0b;
  --surface: #ffffff;
  --card: #ffffff;
  
  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, .06), 0 1px 2px rgba(10, 37, 64, .04);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, .10), 0 2px 6px rgba(10, 37, 64, .06);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, .14), 0 4px 12px rgba(10, 37, 64, .06);
  --shadow-xl: 0 24px 64px rgba(10, 37, 64, .18);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container: 1200px;
  --header-h: 72px;
}

/* ──────────────────────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  /* custom dot cursor */
}

/* ── Custom Dot Cursor ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.15s ease;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(26, 115, 232, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, opacity 0.15s ease;
  will-change: left, top;
}

/* Expand ring on hoverable elements */
body.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(10, 37, 64, 0.25);
}

/* Shrink on click */
body.cursor-click .cursor-dot {
  width: 6px;
  height: 6px;
}

body.cursor-click .cursor-ring {
  width: 28px;
  height: 28px;
  border-color: var(--color-accent);
}

/* Hide cursor on mobile */
@media (hover: none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ──────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-primary);
  font-weight: 400;
  /* DM Serif Display is expressive at regular weight */
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ──────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: var(--space-2xl) 0;
}

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

/* Section headers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(26, 115, 232, .08);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ──────────────────────────────────────────────────────────
   5. BUTTONS
────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Primary */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(26, 115, 232, .35);
}

.btn-primary:hover {
  background: #1557b0;
  border-color: #1557b0;
  box-shadow: 0 6px 24px rgba(26, 115, 232, .45);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  background: rgba(10, 37, 64, .04);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* White (on dark bg) */
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ──────────────────────────────────────────────────────────
   6. ANIMATIONS
────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fade-in-delay {
  transition-delay: 0.2s;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="150"] {
  transition-delay: 0.15s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="450"] {
  transition-delay: 0.45s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

/* ──────────────────────────────────────────────────────────
   7. HEADER & NAVIGATION
────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-text strong {
  color: var(--color-accent);
}

/* Nav list */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-primary);
  background: var(--color-surface);
}

.chevron {
  width: 10px;
  height: 6px;
  transition: transform var(--transition-base);
}

.has-dropdown:hover .chevron,
.has-dropdown.open .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 340px;
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  color: var(--color-text);
}

.dropdown-item:hover {
  background: var(--color-surface);
}

.di-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dropdown-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-primary);
}

.dropdown-item small {
  display: block;
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav.open {
  max-height: 600px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.mobile-dropdown {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-dropdown.open {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mobile-cta {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────
   8. HERO SECTION
────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Abstract background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(26, 115, 232, .07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0, 198, 162, .06) 0%, transparent 60%);
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(60px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 115, 232, .18), transparent 70%);
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 198, 162, .14), transparent 70%);
  bottom: 60px;
  left: -60px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(10, 37, 64, .1), transparent 70%);
  top: 40%;
  left: 45%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, .035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26, 115, 232, .08);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26, 115, 232, .18);
  margin-bottom: 1.25rem;
}

.hero-headline {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* Hero form card */
.hero-form-wrap {
  display: flex;
  align-items: flex-start;
}

.hero-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 460px;
  position: relative;
}

.form-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Forms */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* Submit button loading */
.btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.form-success h4 {
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────────────────
   9. CLIENT LOGO SLIDER
────────────────────────────────────────────────────────── */
.logos-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.logos-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.logos-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-slide {
  flex-shrink: 0;
  padding: 0 3rem;
  display: flex;
  align-items: center;
}

.logo-slide span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.55;
  letter-spacing: -0.01em;
  transition: opacity var(--transition-base);
}

.logo-slide:hover span {
  opacity: 0.9;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ──────────────────────────────────────────────────────────
   10. SERVICES SECTION
────────────────────────────────────────────────────────── */
.services-section {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 115, 232, .03), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 115, 232, .25);
}

.service-card:hover::before {
  opacity: 1;
}

.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sc-title {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.sc-desc {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.sc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.sc-link:hover {
  gap: 0.55rem;
}

/* ──────────────────────────────────────────────────────────
   11. PROCESS SECTION
────────────────────────────────────────────────────────── */
.process-section {
  background: var(--color-surface);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.ps-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.ps-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.ps-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.ps-desc {
  font-size: 0.85rem;
}

.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  margin-top: 3.75rem;
  border-radius: 2px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--color-accent-2);
}

/* ──────────────────────────────────────────────────────────
   12. PRICING SECTION
────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--color-bg);
}

.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ptab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.ptab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.ptab.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(26, 115, 232, .3);
}

.pricing-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-size: 1.3rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.pricing-nav:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.pricing-slider {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
}

/* Pricing card */
.pricing-card {
  flex-shrink: 0;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-width: 220px;
  flex: 1;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.pricing-card.popular {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .12), var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pc-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.pc-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pc-desc {
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}

.pc-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pc-features li {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pc-features li::before {
  content: '✓';
  color: var(--color-accent-2);
  font-weight: 700;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   13. PORTFOLIO SECTION
────────────────────────────────────────────────────────── */
.portfolio-section {
  background: var(--color-surface);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c, #0A2540), color-mix(in srgb, var(--c, #0A2540) 60%, #000));
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--c) 80%, white),
      color-mix(in srgb, var(--c) 40%, black));
  opacity: 0.85;
}

/* Faint noise texture */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.pi-overlay {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-base);
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, .75));
}

.portfolio-item:hover .pi-overlay {
  opacity: 1;
}

.pi-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 0.35rem;
}

.pi-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.pi-stat {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.pi-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.pi-cta:hover {
  gap: 0.55rem;
}

/* ──────────────────────────────────────────────────────────
   14. CASE STUDIES
────────────────────────────────────────────────────────── */
.casestudies-section {
  background: var(--color-bg);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cs-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.cs-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(26, 115, 232, .08);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.cs-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.cs-excerpt {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.cs-metrics {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.cs-metric {
  display: flex;
  flex-direction: column;
}

.cs-metric strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
}

.cs-metric span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ──────────────────────────────────────────────────────────
   15. TESTIMONIALS
────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--color-primary);
}

.testimonials-section .section-label {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-slider-wrap {
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}

.testi-card {
  flex-shrink: 0;
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  transition: opacity var(--transition-base);
}

.testi-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.testi-author span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .55);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-prev,
.testi-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, .2);
}

.testi-prev:hover,
.testi-next:hover {
  background: rgba(255, 255, 255, .2);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

.testi-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ──────────────────────────────────────────────────────────
   16. ABOUT SECTION
────────────────────────────────────────────────────────── */
.about-section {
  background: var(--color-surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1;
  max-width: 420px;
}

.about-img-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.about-img-card:hover {
  transform: translateY(-4px);
}

.ab-1 {
  background: linear-gradient(135deg, #0A2540, #0d3260);
}

.ab-2 {
  background: linear-gradient(135deg, #1a73e8, #0d9488);
}

.ab-3 {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  grid-column: 1 / -1;
}

.ab-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.1rem;
}

.ab-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.about-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(10, 37, 64, .06);
  pointer-events: none;
}

.about-copy p {
  margin-bottom: 0.5rem;
}

.about-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ──────────────────────────────────────────────────────────
   17. FAQ SECTION
────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--color-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .06);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  background: var(--color-white);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-surface);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1), padding var(--transition-base);
  background: var(--color-surface);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 1rem 1.4rem 1.25rem;
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────────────────
   18. BLOG SECTION
────────────────────────────────────────────────────────── */
.blog-section {
  background: var(--color-surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.bc-img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.bc-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.bc-body {
  padding: 1.5rem;
}

.bc-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.bc-excerpt {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.bc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* ──────────────────────────────────────────────────────────
   19. CTA BANNER
────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3260 50%, #1a1a4e 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 115, 232, .2), transparent 60%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
}

.cta-banner-form {
  max-width: 480px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cta-banner-form .form-group {
  margin-bottom: 0.75rem;
}

.cta-banner-form input,
.cta-banner-form select {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
}

.cta-banner-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.cta-banner-form input:focus,
.cta-banner-form select:focus {
  border-color: rgba(255, 255, 255, .4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.cta-banner-form select {
  color: rgba(255, 255, 255, .7);
}

.cta-banner-form select option {
  background: var(--color-primary);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────
   20. FOOTER
────────────────────────────────────────────────────────── */
.site-footer-el {
  background: #060e1a;
  color: rgba(255, 255, 255, .65);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-links li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .9);
}

.contact-info li {
  display: flex;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ──────────────────────────────────────────────────────────
   21. BACK TO TOP
────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 900;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
}

/* ──────────────────────────────────────────────────────────
   22. RESPONSIVE — TABLET (≤ 1024px)
────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-inner {
    gap: 2.5rem;
  }

  /* Hide desktop nav, show hamburger */
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-form-wrap {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────
   23. RESPONSIVE — MOBILE (≤ 640px)
────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
  }

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

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

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

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

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

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

  .footer-legal {
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img-block {
    max-width: 100%;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat strong {
    font-size: 1.25rem;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    min-width: 45%;
  }

  .pricing-slider-wrap {
    gap: 0.5rem;
  }

  .header-inner .btn-primary {
    display: none;
  }
}

/* ── Features ── */
    .features-section {
      background: var(--color-bg);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

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

    .feature-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .feature-title {
      font-size: 1rem;
      margin-bottom: .6rem;
      color: var(--color-primary);
    }

    .feature-desc {
      font-size: .88rem;
    }

    /* ── Platforms ── */
    .platforms-section {
      background: var(--color-surface);
    }

    .platforms-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }

    .platform-pill {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1.25rem 1rem;
      text-align: center;
      font-size: .85rem;
      font-weight: 600;
      color: var(--color-primary);
      transition: all var(--transition-base);
    }

    .platform-pill:hover {
      border-color: var(--color-accent);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .platform-emoji {
      font-size: 1.6rem;
      margin-bottom: .4rem;
      display: block;
    }

    /* ── Why ── */
    .why-section {
      background: var(--color-primary);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .why-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .why-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-accent);
      opacity: .5;
      flex-shrink: 0;
      line-height: 1;
    }

    .why-content h4 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: .4rem;
    }

    .why-content p {
      color: rgba(255, 255, 255, .65);
      font-size: .88rem;
    }

    /* ── Pricing ── */
    .pricing-section {
      background: var(--color-bg);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .pricing-card {
      background: var(--color-surface);
      border: 2px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 2.5rem 2rem;
      text-align: center;
      position: relative;
      transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

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

    .pricing-card.popular {
      border-color: var(--color-accent);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-accent);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      border-radius: var(--radius-full);
      white-space: nowrap;
    }

    .plan-name {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: .75rem;
    }

    .plan-price {
      font-family: var(--font-display);
      font-size: 3rem;
      color: var(--color-primary);
      line-height: 1;
    }

    .plan-price sup {
      font-size: 1.4rem;
      vertical-align: super;
    }

    .plan-price sub {
      font-size: .9rem;
      color: var(--color-text-muted);
    }

    .plan-desc {
      font-size: .85rem;
      color: var(--color-text-muted);
      margin: .75rem 0 1.5rem;
    }

    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
      text-align: left;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      font-size: .87rem;
      padding: .45rem 0;
      border-bottom: 1px solid var(--color-border);
    }

    .plan-features li:last-child {
      border-bottom: none;
    }

    .plan-features li::before {
      content: '✓';
      color: var(--color-accent-2);
      font-weight: 700;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

    @media (max-width: 640px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

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

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