/* ================================================================
   DMF INNOVATIONS — Complete UI Redesign
   Design Language: Refined Authority — Dark Navy + Electric Blue
   Font: Syne (display) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Custom Properties ── */
    /* ── Your existing root variables ── */
    :root {
      --brand:         #1A4FD6;
      --brand-deep:    #0F35A0;
      --brand-light:   #3D6FFF;
      --brand-glow:    rgba(26,79,214,0.12);
      --ink:           #080E24;
      --ink-soft:      #1C2540;
      --muted:         #5A637A;
      --muted-light:   #8C95AD;
      --surface:       #F4F7FF;
      --white:         #FFFFFF;
      --border:        rgba(26,79,214,0.10);
      --border-strong: rgba(26,79,214,0.26);
      --radius-sm:     8px;
      --radius-md:     16px;
      --shadow-brand:  0 12px 40px rgba(26,79,214,0.30);
      --ease:          cubic-bezier(0.22,1,0.36,1);

      /* Hero palette — deep navy */
      --hero-bg:       #0B1535;
      --hero-deep:     #070F28;
      --hero-accent:   #7EB3FF;
      --hero-border:   rgba(126,179,255,0.12);
      --hero-text:     rgba(255,255,255,0.55);

      --text: #111111;
      --muted: #6e6e73;
      --line: rgba(0,0,0,0.08);
      --accent: #c9a227;
    }

    /* ─── Reset ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink);
      background: var(--white);
      padding-top: 72px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    font-weight: 700;
    color: var(--ink);
    }

    /* SECTION */
section{
    padding: 120px 0;
    position: relative;
}

/* MINI LABEL */
.section-label{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);

    margin-bottom: 28px;
}

.section-label::before{
    content: "";
    width: 60px;
    height: 1px;
    background: var(--accent);
}

/* MAIN TITLE */
.section-title{
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;

    color: var(--text);

    margin-bottom: 32px;

    max-width: 900px;
}

/* DESCRIPTION */
.section-desc{
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);

    max-width: 680px;
}

/* LEFT PREMIUM */
.premium-left{
    padding-left: 5vw;
}

/* CENTER PREMIUM */
.premium-center{
    text-align: center;
}

.premium-center .section-title,
.premium-center .section-desc{
    margin-left: auto;
    margin-right: auto;
}

/* SOFT BACKGROUND GLOW */
.section-glow::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(201,162,39,0.08),
        transparent 70%
    );

    top: -150px;
    right: -150px;
    z-index: -1;
}

/* PREMIUM TYPOGRAPHY */


/* HUGE TEXT STYLE */
.display-text{
    font-size: clamp(70px, 10vw, 140px);
    line-height: .9;
    letter-spacing: -5px;
    font-weight: 800;
}

/* SMOOTH HOVER */
.section-title,
.section-label{
    transition: all .4s ease;
}

section:hover .section-title{
    transform: translateY(-2px);
}


    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ════════════════════════════
       NAVIGATION
    ════════════════════════════ */
    .nav-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 64px;
      background: var(--hero-deep);
      border-bottom: 1px solid var(--hero-border);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      text-decoration: none;
    }

    .nav-logo span { color: var(--hero-accent); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.45);
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      transition: color 0.2s var(--ease);
    }

    .nav-links a:hover { color: rgba(255,255,255,0.9); }

    .nav-cta {
      background: transparent;
      color: var(--hero-accent);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      padding: 9px 22px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(126,179,255,0.40);
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: background 0.2s var(--ease), border-color 0.2s;
    }

    .nav-cta:hover {
      background: rgba(126,179,255,0.08);
      border-color: rgba(126,179,255,0.70);
    }

    /* ════════════════════════════
       HERO SECTION
    ════════════════════════════ */
    .hero {
      position: relative;
      background: var(--hero-bg);
      min-height: calc(100vh - 72px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 96px 32px 88px;
      overflow: hidden;
    }

    /* Concentric circle rings — top-left */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid var(--hero-border);
      pointer-events: none;
    }

    .hero-ring-1 { top: -80px;  left: -80px;  width: 420px; height: 420px; }
    .hero-ring-2 { top: -40px;  left: -40px;  width: 280px; height: 280px; }
    .hero-ring-3 { top: -10px;  left: -10px;  width: 160px; height: 160px; }

    /* Concentric circle rings — bottom-right */
    .hero-ring-4 { bottom: -100px; right: -100px; width: 500px; height: 500px; }
    .hero-ring-5 { bottom:  -60px; right:  -60px; width: 340px; height: 340px; }
    .hero-ring-6 { bottom:  -20px; right:  -20px; width: 180px; height: 180px; }

    /* Hairline vertical centre rule */
    .hero-vline {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(126,179,255,0.08) 25%,
        rgba(126,179,255,0.08) 75%,
        transparent 100%
      );
      transform: translateX(-50%);
      pointer-events: none;
    }

    /* Dot grid — subtle texture */
    .hero-dots {
      position: absolute;
      top: 48px; right: 72px;
      display: grid;
      grid-template-columns: repeat(9, 1fr);
      gap: 14px;
      opacity: 0.10;
      pointer-events: none;
    }

    .hero-dots span {
      display: block;
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--hero-accent);
    }

    /* ── Hero content ── */
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      width: 100%;
    }

    /* Eyebrow line */
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.30);
      margin-bottom: 20px;
    }

    /* Animated badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(126,179,255,0.08);
      border: 1px solid rgba(126,179,255,0.22);
      color: var(--hero-accent);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.10em;
      padding: 7px 18px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--hero-accent);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.20; }
    }

    /* Headline */
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 700;
      line-height: 1.12;
      color: #fff;
      letter-spacing: -0.018em;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--hero-accent);
    }

    /* Sub line */
    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--hero-text);
      line-height: 1.82;
      margin-bottom: 48px;
    }

    /* CTA row — centred */
    .hero-cta {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 72px;
    }

    .btn-primary {
      background: var(--hero-accent);
      color: var(--hero-bg);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 14px 34px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: opacity 0.2s var(--ease), transform 0.15s;
    }

    .btn-primary:hover  { opacity: 0.88; transform: translateY(-1px); }
    .btn-primary:active { transform: scale(0.98); }

    .btn-outline {
      background: transparent;
      color: rgba(255,255,255,0.72);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
      padding: 13px 34px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,0.18);
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: border-color 0.2s var(--ease), background 0.2s, color 0.2s;
    }

    .btn-outline:hover {
      border-color: rgba(255,255,255,0.40);
      color: #fff;
    }

    /* Stats row */
    .stats-row {
      display: flex;
      justify-content: center;
      border-top: 1px solid var(--hero-border);
      padding-top: 48px;
    }

    .stat-item {
      text-align: center;
      padding: 0 48px;
    }

    .stat-item + .stat-item {
      border-left: 1px solid var(--hero-border);
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      margin-bottom: 8px;
    }

    .stat-num sup {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 500;
      color: var(--hero-accent);
    }

    .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      line-height: 1.55;
    }

    /* ═══════════════════════════
       TRUST STRIP
    ═══════════════════════════ */
    .trust-strip {
      background: var(--hero-deep);
      border-top: 1px solid var(--hero-border);
      padding: 18px 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .trust-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(126,179,255,0.10);
      color: var(--hero-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      flex-shrink: 0;
    }

    .trust-text {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
    }

    .trust-text strong {
      color: rgba(255,255,255,0.62);
      font-weight: 500;
    }

    .trust-div {
      width: 1px; height: 18px;
      background: rgba(255,255,255,0.10);
      margin: 0 16px;
    }

    /* ═══════════════════════════
       RESPONSIVE
    ═══════════════════════════ */
    @media (max-width: 768px) {
      .nav-bar   { padding: 0 24px; }
      .nav-links { display: none; }
      .hero { padding: 60px 24px 56px; }
      .hero-dots { display: none; }
      .stats-row { flex-direction: column; align-items: center; gap: 0; }
      .stat-item { padding: 24px 0; }
      .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--hero-border); }
      .trust-strip { padding: 14px 24px; }
      .trust-div { display: none; }
    }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  background: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.about-section h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}

.about-section h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 6px;
}

.about-section p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--muted);
}

.img-fluid {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Value cards */
.value-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.45s var(--ease);
  cursor: default;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand), #2956E8, var(--brand-light));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 0;
}

.value-card > * { position: relative; z-index: 1; }

.value-card:hover::before { opacity: 1; }

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-brand);
  border-color: transparent;
}

.value-card:hover h5,
.value-card:hover p,
.value-card:hover .icon-box {
  color: var(--white);
}

.value-card:hover .icon-box {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}

.icon-box {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brand);
  transition: all 0.45s var(--ease);
  margin: 0 auto 18px;
}

.value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  background: var(--surface);
  padding: 120px 0;
}

.services-section h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.services-section p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--muted);
}

.services-section img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Accordion */
.accordion-item {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-left: 3px solid var(--brand) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 6px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  padding: 16px 20px !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--surface) !important;
  color: var(--brand) !important;
}

.accordion-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
  padding: 16px 20px 20px;
  background: var(--white);
}

.accordion-body strong { color: var(--ink); font-weight: 600; }

.highlight-box {
  background: var(--surface);
  border-left: 3px solid var(--brand);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}


/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-visual {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 80% 50%, rgba(26,79,214,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 24px;
}

.why-visual-left {
  position: relative;
  padding-left: 40px;
}

.why-visual-left::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--brand), transparent);
  border-radius: 2px;
}

.why-visual-content > span {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 18px;
}

.why-visual-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.why-visual-content p {
  color: rgba(255,255,255,0.45);
  font-size: 0.97rem;
  line-height: 1.7;
}

.why-visual-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.why-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.why-feature:hover::before { transform: scaleX(1); }

.why-feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.why-feature h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-feature p {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .why-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .why-visual-left { padding-left: 24px; }
}


/* ================================================================
   HOW WE WORK
   ================================================================ */
.how-we-work {
  padding: 120px 0 80px;
  background: var(--white);
}

.process-steps {
  list-style: none;
  padding: 0; margin: 0;
}

.process-steps li {
  padding: 16px 18px 16px 22px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  border-left: 2px solid var(--border);
  transition: all 0.3s var(--ease);
  margin-bottom: 4px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.process-steps li:hover { color: var(--brand); background: var(--surface); }

.process-steps li.active {
  color: var(--brand);
  font-weight: 600;
  background: var(--surface);
  border-left-color: var(--brand);
}

.process-content {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.process-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-content h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.process-content p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.78;
}

/* Execution framework */
.execution-framework {
  padding: 80px 0 120px;
  background: var(--white);
}

.execution-framework h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.execution-framework .text-muted {
  color: var(--muted) !important;
  font-size: 0.97rem;
}

.framework-wrapper {
  position: relative;
  max-width: 880px;
  margin: 56px auto 0;
}

.framework-line {
  position: absolute;
  left: 50%;
  top: 0; height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
  transform: translateX(-50%);
}

.framework-item {
  width: 46%;
  padding: 28px 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.framework-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.framework-item:hover {
  box-shadow: 0 14px 44px rgba(26,79,214,0.12);
  border-color: var(--border-strong);
  transform: translateY(-4px) !important;
}

.framework-item.left  { margin-right: auto; }
.framework-item.right { margin-left: auto; }

.framework-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--brand);
  background: var(--brand-glow);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.framework-header h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.framework-desc {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
  margin: 12px 0 16px;
}

.framework-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.framework-footer span {
  font-size: 0.75rem;
  padding: 4px 11px;
  border-radius: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .framework-item { width: 100%; }
  .framework-line { display: none; }
  .framework-item.left,
  .framework-item.right { margin: 0 0 20px; }
}


/* ================================================================
   PRICING / SUBSCRIPTION PLANS
   ================================================================ */
#pricing {
  padding: 120px 0;
  background: var(--surface);
}

.pricing-head {
  text-align: center;
  margin-bottom: 44px;
}

.pricing-head p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: var(--radius-md);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.87rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.tab:hover { color: var(--brand); }

.tab.active {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,79,214,0.35);
}

.tab.active::after { display: none; }

/* Tab content */
.tab-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s var(--ease), max-height 0.4s var(--ease);
}

.tab-content.active { opacity: 1; max-height: 1400px; }

/* Pricing rail */
.pricing-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.plan {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.plan.featured {
  background: var(--ink);
  border-color: var(--brand);
  transform: translateY(-14px);
  box-shadow: 0 24px 64px rgba(8,14,36,0.28), var(--shadow-brand);
}

.plan.featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 32px 80px rgba(8,14,36,0.32), 0 0 0 1px var(--brand-light);
}

.plan.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--brand);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
}

.plan h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.plan.featured h4 { color: var(--white); }

.price {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
  margin: 14px 0 22px;
  line-height: 1;
}

.plan.featured .price { color: var(--brand-light); }

.plan ul {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.plan.featured ul { border-top-color: rgba(255,255,255,0.08); }

.plan ul li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.25s;
}

.plan ul li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.82rem;
  margin-top: 2px;
}

.plan.featured ul li { color: rgba(255,255,255,0.55); }
.plan.featured ul li::before { color: var(--brand-light); }
.plan ul li:hover { color: var(--brand); }
.plan.featured ul li:hover { color: var(--white); }

@media (max-width: 992px) {
  .pricing-rail { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .service-tabs { flex-direction: column; width: calc(100% - 48px); }
}


/* ================================================================
   CLIENTS SECTION
   ================================================================ */
.clients-section {
    background: #f9fbff;
    padding: 50px 0;
}

.clients-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #0f172a;
}

/* Track */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* Each slide */
.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Background style */
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: #fff;
    text-align: center;
}

/* Logo */
.carousel-slide img {
    max-width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Title */
.carousel-slide h3 {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Navigation buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 12px 18px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.nav:hover {
    background: rgba(255,255,255,0.25);
}

.prev { left: 20px; }
.next { right: 20px; }

/* ===== CLIENTS SECTION ===== */

/* Stats */
.client-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    border: 1px solid #e3e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a56db;
    margin-bottom: 4px;
}
.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e3e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.1);
}
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #6ea8fe);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}


.clients-section {
    background: #f9fbff;
    padding: 40px 0;
}

/* Wrapper */
.clients-logo-track-wrapper {
    overflow: hidden;
    position: relative;
}

/* Soft fade edges */
.clients-logo-track-wrapper::before,
.clients-logo-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}
.clients-logo-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9fbff, transparent);
}
.clients-logo-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9fbff, transparent);
}

/* Track */
.clients-logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.clients-logo-track:hover {
    animation-play-state: paused;
}

/* Smooth infinite scroll */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Card */
.client-logo-card {
    min-width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

/* Logo styling */
.client-logo-card img {
    max-height: 40px;
    max-width: 120px;

    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

/* Hover effects */
.client-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.client-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 80px 0 32px;
  font-size: 0.88rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,79,214,0.6), transparent);
}

.footer-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.footer-text {
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 320px;
  font-size: 0.86rem;
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-links li, .footer-contact li { margin-bottom: 10px; }

.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  transition: color 0.25s var(--ease);
}

.footer-links a:hover, .footer-contact a:hover { color: var(--brand-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.22);
  font-size: 0.8rem;
}


/* ================================================================
   GLOBAL RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  body { padding-top: 64px; }

  .about-section, .services-section, .why-visual,
  .how-we-work, .execution-framework, #pricing,
  .clients-section { padding: 72px 0; }

  .hero-headline { font-size: 2.6rem; letter-spacing: -1px; }
  .hero-stats { gap: 28px; }
  .hero-stat-number { font-size: 1.6rem; }

  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 576px) {
  .hero-overlay { padding: 60px 20px; }
  .btn-hero-primary, .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-actions { flex-direction: column; }
}