/* ─── RESET & BASE ───────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #ffffff; color: #1a1a2e;
      line-height: 1.6; overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ─── CSS VARIABLES ──────────────────────────────────────────── */
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-light: #60a5fa;
      --accent: #f59e0b;
      --navy: #1e3a5f;
      --navy-light: #2d5a8e;
      --dark: #ffffff;
      --dark-card: #ffffff;
      --dark-border: #e5e7eb;
      --gray-900: #f8fafc;
      --gray-800: #f1f5f9;
      --gray-700: #cbd5e1;
      --gray-600: #64748b;
      --gray-400: #475569;
      --gray-300: #334155;
      --white: #0f172a;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-lg: 0 10px 40px -10px rgba(0,0,0,0.1);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --max-width: 1280px;
    }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--primary);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: ''; width: 32px; height: 2px; background: var(--primary);
    }
    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      line-height: 1.15; color: var(--white); margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 1.05rem; color: var(--gray-400); max-width: 600px; line-height: 1.7;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 32px; border-radius: 50px; font-weight: 600;
      font-size: 0.9rem; letter-spacing: 0.02em;
      transition: var(--transition); position: relative; overflow: hidden;
    }
    .btn::after {
      content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
      transform: skewX(-20deg);
      animation: btnShine 4s ease-in-out infinite;
    }
    .btn-outline::after {
      background: linear-gradient(90deg, transparent, rgba(230,57,70,0.12), transparent);
    }
    .btn-primary {
      background: #e63946; color: white;
      box-shadow: 0 0 20px rgba(230,57,70,0.4), 0 0 40px rgba(230,57,70,0.2);
    }
    .btn-primary:hover {
      background: #c1121f; transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(230,57,70,0.5), 0 0 50px rgba(230,57,70,0.3);
    }
    .btn-outline {
      border: 2px solid #e63946; color: #e63946;
      box-shadow: 0 0 12px rgba(230,57,70,0.15);
    }
    .btn-outline:hover {
      background: #e63946; color: white; transform: translateY(-2px);
      box-shadow: 0 0 20px rgba(230,57,70,0.4), 0 0 40px rgba(230,57,70,0.2);
    }
    .btn-white {
      background: white; color: #e63946; font-weight: 700;
      box-shadow: 0 0 20px rgba(255,255,255,0.4), 0 0 40px rgba(255,255,255,0.2);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(255,255,255,0.5), 0 0 50px rgba(255,255,255,0.3); }

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

    @keyframes btnShine {
      0% { left: -100%; }
      20% { left: 100%; }
      100% { left: 100%; }
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-60px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(60px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── NAVBAR ──────────────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 16px 0;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid transparent;
      transition: var(--transition);
    }
    .navbar.scrolled {
      padding: 10px 0;
      border-bottom-color: var(--dark-border);
      background: rgba(255,255,255,0.97);
      box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    }
    .navbar .container {
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo {
      display: flex; align-items: center; gap: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 1.2rem;
      text-shadow: 0 0 10px rgba(37,99,235,0.4), 0 0 20px rgba(37,99,235,0.2), 0 0 40px rgba(37,99,235,0.1);
    }
    .logo-icon {
      width: 90px; height: auto;
      object-fit: contain;
    }
    .logo span { color: var(--primary); }
    .logo-full { display: inline; }
    .logo-short { display: none; }
    .nav-links { display: flex; align-items: center; gap: 8px; }
    .nav-links a {
      padding: 8px 16px; font-size: 0.875rem; font-weight: 500;
      color: var(--gray-400); border-radius: 8px;
      transition: var(--transition);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--gray-800); }
    .nav-cta {
      margin-left: 16px; padding: 10px 24px !important;
      background: #e63946 !important; color: white !important;
      border-radius: 50px !important; font-weight: 600 !important;
      box-shadow: 0 0 15px rgba(230,57,70,0.35), 0 0 30px rgba(230,57,70,0.15);
    }
    .nav-cta:hover { background: #c1121f !important; transform: translateY(-1px); box-shadow: 0 0 20px rgba(230,57,70,0.45), 0 0 40px rgba(230,57,70,0.25); }
    .nav-phone {
      display: flex; align-items: center; gap: 8px;
      color: var(--white) !important; font-weight: 700 !important;
      font-size: 0.9rem !important;
    }
    .nav-phone svg { color: var(--primary); }

    /* Mobile menu */
    .mobile-toggle {
      display: none; flex-direction: column; gap: 6px; padding: 10px;
      background: none; border: none; cursor: pointer;
    }
    .mobile-toggle span {
      display: block; width: 28px; height: 3px; background: #1a1a2e;
      transition: all 0.3s ease; border-radius: 3px;
      transform-origin: center;
    }
    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

    /* ─── HERO ────────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding-top: 80px;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 50%, #f5f8ff 100%);
      background-size: cover;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.06) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 80%, rgba(245,158,11,0.04) 0%, transparent 50%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-grid-bg::before, .hero-grid-bg::after {
      content: ''; position: absolute; z-index: 1; border-radius: 50%;
      filter: blur(1px);
    }
    /* Horizontal electrical pulse */
    .hero-grid-bg::before {
      width: 120px; height: 2px; top: 180px; left: -120px;
      background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #93c5fd, transparent);
      box-shadow: 0 0 8px #3b82f6, 0 0 20px rgba(59,130,246,0.4);
      animation: electricFlowH 6s linear infinite;
    }
    /* Vertical electrical pulse */
    .hero-grid-bg::after {
      width: 2px; height: 120px; top: -120px; left: 360px;
      background: linear-gradient(180deg, transparent, #3b82f6, #60a5fa, #93c5fd, transparent);
      box-shadow: 0 0 8px #3b82f6, 0 0 20px rgba(59,130,246,0.4);
      animation: electricFlowV 8s linear infinite 2s;
    }
    @keyframes electricFlowH {
      0% { left: -120px; top: 180px; opacity: 0; }
      5% { opacity: 1; }
      45% { opacity: 1; }
      50% { left: 100%; opacity: 0; }
      50.1% { left: -120px; top: 360px; opacity: 0; }
      55% { opacity: 1; }
      95% { opacity: 1; }
      100% { left: 100%; top: 360px; opacity: 0; }
    }
    @keyframes electricFlowV {
      0% { top: -120px; left: 360px; opacity: 0; }
      5% { opacity: 1; }
      45% { opacity: 1; }
      50% { top: 100%; opacity: 0; }
      50.1% { top: -120px; left: 720px; opacity: 0; }
      55% { opacity: 1; }
      95% { opacity: 1; }
      100% { top: 100%; left: 720px; opacity: 0; }
    }
    .hero .container {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .hero-content { animation: slideInLeft 1s ease; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px; border-radius: 50px;
      background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
      font-size: 0.8rem; font-weight: 600; color: var(--primary);
      margin-bottom: 28px;
    }
    .hero-badge .pulse-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--primary); animation: pulse 2s infinite;
    }
    .hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900; line-height: 1.08;
      margin-bottom: 24px;
    }
    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.15rem; color: var(--gray-400);
      max-width: 520px; margin-bottom: 40px; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
    .hero-stats {
      display: flex; gap: 48px; padding-top: 40px;
      border-top: 1px solid var(--dark-border);
    }
    .hero-stat { animation: countUp 0.8s ease forwards; opacity: 0; }
    .hero-stat:nth-child(1) { animation-delay: 0.5s; }
    .hero-stat:nth-child(2) { animation-delay: 0.7s; }
    .hero-stat:nth-child(3) { animation-delay: 0.9s; }
    .hero-stat-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem; font-weight: 900; color: var(--white);
    }
    .hero-stat-value span { color: var(--primary); }
    .hero-stat-label { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; margin-top: 4px; }

    .hero-visual {
      position: relative; animation: slideInRight 1s ease;
    }
    .hero-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius-lg); padding: 40px;
      box-shadow: var(--shadow-lg);
      position: relative; overflow: hidden;
    }
    .hero-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--primary), #3b82f6);
    }
    .hero-card-icon {
      width: 64px; height: 64px; border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-bottom: 24px;
    }
    .hero-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.5rem; font-weight: 800; margin-bottom: 12px;
    }
    .hero-card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.6; }
    .hero-floating-badge {
      position: absolute; padding: 12px 20px; border-radius: 12px;
      background: var(--dark-card); border: 1px solid var(--dark-border);
      box-shadow: var(--shadow-lg); font-size: 0.85rem;
      display: flex; align-items: center; gap: 10px;
      animation: float 3s ease-in-out infinite;
    }
    .hero-floating-badge.top-right { top: -20px; right: -20px; animation-delay: 0.5s; }
    .hero-floating-badge.bottom-left { bottom: -15px; left: -15px; animation-delay: 1s; }
    .hero-floating-badge .badge-icon {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }

    /* ─── SERVICES ────────────────────────────────────────────────── */
    .services { background: var(--dark); }
    .services-header { text-align: center; margin-bottom: 64px; }
    .services-header .section-subtitle { margin: 0 auto; }
    .service-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius-lg); padding: 40px 32px;
      transition: var(--transition); position: relative; overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .service-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--primary), #3b82f6);
      transform: scaleX(0); transition: transform 0.4s ease;
    }
    .service-card:hover { transform: translateY(-8px); border-color: var(--gray-700); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 24px;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      border-color: transparent;
    }
    .service-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
    }
    .service-card p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
    .service-link {
      font-size: 0.85rem; font-weight: 600; color: var(--primary);
      display: inline-flex; align-items: center; gap: 6px;
      transition: var(--transition);
    }
    .service-link:hover { gap: 10px; }

    /* ─── ABOUT ───────────────────────────────────────────────────── */
    .about { background: var(--gray-900); }
    .about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-visual { position: relative; }
    .about-image-main {
      width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; position: relative; overflow: hidden;
    }
    .about-image-main img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    }
    .about-image-main::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(37,99,235,0.1));
    }
    .about-float-card {
      position: absolute; bottom: -30px; right: -30px;
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius); padding: 24px;
      box-shadow: var(--shadow-lg);
    }
    .about-float-card .stat-big {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem; font-weight: 900; color: var(--primary);
    }
    .about-float-card .stat-label { font-size: 0.85rem; color: var(--gray-400); }
    .about-content .section-subtitle { margin-bottom: 32px; }
    .about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
    .about-feature {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .about-feature-icon {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
      background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .about-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .about-feature p { font-size: 0.875rem; color: var(--gray-400); }

    /* ─── PROCESS ─────────────────────────────────────────────────── */
    .process { background: var(--dark); }
    .process-header { text-align: center; margin-bottom: 80px; }
    .process-header .section-subtitle { margin: 0 auto; }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .process-step {
      text-align: center; padding: 40px 24px; position: relative;
    }
    .process-step::after {
      content: ''; position: absolute; top: 44px; left: 100%;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--primary), transparent);
      z-index: 1;
    }
    .process-step:last-child::after { display: none; }
    .process-number {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.4rem; font-weight: 900; color: white;
      margin: 0 auto 24px; position: relative; z-index: 2;
      box-shadow: 0 0 30px rgba(37,99,235,0.25);
    }
    .process-step h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
    }
    .process-step p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }

    /* ─── TEAM ────────────────────────────────────────────────────── */
    .team { background: var(--gray-900); }
    .team-header { text-align: center; margin-bottom: 64px; }
    .team-header .section-subtitle { margin: 0 auto; }
    .team-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .team-card:hover { transform: translateY(-8px); border-color: var(--gray-700); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .team-photo {
      width: 100%; aspect-ratio: 3/4; overflow: hidden;
      background: linear-gradient(135deg, var(--navy), var(--gray-800));
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; position: relative;
    }
    .team-photo img {
      object-position: top center;
    }
    .team-photo::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, #ffffff 0%, transparent 40%);
    }
    .team-info { padding: 24px; text-align: center; }
    .team-info h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem; font-weight: 700; margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.85rem; color: var(--primary); font-weight: 600;
      letter-spacing: 0.03em; margin-bottom: 12px;
    }
    .team-info p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }
    .team-socials { display: flex; justify-content: center; gap: 10px; }
    .team-social {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--gray-800); border: 1px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; transition: var(--transition);
    }
    .team-social:hover { background: var(--primary); border-color: var(--primary); }

    /* ─── TESTIMONIALS ────────────────────────────────────────────── */
    .testimonials { background: var(--dark); }
    .testimonials-header { text-align: center; margin-bottom: 64px; }
    .testimonials-header .section-subtitle { margin: 0 auto; }
    .testimonial-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius-lg); padding: 36px;
      transition: var(--transition); position: relative;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .testimonial-card:hover { border-color: var(--gray-700); }
    .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--accent); font-size: 1rem; }
    .testimonial-card blockquote {
      font-size: 1rem; color: var(--gray-300); line-height: 1.7;
      font-style: italic; margin-bottom: 24px;
    }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1.1rem; color: white;
    }
    .testimonial-name { font-weight: 700; font-size: 0.95rem; }
    .testimonial-title { font-size: 0.8rem; color: var(--gray-600); }

    /* ─── CTA BANNER ──────────────────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e3a5f);
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.2) 0%, transparent 50%);
    }
    .cta-banner .container { position: relative; z-index: 1; }
    .cta-banner h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
      margin-bottom: 20px;
    }
    .cta-banner p {
      font-size: 1.15rem; color: rgba(255,255,255,0.8);
      max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
    }
    .cta-banner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── PROJECT GALLERY ─────────────────────────────────────────── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 280px;
      gap: 6px;
      margin-top: 56px;
    }
    .gallery-item {
      position: relative; overflow: hidden; cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
      filter: brightness(0.95) saturate(1);
    }
    .gallery-item:hover img {
      transform: scale(1.08);
      filter: brightness(1) saturate(1.1);
    }
    .gallery-item::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
      opacity: 0; transition: opacity 0.4s ease;
    }
    .gallery-item:hover::before { opacity: 1; }
    .gallery-item .gallery-label {
      position: absolute; bottom: 16px; left: 20px; z-index: 2;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: white;
      opacity: 0; transform: translateY(10px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .gallery-item:hover .gallery-label {
      opacity: 1; transform: translateY(0);
    }
    .gallery-item .gallery-line {
      position: absolute; bottom: 40px; left: 20px; z-index: 2;
      width: 32px; height: 2px; background: var(--primary);
      opacity: 0; transform: scaleX(0); transform-origin: left;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
    }
    .gallery-item:hover .gallery-line {
      opacity: 1; transform: scaleX(1);
    }

    @media (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 4px; }
    }

    /* ─── BOOKING ─────────────────────────────────────────────────── */
    .booking { background: var(--gray-900); }
    .booking .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .booking-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius-lg); padding: 40px;
    }
    .booking-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem; font-weight: 700; margin-bottom: 24px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block; font-size: 0.85rem; font-weight: 600;
      color: var(--gray-400); margin-bottom: 8px;
    }
    .form-input, .form-textarea, .form-select {
      width: 100%; padding: 14px 18px; border-radius: 10px;
      background: var(--gray-900); border: 1px solid var(--dark-border);
      color: var(--white); font-family: inherit; font-size: 0.9rem;
      transition: var(--transition); outline: none;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-select { appearance: none; cursor: pointer; }
    .form-select option { background: #ffffff; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .booking-info-card {
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius); padding: 24px;
      display: flex; gap: 16px; align-items: flex-start;
      margin-bottom: 16px; transition: var(--transition);
    }
    .booking-info-card:hover { border-color: var(--gray-700); }
    .booking-info-icon {
      flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
      background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .booking-info-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
    .booking-info-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.5; }
    .booking-info-card a { color: var(--primary); font-weight: 600; }

    /* ─── COVERAGE MAP ────────────────────────────────────────────── */
    .coverage { background: var(--dark); }
    .coverage-header { text-align: center; margin-bottom: 64px; }
    .coverage-header .section-subtitle { margin: 0 auto; }
    .coverage-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: center; }
    .coverage-map {
      border-radius: var(--radius-lg);
      background: var(--dark-card); border: 1px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 24px;
    }
    .coverage-map svg {
      display: block; width: 100%; height: auto;
    }
    .coverage-map::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .coverage-states { display: flex; flex-direction: column; gap: 12px; }
    .coverage-state {
      display: flex; align-items: center; gap: 16px; padding: 16px 20px;
      background: var(--dark-card); border: 1px solid var(--dark-border);
      border-radius: var(--radius); transition: var(--transition);
    }
    .coverage-state:hover { border-color: var(--gray-700); transform: translateX(4px); }
    .coverage-state-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--primary); flex-shrink: 0;
    }
    .coverage-state-name { font-weight: 600; font-size: 0.95rem; flex: 1; }
    .coverage-state-badge {
      font-size: 0.75rem; padding: 4px 10px; border-radius: 50px;
      background: rgba(37,99,235,0.08); color: var(--primary);
      font-weight: 600;
    }

    /* ─── FOOTER ──────────────────────────────────────────────────── */
    .footer {
      background: #0f172a; border-top: 1px solid #1e293b;
      padding: 80px 0 32px; color: #e2e8f0;
    }
    .footer .logo { color: #e2e8f0; }
    .footer .logo span { color: #60a5fa; }
    .footer h4 { color: #f1f5f9; }
    .footer ul a { color: #94a3b8; }
    .footer ul a:hover { color: #60a5fa; }
    .footer-brand p { color: #94a3b8; }
    .footer-bottom { color: #64748b; border-top-color: #1e293b; }
    .footer-bottom a { color: #94a3b8; }
    .footer-bottom a:hover { color: #60a5fa; }
    .footer-social { background: #1e293b; border-color: #334155; color: #e2e8f0; }
    .footer-social:hover { background: var(--primary); border-color: var(--primary); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 64px;
    }
    .footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; margin: 20px 0 24px; max-width: 320px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 40px; height: 40px; border-radius: 10px;
      background: #334155; border: 1px solid #475569; color: #f1f5f9;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition); font-size: 1rem;
    }
    .footer-social:hover { background: #3b82f6; border-color: #3b82f6; color: white; transform: translateY(-2px); }
    .footer h4 {
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--white); margin-bottom: 20px;
    }
    .footer ul li { margin-bottom: 12px; }
    .footer ul a {
      font-size: 0.9rem; color: var(--gray-400); transition: var(--transition);
    }
    .footer ul a:hover { color: var(--primary); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 32px; border-top: 1px solid var(--dark-border);
      font-size: 0.85rem; color: var(--gray-600);
    }
    .footer-bottom a { color: var(--gray-400); }
    .footer-bottom a:hover { color: var(--primary); }

    /* ─── PAGE HERO (inner pages) ─────────────────────────────────── */
    .page-hero {
      padding: 160px 0 80px; text-align: center;
      background: var(--gray-900); position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.05) 0%, transparent 60%);
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero .section-title { margin-bottom: 16px; }
    .page-hero .breadcrumb {
      font-size: 0.85rem; color: var(--gray-600);
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-bottom: 20px;
    }
    .page-hero .breadcrumb a { color: var(--gray-400); transition: var(--transition); }
    .page-hero .breadcrumb a:hover { color: var(--primary); }

    /* ─── PAGES (hidden by default) ───────────────────────────────── */
    
    

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: -1; }
      .about .container { grid-template-columns: 1fr; gap: 48px; }
      .booking .container { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-step::after { display: none; }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .coverage-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .section { padding: 56px 0; }

      /* ── Navbar ── */
      .navbar { padding: 8px 0; }
      .navbar.scrolled { padding: 6px 0; }
      .logo { font-size: 0.85rem; gap: 6px; }
      .logo-icon { width: 45px; height: auto; }
      .logo-full { display: inline; }
      .logo-short { display: none; }
      .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100vh;
        background: #ffffff;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 4px; z-index: 1000; padding: 100px 32px 60px;
        overflow-y: auto;
      }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 1.2rem; padding: 16px 24px; width: 100%; text-align: center; border-radius: 12px; color: #1a1a2e; font-weight: 600; }
      .nav-links a:hover, .nav-links a.active { background: #f1f5f9; color: #2563eb; }
      .nav-cta { margin-left: 0 !important; margin-top: 20px; width: 100%; text-align: center; justify-content: center; display: flex !important; font-size: 1.1rem !important; padding: 18px 24px !important; background: #e63946 !important; color: white !important; border-radius: 50px !important; box-shadow: 0 0 20px rgba(230,57,70,0.3) !important; }
      .nav-phone { justify-content: center; margin-top: 12px; font-size: 1.15rem !important; color: #1a1a2e !important; font-weight: 700 !important; }
      .nav-phone svg { color: #e63946; }
      .mobile-toggle.open { z-index: 1002; }
      .mobile-toggle.open span { background: #1a1a2e; }
      .mobile-toggle { display: flex; z-index: 1001; padding: 12px; min-width: 52px; min-height: 52px; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }

      /* ── Hero ── */
      .hero { min-height: auto; padding: 90px 0 48px; }
      .hero h1 { font-size: 1.85rem; margin-bottom: 16px; line-height: 1.15; }
      .hero p { font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
      .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 20px; }
      .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 36px; }
      .hero-actions .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1rem; }
      .hero-stats { gap: 12px; flex-wrap: nowrap; padding-top: 24px; justify-content: space-between; }
      .hero-stat { flex: 1; min-width: 0; text-align: center; }
      .hero-stat-value { font-size: 1.6rem; }
      .hero-stat-label { font-size: 0.7rem; }
      .hero-floating-badge { display: none; }
      .hero-card { padding: 24px; }
      .hero-card-icon { width: 48px; height: 48px; font-size: 1.3rem; border-radius: 12px; margin-bottom: 14px; }
      .hero-card h3 { font-size: 1.15rem; }
      .hero-card p { font-size: 0.9rem; }

      /* ── Section titles ── */
      .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 12px; }
      .section-subtitle { font-size: 0.9rem; }
      .section-label { font-size: 0.7rem; margin-bottom: 10px; }

      /* ── Grids ── */
      .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 16px; }
      .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }

      /* ── Service cards ── */
      .service-card { padding: 24px 20px; }
      .service-card[style*="padding:48px"] { padding: 24px 16px !important; }
      .service-card[style*="padding:36px"] { padding: 20px 16px !important; }
      .service-icon { width: 48px; height: 48px; font-size: 1.3rem; border-radius: 12px; margin-bottom: 14px; }
      .service-icon[style*="width:72px"] { width: 52px !important; height: 52px !important; font-size: 1.4rem !important; }
      .service-card h3 { font-size: 1.05rem; }
      .service-card h3[style*="font-size:1.4rem"] { font-size: 1.1rem !important; }
      .service-card img[style*="height:220px"] { height: 180px !important; }

      /* ── Process ── */
      .process-grid { grid-template-columns: 1fr; gap: 4px; }
      .process-step { padding: 24px 16px; }
      .process-number { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 14px; }

      /* ── About ── */
      .about-float-card { position: relative; bottom: auto; right: auto; margin-top: -20px; }
      .about-image-main { font-size: 3rem; }
      .about-features { gap: 16px; }

      /* ── Team ── */
      .team-card { margin-bottom: 0; }
      .team-photo { aspect-ratio: 1; }
      .team-info { padding: 16px; }
      .team-info h3 { font-size: 1rem; }
      .team-info p { font-size: 0.8rem; line-height: 1.5; }
      .team-role { font-size: 0.75rem; }
      .team-social { width: 38px; height: 38px; }

      /* ── Testimonials ── */
      .testimonial-card { padding: 24px; }
      .testimonial-card blockquote { font-size: 0.9rem; line-height: 1.6; }
      .testimonial-avatar { width: 40px; height: 40px; font-size: 0.9rem; }

      /* ── Gallery ── */
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 4px; }

      /* ── CTA Banner ── */
      .cta-banner { padding: 56px 0; }
      .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
      .cta-banner p { font-size: 0.9rem; margin-bottom: 24px; }
      .cta-actions { flex-direction: column; gap: 12px; }
      .cta-actions .btn { width: 100%; justify-content: center; padding: 18px 24px; }

      /* ── Coverage ── */
      .coverage-map { padding: 12px; min-height: 220px; }
      .coverage-map svg { min-height: 200px !important; }
      .coverage-state { padding: 12px 16px; }
      .coverage-state-name { font-size: 0.9rem; }

      /* ── Booking / Forms ── */
      .booking .container { gap: 32px; }
      .booking-card { padding: 20px; }
      .booking-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
      .form-row { grid-template-columns: 1fr; }
      .form-group { margin-bottom: 16px; }
      .form-input, .form-textarea, .form-select { padding: 16px; font-size: 16px; border-radius: 12px; }
      .form-label { font-size: 0.8rem; }
      .booking-info-card { padding: 16px; }
      .booking-info-icon { width: 40px; height: 40px; border-radius: 10px; font-size: 1rem; }

      /* ── Page Hero ── */
      .page-hero { padding: 100px 0 48px; }
      .page-hero .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
      .page-hero .section-subtitle { font-size: 0.85rem; }
      .breadcrumb { font-size: 0.8rem; margin-bottom: 12px; }

      /* ── Footer ── */
      .footer { padding: 48px 0 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand .logo { font-size: 1rem; }
      .footer-brand p { font-size: 0.85rem; margin: 14px 0 18px; }
      .footer h4 { margin-bottom: 12px; font-size: 0.8rem; }
      .footer ul a { font-size: 0.85rem; }
      .footer ul li { margin-bottom: 10px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; font-size: 0.8rem; }
      .footer-bottom div { gap: 16px !important; }
      .footer-social { width: 44px; height: 44px; }

      /* ── Scroll-to-top ── */
      .scroll-top { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.1rem; }

      /* ── Buttons ── */
      .btn { padding: 16px 28px; font-size: 0.95rem; }
      .btn::after { animation-duration: 5s; }

      /* ── Join team card ── */
      div[style*="padding:48px;max-width:700px"] { padding: 24px 20px !important; }
      div[style*="padding:48px;max-width:700px"] h3 { font-size: 1.15rem !important; }
      div[style*="padding:48px;max-width:700px"] p { font-size: 0.85rem !important; }

      /* ── Sticky mobile CTA ── */
      .mobile-sticky-cta {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
        padding: 12px 20px; gap: 10px; border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
      }
      .mobile-sticky-cta .btn { flex: 1; justify-content: center; padding: 14px 16px; font-size: 0.9rem; }
    }

    /* ─── Small phones ─────────────────────────────────────────────── */
    @media (max-width: 380px) {
      .hero h1 { font-size: 1.6rem; }
      .hero-stat-value { font-size: 1.4rem; }
      .hero-stats { gap: 8px; }
      .section-title { font-size: 1.4rem; }
      .logo { font-size: 0.75rem; }
      .logo-icon { width: 38px; }
      .btn { padding: 14px 20px; font-size: 0.85rem; }
      .grid-4 { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    }

    /* ─── Hide sticky CTA on desktop ──────────────────────────────── */
    .mobile-sticky-cta { display: none; }

    /* ─── SCROLL TO TOP ──────────────────────────────────────────── */
    .scroll-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 900;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--primary); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; box-shadow: 0 4px 20px rgba(37,99,235,0.3);
      opacity: 0; visibility: hidden; transition: var(--transition);
      cursor: pointer;
    }
    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover { transform: translateY(-3px); }
