/*
Theme Name: Data Analytics Stack
Theme URI: https://dataanalyticsstack.com
Author: Data Analytics Stack
Author URI: https://dataanalyticsstack.com
Description: Retail Growth Intelligence WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: das-theme
*/

:root {
    --green-dark:  #064E3B;
    --green-mid:   #0F6E56;
    --green-base:  #1D9E75;
    --green-light: #5DCAA5;
    --green-pale:  #E1F5EE;
    --green-xpale: #F0FAF5;
    --ink:         #0D1F1A;
    --ink-mid:     #2D4A42;
    --ink-soft:    #5A7A70;
    --border:      #C8E8DC;
    --white:       #FFFFFF;
    --off-white:   #F7FDFB;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(6,78,59,0.08);
    --shadow-md: 0 8px 32px rgba(6,78,59,0.12);
    --shadow-lg: 0 20px 60px rgba(6,78,59,0.16);
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { text-decoration: none; }

  /* ── UTILITY ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 96px 0; }
  .section-sm { padding: 64px 0; }

  .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-base);
    background: var(--green-pale);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--green-base);
  }

  .section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 580px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all var(--transition);
  }

  .btn-primary {
    background: var(--green-base);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(29,158,117,0.3);
  }
  .btn-primary:hover {
    background: var(--green-mid);
    box-shadow: 0 6px 24px rgba(29,158,117,0.4);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green-light);
  }
  .btn-outline:hover {
    background: var(--green-pale);
    border-color: var(--green-base);
  }

  .btn-white {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: var(--shadow-sm);
  }
  .btn-white:hover {
    background: var(--green-pale);
    transform: translateY(-1px);
  }

  /* ── FADE UP ANIMATION ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up.d1 { transition-delay: 0.1s; }
  .fade-up.d2 { transition-delay: 0.2s; }
  .fade-up.d3 { transition-delay: 0.3s; }
  .fade-up.d4 { transition-delay: 0.4s; }
  .fade-up.d5 { transition-delay: 0.5s; }
  .fade-up.d6 { transition-delay: 0.6s; }

  /* ────────────────────────────────────────────
     NAV
  ──────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow var(--transition);
    }
    nav.scrolled { box-shadow: var(--shadow-sm); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 32px;
    }
   

   .nav-logo-img {
     max-height: 50px; 
     width: auto;
     cursor: pointer;
     transition: opacity 0.3s ease;
    }

   .nav-logo-img:hover {
    opacity: 0.8;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-mid);
      text-decoration: none;
      padding: 7px 16px;
      border-radius: var(--radius-sm);
      transition: all var(--transition);
    }
    .nav-links a:hover { background: var(--green-pale); color: var(--green-dark); }

    .nav-links .has-dropdown { position: relative; }
    .nav-links .has-dropdown > a { display: flex; align-items: center; gap: 4px; }
    .nav-links .has-dropdown > a::after {
      content: '';
      width: 6px; height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      display: inline-block;
    }

    /* Bridge fills the 8px gap between nav item and dropdown */
    .has-dropdown::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 12px;
    }

    .dropdown {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s ease, visibility 0.15s ease;
      transition-delay: 120ms; /* exit delay — won't close instantly */
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 8px;
      min-width: 220px;
      box-shadow: var(--shadow-md);
      z-index: 200;
    }
    .has-dropdown:hover .dropdown {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transition-delay: 0s; /* appear instantly on hover */
    }
    /* Styling the links inside the dropdown */
     .dropdown a {
       display: flex;             /* Align icon and text side-by-side */
       align-items: center;       /* Vertical center */
       gap: 12px;                /* Space between icon and text */
       padding: 10px 14px;
       text-decoration: none;
       transition: all 0.2s ease;
     }

     /* Styling the SVG icon */
      .dropdown a svg {
       width: 24px;              /* Control icon size */
       height: 24px;
       background:#e1f5ee ;	
       padding:4px;
       border : 1px;
       border-radius: 4px;	
       color: #1d9e75;
       flex-shrink: 0;           /* Prevents icon from squishing if text is long */
       color: var(--green-dark); /* Or your primary theme color */
       opacity: 0.6;             /* Slightly dimmed by default */
       transition: transform 0.2s ease, opacity 0.2s ease;
      }

    /* Hover effects */
       .dropdown a:hover svg {
       opacity: 1;
       transform: translateX(3px); /* Subtle "nudge" effect on hover */
       }

      .dropdown a span {
       font-size: 14px;
       line-height: 1.4;
       }
    .dropdown a:hover { background: var(--green-pale); color: var(--green-dark); }

    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: all var(--transition);
    }
  /* ────────────────────────────────────────────
     HERO
  ──────────────────────────────────────────── */
  .hero {
    background: linear-gradient(155deg, var(--off-white) 0%, var(--green-xpale) 50%, var(--green-pale) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(93,202,165,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-mid);
  }
  .hero-eyebrow span { width: 24px; height: 1.5px; background: var(--green-light); display: block; }

  .hero-title {
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 22px;
  }
  .hero-title em { font-style: italic; color: var(--green-base); }

  .hero-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .hero-icp {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
  }
  .hero-icp span {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-mid);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 20px;
  }

  .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

  .hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .proof-item { text-align: center; }
  .proof-item strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    color: var(--green-dark);
    line-height: 1;
  }
  .proof-item span { font-size: 12px; color: var(--ink-soft); }
  .proof-divider { width: 1px; height: 36px; background: var(--border); }

  /* Dashboard visual */
  .hero-visual {
    position: relative;
  }

  .dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .dash-topbar {
    background: var(--green-dark);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .dash-dots { display: flex; gap: 6px; }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-left: 6px;
  }
  .dash-date {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
  }

  .dash-body { padding: 20px; }

  .dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .kpi-tile {
    background: var(--off-white);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--border);
  }
  .kpi-label { font-size: 10px; color: var(--ink-soft); font-weight: 500; margin-bottom: 4px; }
  .kpi-value { font-family: var(--serif); font-size: 20px; color: var(--ink); }
  .kpi-delta {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
  }
  .kpi-delta.up { color: var(--green-base); }
  .kpi-delta.down { color: #E24B4A; }

  .dash-chart-area {
    background: var(--green-xpale);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
  }
  .dash-chart-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: 10px;
  }

  .chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
  }
  .chart-bars .bar {
    flex: 1;
    background: var(--green-light);
    border-radius: 3px 3px 0 0;
    opacity: 0.7;
    transition: opacity var(--transition);
  }
  .chart-bars .bar:hover { opacity: 1; }
  .chart-bars .bar.highlight { background: var(--green-base); opacity: 1; }

  .dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dash-mini {
    background: var(--off-white);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--border);
  }
  .dash-mini-label { font-size: 10px; color: var(--ink-soft); font-weight: 500; margin-bottom: 8px; }

  .mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 36px; }
  .mini-bars .bar { flex: 1; background: var(--green-light); border-radius: 2px 2px 0 0; opacity: 0.6; }
  .mini-bars .bar.active { background: var(--green-base); opacity: 1; }

  .retention-ring {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ring-val { font-family: var(--serif); font-size: 22px; color: var(--green-dark); }
  .ring-label { font-size: 10px; color: var(--ink-soft); }
  .ring-svg { width: 44px; height: 44px; }

  .float-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
  }
  .float-badge .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-base);
    flex-shrink: 0;
  }
  .badge-1 { bottom: -18px; left: -24px; }
  .badge-2 { top: -16px; right: -20px; }

  /* ────────────────────────────────────────────
     TRUST BAR
  ──────────────────────────────────────────── */
  .trust-bar {
    background: var(--green-dark);
    padding: 20px 0;
  }
  .trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 500;
  }
  .trust-item svg { opacity: 0.6; }
  .trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.15);
  }

  /* ────────────────────────────────────────────
     PAIN POINTS
  ──────────────────────────────────────────── */
  .pain-section { background: var(--white); }

  .pain-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
  .pain-header .section-sub { margin: 0 auto; text-align: center; }

  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
  }

  .pain-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-base), var(--green-light));
    opacity: 0;
    transition: opacity var(--transition);
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
  .pain-card:hover::before { opacity: 1; }

  .pain-icon {
    width: 44px; height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .pain-icon svg { width: 22px; height: 22px; stroke: var(--green-base); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .pain-card h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
  .pain-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

  /* ────────────────────────────────────────────
     PARTNER BLOCK
  ──────────────────────────────────────────── */
  .partner-block {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .partner-block::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(93,202,165,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .partner-block::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .partner-inner { text-align: center; max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

  .partner-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    background: rgba(93,202,165,0.15);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(93,202,165,0.3);
  }

  .partner-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
  }

  .partner-copy {
    font-size: 16px;
    color: rgba(255,255,255,0.7) ;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .partner-copy strong { color: var(--white); font-weight: 600; }

  /* ────���─���─────────────────────────────────────
     HOW IT WORKS
  ──────────────────────────────────────────── */
  .how-section { background: var(--off-white); }

  .how-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
  .how-header .section-sub { margin: 0 auto; text-align: center; }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }

  .how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--green-light), var(--green-base), var(--green-light));
    z-index: 0;
  }

  .how-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 80px; height: 80px;
    background: var(--white);
    border: 2px solid var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--green-dark);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
  }

  .how-step:hover .step-num {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
  }

  .how-step h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
  .how-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

  .how-sources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }
  .how-sources span {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-mid);
    background: var(--green-pale);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
  }

  /* ────────────────────────────────────────────
     SERVICES
  ──────────────────────────────────────────── */
  .services-section { background: var(--white); }

  .services-header { max-width: 600px; margin-bottom: 52px; }

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

  .service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    text-decoration: none;
    background: var(--white);
    transition: all var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '→';
    position: absolute;
    bottom: 22px; right: 24px;
    font-size: 16px;
    color: var(--green-light);
    transition: all var(--transition);
  }
  .service-card:hover {
    border-color: var(--green-base);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--green-xpale);
  }
  .service-card:hover::after {
    color: var(--green-base);
    transform: translateX(4px);
  }

  .service-icon {
    width: 48px; height: 48px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition);
  }
  .service-card:hover .service-icon { background: var(--green-light); }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .service-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 32px; }

  .services-footer { text-align: center; margin-top: 40px; }

  /* ────────────────────────────────────────────
     INDUSTRIES
  ──────────────────────────────────────────── */
  .industries-section { background: var(--off-white); }

  .industries-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .industries-left { position: sticky; top: 100px; }

  .industries-list { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }

  .industry-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
  }
  .industry-item:hover {
    border-color: var(--green-base);
    box-shadow: var(--shadow-sm);
    background: var(--green-xpale);
    transform: translateX(6px);
  }

  .ind-icon {
    width: 42px; height: 42px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ind-icon svg { width: 20px; height: 20px; stroke: var(--green-base); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .ind-text h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .ind-text p { font-size: 12px; color: var(--ink-soft); line-height: 1.55; }

  /* ────────────────────────────────────────────
     WHY CHOOSE US
  ──────────────────────────────────────────── */
  .why-section { background: var(--white); }

  .why-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
  .why-header .section-sub { margin: 0 auto; text-align: center; }

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

  .why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
  }
  .why-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }

  .why-num {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--green-pale);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    transition: color var(--transition);
  }
  .why-card:hover .why-num { color: var(--green-light); }

  .why-text h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .why-text p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

  /* ────────────────────────────────────────────
     CASE STUDIES
  ──────────────────────────────────────────── */
  .cases-section { background: var(--off-white); }

  .cases-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
  .cases-header .section-sub { margin: 0 auto; text-align: center; }

  .cases-grid { display: flex; flex-direction: column; gap: 28px; }

  .case-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--transition);
  }
  .case-card:hover { box-shadow: var(--shadow-md); }
  .case-card.reverse { direction: rtl; }
  .case-card.reverse > * { direction: ltr; }

  .case-visual {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
  }

  .case-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
  }

  .case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .case-metric {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .case-metric strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .case-metric span { font-size: 11px; color: rgba(255,255,255,0.6); }

  .case-content { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }

  .case-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-base);
    margin-bottom: 12px;
  }

  .case-content h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .case-content p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }

  .case-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
  }
  .case-link:hover { gap: 10px; }

  /* ────────────────────────────────────────────
     FAQ
  ──────────────────────────────────────────── */
  .faq-section { background: var(--white); }

  .faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
  }

  .faq-left { position: sticky; top: 100px; }
  .faq-left .section-sub { margin-top: 12px; }

  .faq-list { display: flex; flex-direction: column; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: color var(--transition);
  }
  .faq-q:hover { color: var(--green-base); }

  .faq-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    font-size: 16px;
    color: var(--green-dark);
    line-height: 1;
  }
  .faq-item.open .faq-icon { background: var(--green-base); color: var(--white); transform: rotate(45deg); }

  .faq-a {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.75;
    padding: 0 0 20px;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ────────────────────────────────────────────
     FINAL CTA
  ───────────────────────��─��────────────────── */
  .cta-section {
    background: linear-gradient(155deg, var(--green-dark) 0%, #085041 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(93,202,165,0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

  .cta-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .cta-title em { font-style: italic; color: var(--green-light); }

  .cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; }

  .cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

  .cta-note { font-size: 12px; color: rgba(255,255,255,0.4); }


/* Breadcrump */

.breadcrumb-new {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 5% 0;
    font-size: 13px;
    color: var(--text-muted);
}

  /* ────────────────────────────────────────────
     FOOTER
  ──────────────────────────────────────────── */
  footer { background: var(--ink); color: rgba(255,255,255,0.7); }

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

  .footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
  }

  .footer-input-row {
    display: flex;
    gap: 8px;
  }
  .footer-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
  }
  .footer-input::placeholder { color: rgba(255,255,255,0.3); }
  .footer-input:focus { border-color: var(--green-base); }

  .footer-join {
    background: var(--green-base);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
  }
  .footer-join:hover { background: var(--green-mid); }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition);
  }
  .footer-col ul li a:hover { color: var(--green-light); }

  .footer-contact { display: flex; flex-direction: column; gap: 10px; }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .footer-contact-item svg { width: 14px; height: 14px; stroke: var(--green-base); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }

  .footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color var(--transition);
  }
  .footer-bottom-links a:hover { color: var(--green-light); }

  .footer-logo-text { display: flex; align-items: center; gap: 8px; margin-bottom: 0; }
  .footer-logo-mark {
    width: 30px; height: 30px;
    background: var(--green-dark);
    border: 1px solid rgba(93,202,165,0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .footer-logo-mark svg { width: 16px; height: 16px; }
  .footer-brand-name {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--white);
  }
   .footer-contact-item a {
    color: inherit;
    text-decoration: none;
  }
   .footer-contact-item a:hover {
    text-decoration: underline;
  }

  .social-links { display: flex; gap: 10px; margin-top: 20px; }
  .social-link {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all var(--transition);
  }
  .social-link:hover { background: var(--green-dark); border-color: var(--green-base); }
  .social-link svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.5); }

  /* ────────────────────────────────────────────
     RESPONSIVE
  ──────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .industries-inner { grid-template-columns: 1fr; gap: 40px; }
    .industries-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  @media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 56px; }
	.hero-inner { grid-template-columns: 1fr; gap: 48px; }  
    .badge-1, .badge-2 { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 36px; }
    .faq-left { position: static; }
    .case-card { grid-template-columns: 1fr; }
    .case-card.reverse { direction: ltr; }
    .how-steps { grid-template-columns: 1fr; gap: 36px; }
    .footer-top { grid-template-columns: 1fr; }
    
    .trust-divider { display: none; }
    .trust-bar-inner {display:flex; align-items:start ;justify-content: start; gap: 20px; }  
    .hero-proof { flex-wrap: wrap; gap: 12px; }
    .proof-divider { display: none; }
    .wrap {padding: 20px}
	.nav-logo-img {
     max-height: 40px; /* Sometimes max-height is better for navbars to keep the bar slim */
     width: auto;
     cursor: pointer;
     transition: opacity 0.3s ease;
    }
  }
  
 
    

  @media (max-width: 480px) {
	.hero-title {font-size:40px;} 
    .services-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .dash-kpis { grid-template-columns: repeat(3,1fr); }
    .case-metrics { grid-template-columns: repeat(2,1fr); }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
  }

/* ────────────────────────────────────────────
   RESPONSIVE NAV FIX
──────────────────────────────────────────── */



@media (max-width: 992px) {

  
  .hamburger {
    display: flex;
  }

  /* HIDE CTA */
  .nav-cta {
    display: none !important;
  }

  /* MENU PANEL */
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;

    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
   
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 14px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* DROPDOWN MOBILE */
  .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-left: 15px;

    max-height: 0;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition: max-height 0.3s ease;
  }

  .has-dropdown.open .dropdown {
    max-height: 500px;
  }

  .has-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}