﻿/* ── Reset & Variables ───────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --sky-50:  #f0f9ff;
      --sky-100: #e0f2fe;
      --sky-200: #bae6fd;
      --sky-300: #7dd3fc;
      --sky-400: #38bdf8;
      --sky-500: #0ea5e9;
      --sky-600: #0284c7;
      --sky-700: #0369a1;
      --sky-800: #075985;
      --blue-50:  #eff6ff;
      --blue-100: #dbeafe;
      --blue-200: #bfdbfe;
      --blue-500: #3b82f6;
      --blue-600: #2563eb;
      --blue-700: #1d4ed8;
      --blue-800: #1e40af;
      --white:   #ffffff;
      --slate-50:  #f8fafc;
      --slate-100: #f1f5f9;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-800: #1e293b;
      --slate-900: #0f172a;

      --accent: var(--sky-500);
      --accent-dark: var(--sky-700);
      --font-display: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 14px;
      --radius-lg: 24px;
      --shadow-card: 0 4px 24px rgba(14, 165, 233, 0.10), 0 1px 4px rgba(0,0,0,0.04);
      --shadow-hero: 0 8px 48px rgba(14, 165, 233, 0.18);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--slate-800);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Utility ─────────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 50px; cursor: pointer;
      text-decoration: none; border: none; transition: all 0.25s cubic-bezier(.4,0,.2,1);
      letter-spacing: 0.01em;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
      color: #fff; box-shadow: 0 4px 20px rgba(14,165,233,0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(14,165,233,0.45);
    }
    .btn-outline {
      background: transparent; color: var(--sky-600);
      border: 2px solid var(--sky-300);
    }
    .btn-outline:hover {
      background: var(--sky-50); border-color: var(--sky-500);
      transform: translateY(-2px);
    }
    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--sky-100); color: var(--sky-700);
      font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 50px;
    }
    .tag::before { content: ''; width: 6px; height: 6px; background: var(--sky-500); border-radius: 50%; }
    .section-label { text-align: center; margin-bottom: 16px; }
    .section-title {
      font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800; line-height: 1.15; color: var(--slate-800);
      text-align: center; margin-bottom: 16px;
    }
    .section-sub {
      color: var(--slate-600); font-size: 1.05rem; text-align: center;
      max-width: 600px; margin: 0 auto 56px;
    }
    .highlight { color: var(--sky-600); }

    /* ── Animated BG mesh ────────────────────────────────── */
    .mesh-bg {
      position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
    }
    .mesh-bg::before, .mesh-bg::after {
      content: '';position: absolute;border-radius: 50%;filter: blur(80px);opacity: 0.55;
      animation: meshFloat 8s ease-in-out infinite alternate;
    }
    .mesh-bg::before {
      width: 600px; height: 600px;
      background: radial-gradient(circle, #bae6fd 0%, #7dd3fc 50%, transparent 70%);
      top: -150px; right: -100px;
    }
    .mesh-bg::after {
      width: 500px; height: 500px;
      background: radial-gradient(circle, #dbeafe 0%, #bfdbfe 50%, transparent 70%);
      bottom: -100px; left: -80px;
      animation-delay: -4s;
    }
    @keyframes meshFloat {
      0%   { transform: translate(0,0) scale(1); }
      100% { transform: translate(30px, 20px) scale(1.05); }
    }

    /* ── Nav ─────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 16px 0;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px) saturate(1.6);
      border-bottom: 1px solid rgba(186,230,253,0.4);
      transition: all 0.3s ease;
    }
    nav.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(14,165,233,0.10); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
      color: var(--slate-800); text-decoration: none; letter-spacing: -0.02em;
    }
    .nav-logo img {
      height: 32px;
      width: auto;
      display: block;
    }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a {
      font-size: 0.9rem; font-weight: 500; color: var(--slate-700);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sky-600); }
    .nav-cta { margin-left: 16px; }
    .nav-hamburger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--slate-700); border-radius: 2px;
      transition: all 0.3s ease;
    }
    .mobile-menu {
      display: none; position: fixed; top: 73px; left: 0; right: 0; z-index: 999;
      background: white; border-bottom: 1px solid var(--sky-100);
      padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    .mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
    .mobile-menu a {
      font-size: 1rem; font-weight: 500; color: var(--slate-700);
      text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--sky-50);
    }

    /* ── Hero ─────────────────────────────────────────────── */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 0 80px;
      background: linear-gradient(160deg, var(--sky-50) 0%, #ffffff 45%, var(--blue-50) 100%);
      overflow: hidden;
    }
    #hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(240,249,255,0.97) 0%, rgba(255,255,255,0.92) 42%, rgba(239,246,255,0.62) 100%),
        url("../hero-automation-background.svg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }
    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .hero-content { animation: fadeUp 0.9s cubic-bezier(.4,0,.2,1) both; }
    .hero-tag { margin-bottom: 24px; }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.03em; color: var(--slate-900);
      margin-bottom: 24px;
    }
    .hero-title em { font-style: normal; color: var(--sky-600); }
    .hero-sub {
      font-size: 1.15rem; color: var(--slate-600);
      line-height: 1.7; margin-bottom: 40px; max-width: 500px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
    .hero-stats {
      display: flex; gap: 32px; flex-wrap: wrap;
    }
    .stat-item { }
    .stat-num {
      font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
      color: var(--sky-600); line-height: 1;
    }
    .stat-label { font-size: 0.83rem; color: var(--slate-600); margin-top: 2px; }
    .hero-visual {
      position: relative;
      animation: fadeUp 1s 0.2s cubic-bezier(.4,0,.2,1) both;
    }
    .hero-card-stack {
      position: relative; width: 100%;
    }
    .hero-card {
      background: white; border-radius: var(--radius-lg);
      box-shadow: var(--shadow-hero); padding: 28px;
      border: 1px solid var(--sky-100);
      animation: cardFloat 6s ease-in-out infinite alternate;
    }
    .hero-card-title {
      font-family: var(--font-display); font-weight: 700; font-size: 1rem;
      color: var(--slate-800); margin-bottom: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-card-title .icon-dot {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .dot-blue { background: var(--sky-100); }
    .workflow-steps { display: flex; flex-direction: column; gap: 10px; }
    .wf-step {
      display: flex; align-items: center; gap: 12px;
      background: var(--sky-50); border-radius: 10px; padding: 10px 14px;
      font-size: 0.88rem; color: var(--slate-700); font-weight: 500;
      border: 1px solid var(--sky-100);
      transition: all 0.3s;
    }
    .wf-step:hover { background: var(--sky-100); transform: translateX(4px); }
    .wf-step-icon { font-size: 1.1rem; }
    .wf-arrow {
      display: flex; justify-content: center; align-items: center;
      color: var(--sky-400); font-size: 0.8rem; height: 4px;
      margin: 0 0 0 20px;
    }
    .wf-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, #dcfce7, #bbf7d0);
      color: #15803d; font-size: 0.78rem; font-weight: 600;
      padding: 4px 10px; border-radius: 50px; margin-top: 4px;
    }
    .float-badge {
      position: absolute; background: white; border-radius: 12px;
      box-shadow: 0 4px 20px rgba(14,165,233,0.2); padding: 10px 16px;
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; font-weight: 600; color: var(--slate-700);
      border: 1px solid var(--sky-100);
      animation: badgeFloat 4s ease-in-out infinite alternate;
    }
    .float-badge-1 { top: -20px; right: -20px; animation-delay: 0s; }
    .float-badge-2 { bottom: -16px; left: -20px; animation-delay: -2s; }
    .float-badge .badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
    @keyframes cardFloat {
      0%   { transform: translateY(0px) rotate(-0.5deg); }
      100% { transform: translateY(-12px) rotate(0.5deg); }
    }
    @keyframes badgeFloat {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-8px); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Scroll-reveal ───────────────────────────────────── */
    /* Visible by default; .js-ready on body enables animations once JS confirms observer works */
    .js-ready .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    }
    .js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
    .js-ready .reveal-delay-1 { transition-delay: 0.1s; }
    .js-ready .reveal-delay-2 { transition-delay: 0.2s; }
    .js-ready .reveal-delay-3 { transition-delay: 0.3s; }
    .js-ready .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── Marquee / ticker ────────────────────────────────── */
    .ticker-section {
      background: linear-gradient(135deg, var(--sky-600), var(--blue-700));
      padding: 18px 0; overflow: hidden;
    }
    .ticker-track {
      display: flex; gap: 0;
      animation: ticker 30s linear infinite;
      white-space: nowrap;
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.9); font-family: var(--font-display);
      font-size: 0.85rem; font-weight: 500; padding: 0 40px;
      letter-spacing: 0.02em;
    }
    .ticker-item::before { content:'·'; color: var(--sky-200); font-size: 1.5rem; line-height: 0; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── Services ────────────────────────────────────────── */
    #services {
      padding: 100px 0;
      background: var(--white);
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .service-card {
      background: white; border-radius: var(--radius-lg);
      border: 1.5px solid var(--sky-100); padding: 36px 28px;
      box-shadow: var(--shadow-card);
      transition: all 0.35s cubic-bezier(.4,0,.2,1);
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: '';position: absolute;top: 0;left: 0;right: 0;height: 3px;
      background: linear-gradient(90deg, var(--sky-400), var(--blue-500));
      transform: scaleX(0);transition: transform 0.35s ease;transform-origin: left;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(14,165,233,0.18); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: linear-gradient(135deg, var(--sky-100), var(--blue-100));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
      transition: transform 0.3s ease;
    }
    .service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
    .service-title {
      font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
      color: var(--slate-800); margin-bottom: 10px;
    }
    .service-desc { font-size: 0.93rem; color: var(--slate-600); line-height: 1.65; }
    .service-list {
      margin-top: 16px; display: flex; flex-direction: column; gap: 6px;
    }
    .service-list li {
      font-size: 0.85rem; color: var(--slate-600);
      display: flex; align-items: center; gap: 8px; list-style: none;
    }
    .service-list li::before {
      content: ''; width: 5px; height: 5px; background: var(--sky-400);
      border-radius: 50%; flex-shrink: 0;
    }

    /* ── How It Works ────────────────────────────────────── */
    #process {
      padding: 100px 0;
      background: linear-gradient(160deg, var(--sky-50) 0%, var(--blue-50) 100%);
      position: relative; overflow: hidden;
    }
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
      position: relative;
    }
    .process-connector {
      position: absolute; top: 36px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
      height: 2px;
      background: linear-gradient(90deg, var(--sky-200), var(--blue-200), var(--sky-200));
      z-index: 0;
    }
    .process-connector::after {
      content: '';position: absolute;top: -2px;left: 0;width: 40px;height: 6px;
      background: var(--sky-400);border-radius: 3px;
      animation: connectorSlide 4s ease-in-out infinite;
    }
    @keyframes connectorSlide {
      0%,100% { left: 0%; opacity: 1; }
      50%      { left: calc(100% - 40px); opacity: 1; }
    }
    .process-step {
      text-align: center; position: relative; z-index: 1;
    }
    .process-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: white; border: 2px solid var(--sky-200);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-family: var(--font-display); font-weight: 800;
      font-size: 1.4rem; color: var(--sky-600);
      box-shadow: 0 4px 16px rgba(14,165,233,0.15);
      transition: all 0.3s;
    }
    .process-step:hover .process-num {
      background: var(--sky-500); color: white; border-color: var(--sky-500);
      transform: scale(1.1);
    }
    .process-step-title {
      font-family: var(--font-display); font-weight: 700; font-size: 1rem;
      color: var(--slate-800); margin-bottom: 8px;
    }
    .process-step-desc { font-size: 0.88rem; color: var(--slate-600); line-height: 1.6; }

    /* ── Why EKV / differentiators ───────────────────────── */
    #why {
      padding: 100px 0;
      background: white;
    }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .why-list { display: flex; flex-direction: column; gap: 20px; }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 20px; border-radius: var(--radius);
      background: var(--sky-50); border: 1px solid var(--sky-100);
      transition: all 0.3s;
    }
    .why-item:hover {
      background: linear-gradient(135deg, var(--sky-50), var(--blue-50));
      border-color: var(--sky-300); transform: translateX(6px);
    }
    .why-icon {
      font-size: 1.5rem; width: 48px; height: 48px; flex-shrink: 0;
      background: white; border-radius: 12px; display: flex;
      align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(14,165,233,0.12);
    }
    .why-text h4 {
      font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
      color: var(--slate-800); margin-bottom: 4px;
    }
    .why-text p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.6; }
    .why-visual {
      position: relative;
    }
    .big-card {
      background: linear-gradient(160deg, var(--sky-50), var(--blue-50));
      border: 1.5px solid var(--sky-200); border-radius: var(--radius-lg);
      padding: 36px; box-shadow: var(--shadow-hero);
    }
    .big-card-head {
      font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
      color: var(--slate-800); margin-bottom: 24px;
      display: flex; align-items: center; gap: 10px;
    }
    .compare-table { width: 100%; border-collapse: collapse; }
    .compare-table th {
      font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--slate-600); padding: 8px 12px; text-align: left;
      border-bottom: 2px solid var(--sky-100);
    }
    .compare-table td {
      padding: 10px 12px; font-size: 0.88rem; color: var(--slate-700);
      border-bottom: 1px solid var(--sky-50);
    }
    .compare-table tr:hover td { background: rgba(255,255,255,0.6); }
    .check-yes { color: #16a34a; font-weight: 700; }
    .check-no  { color: #ef4444; }
    .check-meh { color: #f59e0b; }

    /* ── Industries ──────────────────────────────────────── */
    #industries {
      padding: 80px 0;
      background: linear-gradient(160deg, #f0f9ff 0%, #eff6ff 100%);
    }
    .industries-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .industry-chip {
      background: white; border-radius: var(--radius);
      border: 1.5px solid var(--sky-100); padding: 24px 20px;
      text-align: center; transition: all 0.3s;
      cursor: default;
    }
    .industry-chip:hover {
      border-color: var(--sky-400); background: var(--sky-50);
      transform: translateY(-4px); box-shadow: var(--shadow-card);
    }
    .industry-emoji { font-size: 2rem; margin-bottom: 10px; }
    .industry-name {
      font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
      color: var(--slate-700);
    }

    /* ── Testimonials / social proof ─────────────────────── */
    #testimonials {
      padding: 100px 0; background: white;
    }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .testi-card {
      background: white; border-radius: var(--radius-lg);
      border: 1.5px solid var(--sky-100); padding: 32px;
      box-shadow: var(--shadow-card); transition: all 0.3s;
    }
    .testi-card:hover {
      transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,165,233,0.14);
      border-color: var(--sky-300);
    }
    .testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-quote {
      font-size: 0.95rem; color: var(--slate-700); line-height: 1.7;
      font-style: italic; margin-bottom: 20px;
    }
    .testi-quote::before { content: '"'; font-size: 2rem; color: var(--sky-300); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--sky-400), var(--blue-600));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: white;
      flex-shrink: 0;
    }
    .testi-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--slate-800); }
    .testi-role { font-size: 0.8rem; color: var(--slate-500); }

    /* ── CTA Banner ──────────────────────────────────────── */
    #cta-banner {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--sky-600), var(--blue-700));
      position: relative; overflow: hidden;
    }
    #cta-banner::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner-inner { position: relative; text-align: center; }
    .cta-banner-inner h2 {
      font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -0.02em;
    }
    .cta-banner-inner p {
      color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px;
      max-width: 560px; margin-left: auto; margin-right: auto;
    }
    .btn-white {
      background: white; color: var(--sky-700);
      font-family: var(--font-display); font-weight: 700;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

    /* ── Contact / Form ──────────────────────────────────── */
    #contact {
      padding: 100px 0;
      background: var(--slate-50);
    }
    .contact-grid {
      display: grid; grid-template-columns: 1fr; gap: 0; align-items: start;
      max-width: 760px; margin: 0 auto;
    }
    .contact-info h3 {
      font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
      color: var(--slate-800); margin-bottom: 16px; letter-spacing: -0.02em;
    }
    .contact-info p { color: var(--slate-600); line-height: 1.7; margin-bottom: 32px; }
    .contact-details { display: flex; flex-direction: column; gap: 16px; }
    .contact-detail {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.92rem; color: var(--slate-700);
    }
    .contact-detail-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--sky-100); display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .form-card {
      background: white; border-radius: var(--radius-lg);
      border: 1.5px solid var(--sky-100); padding: 40px;
      box-shadow: var(--shadow-card);
    }
    .form-group { margin-bottom: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group label {
      display: block; font-family: var(--font-display); font-weight: 600;
      font-size: 0.85rem; color: var(--slate-700); margin-bottom: 6px;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 12px 16px; border-radius: 10px;
      border: 1.5px solid var(--sky-100); font-family: var(--font-body);
      font-size: 0.93rem; color: var(--slate-800); background: var(--sky-50);
      outline: none; transition: all 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--sky-400);
      background: white; box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit-wrap { margin-top: 8px; }
    .btn-form {
      width: 100%; justify-content: center; padding: 16px;
      font-size: 1rem; font-family: var(--font-display); font-weight: 700;
    }
    .form-note {
      text-align: center; font-size: 0.8rem; color: var(--slate-500); margin-top: 12px;
    }
    .form-success {
      display: none; text-align: center; padding: 24px;
      background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--radius);
      color: #15803d; font-weight: 600;
    }
    .form-error {
      display: none; color: #ef4444; font-size: 0.82rem; margin-top: 6px;
    }

    /* SMTP Config Panel (hidden by default, for your internal use) */
    .smtp-config-toggle {
      font-size: 0.78rem; color: var(--slate-400); cursor: pointer;
      text-align: right; margin-bottom: 20px; user-select: none;
    }
    .smtp-config-toggle:hover { color: var(--sky-500); }
    .smtp-panel {
      display: none; background: var(--slate-50); border-radius: 10px;
      border: 1px dashed var(--sky-200); padding: 20px; margin-bottom: 20px;
    }
    .smtp-panel.open { display: block; }
    .smtp-panel-title {
      font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
      color: var(--slate-600); margin-bottom: 14px;
    }
    .smtp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .smtp-row .form-group { margin-bottom: 10px; }
    .smtp-row .form-group label { font-size: 0.78rem; }
    .smtp-row .form-group input { font-size: 0.82rem; padding: 8px 12px; }

    /* ── Footer ──────────────────────────────────────────── */
    footer {
      background: var(--slate-900); color: rgba(255,255,255,0.7);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.55); }
    .footer-col h4 {
      font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
      color: white; margin-bottom: 16px; letter-spacing: 0.02em;
    }
    .footer-col a {
      display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55);
      text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--sky-300); }
    .footer-bottom {
      padding-top: 28px; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
      color: white;
    }
    .footer-logo img {
      height: 30px;
      width: auto;
      display: block;
    }

    /* ── Mobile ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-cta.desktop { display: none; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-connector { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { display: none; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .form-row { grid-template-columns: 1fr; }
      .smtp-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .hero-stats { gap: 20px; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* ── Prevent text clipping on descenders ────────────── */
    h1, h2, h3, h4, h5, h6,
    .section-title, .hero-title, .service-title, .process-step-title,
    .why-text h4, .big-card-head, .testi-name, .contact-info h3,
    .nav-logo, .footer-logo, .stat-num, .btn, .tag,
    .industry-name, .footer-col h4 {
      overflow: visible;
      line-height: 1.25;
    }
    /* Ensure no overflow:hidden clips text at element edges */
    .section-title { line-height: 1.25; padding-bottom: 2px; }
    .hero-title    { line-height: 1.12; padding-bottom: 4px; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sky-50); }
::-webkit-scrollbar-thumb { background: var(--sky-300); border-radius: 3px; }

    main {
      display: block;
    }

    .mesh-bg {
      z-index: 1;
    }

    .contact-form-shell {
      overflow: hidden;
    }

    .contact-form-helper {
      text-align: center;
      font-size: 0.8rem;
      color: var(--slate-500);
      margin-bottom: 18px;
    }

.contact-plugin-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--sky-50);
  border: 1px solid var(--sky-200);
  color: var(--slate-700);
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-plugin-note code {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.82rem;
}

.contact-form-shell .ff-el-group,
.contact-form-shell .ff-t-cell,
.contact-form-shell .ff-el-input--content {
  margin-bottom: 18px;
}

.contact-form-shell label,
.contact-form-shell .ff-el-input--label label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.contact-form-shell input[type="text"],
.contact-form-shell input[type="email"],
.contact-form-shell input[type="tel"],
.contact-form-shell input[type="number"],
.contact-form-shell input[type="url"],
.contact-form-shell select,
.contact-form-shell textarea,
.contact-form-shell .ff-el-form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--sky-100);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--slate-800);
  background: var(--sky-50);
  outline: none;
  transition: all 0.2s;
}

.contact-form-shell input[type="text"]:focus,
.contact-form-shell input[type="email"]:focus,
.contact-form-shell input[type="tel"]:focus,
.contact-form-shell input[type="number"]:focus,
.contact-form-shell input[type="url"]:focus,
.contact-form-shell select:focus,
.contact-form-shell textarea:focus,
.contact-form-shell .ff-el-form-control:focus {
  border-color: var(--sky-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.contact-form-shell textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-shell .ff-btn-submit,
.contact-form-shell .ff-btn,
.contact-form-shell button[type="submit"] {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}

.contact-form-shell .ff-btn-submit:hover,
.contact-form-shell .ff-btn:hover,
.contact-form-shell button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.45);
}

.contact-form-shell .ff-message-success,
.contact-form-shell .ff-message-inline.ff-el-is-success {
  display: block;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
  font-weight: 600;
}

.contact-form-shell .text-danger,
.contact-form-shell .ff-el-is-error .error,
.contact-form-shell .ff-el-is-error .ff-el-error {
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 6px;
}
