:root {
    --sky: #1a8fe3;
    --sky-light: #5bbcf5;
    --sky-dark: #0d5fa0;
    --navy: #0d1b2e;
    --navy-mid: #162840;
    --green: #5cbf2a;
    --green-dark: #3a8a14;
    --white: #f5f9ff;
    --gray: #8fa8c2;
    --card-bg: rgba(13,27,46,0.85);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: rgba(10,20,38,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(91,188,245,0.12);
    transition: padding 0.3s;
  }

  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 52px; filter: drop-shadow(0 0 8px rgba(26,143,227,0.5)); }
  .nav-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--sky-light);
    line-height: 1;
  }
  .nav-logo small {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
  }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--sky);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--sky-light); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,143,227,0.5); }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px; /* clear fixed navbar */
    padding-bottom: 80px; /* clear stats bar */
  }

  /* Logo banner */
  .logo-banner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 16px;
    width: 100%;
    flex-shrink: 0;
  }
  .logo-banner img {
    display: block;
    width: clamp(140px, 20vw, 220px);
    height: auto;
    animation: logoPop 0.9s cubic-bezier(0.22,1,0.36,1) both,
               logoGlow 3s 1s ease-in-out infinite alternate;
  }
  .logo-banner img.hidden { display: none; }
  /* Inline SVG shown if image fails */
  .logo-text-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: logoPop 0.9s cubic-bezier(0.22,1,0.36,1) both;
  }
  .logo-text-fallback .ltf-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(26,143,227,0.6));
  }
  .logo-text-fallback .ltf-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.12em;
    color: var(--sky-light);
    text-shadow: 0 0 24px rgba(26,143,227,0.7);
    margin-top: 6px;
  }
  .logo-text-fallback .ltf-sub {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 2px;
  }
  @keyframes logoPop {
    from { opacity: 0; transform: scale(0.75) translateY(-16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
  @keyframes logoGlow {
    from { filter: drop-shadow(0 0 16px rgba(26,143,227,0.45)) drop-shadow(0 0 40px rgba(26,143,227,0.2)); }
    to   { filter: drop-shadow(0 0 30px rgba(91,188,245,0.8)) drop-shadow(0 0 70px rgba(26,143,227,0.45)); }
  }
  .logo-banner-line {
    margin-top: 16px;
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91,188,245,0.5), transparent);
  }

  /* Hero background video (real drone in flight) */
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse 80% 60% at 60% 30%, rgba(26,143,227,0.20) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(92,191,42,0.10) 0%, transparent 60%),
      linear-gradient(118deg, rgba(7,15,28,0.92) 0%, rgba(9,18,33,0.66) 42%, rgba(8,21,37,0.5) 72%, rgba(8,21,37,0.64) 100%);
  }

  /* Animated grid lines */
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(26,143,227,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,143,227,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
  }
  @keyframes gridDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
  }

  /* Floating particles */
  .particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--sky-light);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
  }
  @keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 24px 80px 40px 80px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,143,227,0.12);
    border: 1px solid rgba(26,143,227,0.3);
    border-radius: 2px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.1s ease both;
  }
  .hero-title .line-sky { color: var(--sky-light); }
  .hero-title .line-white { color: var(--white); }
  .hero-title .line-accent {
    -webkit-text-stroke: 2px var(--sky);
    color: transparent;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
    animation: fadeSlideUp 0.8s 0.2s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #fff;
    padding: 14px 34px;
    border: none;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26,143,227,0.4);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,143,227,0.6); }

  .btn-outline {
    background: transparent;
    color: var(--sky-light);
    padding: 13px 32px;
    border: 2px solid rgba(91,188,245,0.4);
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }
  .btn-outline:hover {
    background: rgba(26,143,227,0.1);
    border-color: var(--sky-light);
    transform: translateY(-3px);
  }

  /* (Our Fleet hero reel removed per request) */

  /* Hero stats bar */
  .hero-stats {
    position: relative;
    margin-top: auto;
    display: flex;
    background: rgba(13,27,46,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(91,188,245,0.15);
    z-index: 3;
    width: 100%;
  }
  .stat-item {
    flex: 1;
    padding: 20px 32px;
    border-right: 1px solid rgba(91,188,245,0.1);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--sky-light);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
  }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 40px; }
  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
  }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-head .section-sub { margin: 0 auto; }

  /* ─── SERVICES TABS ─── */
  #services {
    background: linear-gradient(180deg, var(--navy) 0%, #0a1422 100%);
    position: relative;
  }
  #services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91,188,245,0.3), transparent);
  }

  .services-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(91,188,245,0.15);
  }

  .tab-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
  }
  .tab-btn:hover { color: var(--sky-light); }
  .tab-btn.active {
    color: var(--sky-light);
    border-bottom-color: var(--sky);
  }

  .tab-panel { display: none; }
  .tab-panel.active { display: flex; gap: 60px; align-items: center; animation: fadeSlideUp 0.4s ease both; }

  .tab-img {
    flex: 0 0 420px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(91,188,245,0.15);
  }
  .tab-img-inner {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
  }
  .tab-img .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,46,0.3), rgba(26,143,227,0.1));
  }

  /* service icon bg per tab */
  .tab-img.real-estate { background: linear-gradient(135deg, #0d2040, #1a4a8a); }
  .tab-img.events { background: linear-gradient(135deg, #0d2a1a, #1a5c38); }
  .tab-img.construction { background: linear-gradient(135deg, #251800, #5c3a00); }
  .tab-img.mapping { background: linear-gradient(135deg, #0d0d2e, #1a1a7a); }
  .tab-img.inspection { background: linear-gradient(135deg, #2e0d0d, #7a1a1a); }
  .tab-img.utility { background: linear-gradient(135deg, #1a1a00, #5a5a00); }
  .tab-img.marketing { background: linear-gradient(135deg, #1a0d2e, #4a1a7a); }
  .tab-img.security { background: linear-gradient(135deg, #0d2230, #16414c); }
  .tab-img.utility { background: linear-gradient(135deg, #1a1a0d, #4a4a00); }
  .tab-img.utility { background: linear-gradient(135deg, #1a1a00, #4a4a00); }

  .tab-left { flex: 0 0 420px; }
  .tab-content { flex: 1; }

  /* Walkthrough showcase box (Real Estate tab) — DJI Neo 2 interior tours */
  .walk-box {
    margin-top: 28px;
    max-width: 400px;
    border: 1px solid rgba(91,188,245,0.25);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    position: relative;
  }
  .walk-box video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
  .walk-box .walk-tag {
    position: absolute; top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(13,27,46,0.85);
    border: 1px solid rgba(92,191,42,0.5);
    color: var(--white);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 4px 9px; border-radius: 5px;
  }
  .walk-box .walk-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
  .walk-box .walk-cap {
    padding: 10px 14px 12px;
    font-size: 0.82rem; line-height: 1.5;
    color: var(--gray);
    border-top: 1px solid rgba(91,188,245,0.12);
  }
  .walk-box .walk-cap strong { color: var(--white); font-weight: 600; }
  .tab-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 12px;
  }
  .tab-content .tab-tagline {
    color: var(--sky-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .tab-content p {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
  }
  .feature-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--sky);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--sky);
  }

  /* ─── WHY US ─── */
  #why {
    background: #060d18;
    position: relative;
    overflow: hidden;
  }
  #why::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,143,227,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .why-card {
    background: var(--card-bg);
    border: 1px solid rgba(91,188,245,0.1);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }
  .why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26,143,227,0.4);
  }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .why-card:hover::before { opacity: 1; }

  .why-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
  }
  .why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
  }
  .why-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; }

  /* (standalone Overhead Security Watch card removed — it's now a service tab) */

  /* ─── GALLERY ─── */
  #gallery {
    background: var(--navy);
    overflow: hidden;
  }

  .gallery-scroll-outer { overflow: hidden; position: relative; }
  .gallery-scroll-outer::before,
  .gallery-scroll-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .gallery-scroll-outer::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
  .gallery-scroll-outer::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }

  .gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
  }
  .gallery-track:hover { animation-play-state: paused; }
  @keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .gallery-card {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(91,188,245,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }
  .gallery-card:hover { transform: scale(1.04); border-color: rgba(91,188,245,0.35); }
  .gallery-card .card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(13,27,46,0.95), transparent);
    padding: 20px 16px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
  }

  /* gallery card colors - now using real photos via inline styles */
  .gallery-card { background-size: cover !important; background-position: center !important; }

  /* ─── PRICING ─── */
  #pricing {
    background: #060d18;
    position: relative;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .price-card {
    background: var(--card-bg);
    border: 1px solid rgba(91,188,245,0.12);
    border-radius: 10px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .price-card.featured {
    border-color: var(--sky);
    background: linear-gradient(160deg, rgba(26,143,227,0.12), rgba(13,27,46,0.9));
    box-shadow: 0 0 40px rgba(26,143,227,0.15);
  }
  .price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 18px; right: -30px;
    background: var(--sky);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 5px 44px;
    transform: rotate(45deg);
  }

  /* Pricing toggle buttons */
  .pricing-toggle {
    background: rgba(13,27,46,0.8);
    border: 1px solid rgba(91,188,245,0.2);
    color: var(--gray);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .pricing-toggle:first-child { border-radius: 6px 0 0 6px; border-right: none; }
  .pricing-toggle:last-child  { border-radius: 0 6px 6px 0; }
  .pricing-toggle.active {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    border-color: var(--sky);
    color: #fff;
  }
  .pricing-toggle:hover:not(.active) { color: var(--sky-light); border-color: rgba(91,188,245,0.4); }

  .price-tier {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 12px;
  }
  .price-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 8px;
  }
  .price-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
  .price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sky-light);
    margin-bottom: 4px;
  }
  .price-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 28px; }
  .price-features { list-style: none; flex: 1; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
  .price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white);
  }
  .price-features li .check { color: var(--green); font-size: 0.85rem; }

  /* ─── FAQ ─── */
  #faq {
    background: var(--navy);
  }

  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(91,188,245,0.1);
    border-radius: 6px;
    overflow: hidden;
  }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: color 0.2s;
    user-select: none;
  }
  .faq-q:hover { color: var(--sky-light); }
  .faq-chevron {
    width: 22px; height: 22px;
    border: 2px solid rgba(91,188,245,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    color: var(--sky-light);
  }
  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--sky);
    border-color: var(--sky);
    color: #fff;
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 24px;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

  /* ─── CONTACT ─── */
  #contact {
    background: #060d18;
    position: relative;
    overflow: hidden;
  }
  #contact::before {
    content: '';
    position: absolute;
    bottom: -300px; left: -300px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(92,191,42,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .contact-info p { color: var(--gray); line-height: 1.75; margin-bottom: 40px; }

  .contact-cards { display: flex; flex-direction: column; gap: 16px; }
  .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(13,27,46,0.6);
    border: 1px solid rgba(91,188,245,0.12);
    border-radius: 8px;
    padding: 18px 22px;
    transition: border-color 0.2s;
  }
  .contact-card:hover { border-color: rgba(26,143,227,0.35); }
  .contact-card .cc-icon {
    font-size: 1.6rem;
    width: 44px;
    text-align: center;
    flex-shrink: 0;
  }
  .contact-card .cc-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 4px;
  }
  .contact-card .cc-val {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
  }
  .contact-card a.cc-val { transition: color 0.2s; }
  .contact-card a.cc-val:hover { color: var(--sky-light); }

  .social-links { display: flex; gap: 16px; margin-top: 16px; }
  .social-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(13,27,46,0.6);
    border: 1px solid rgba(91,188,245,0.12);
    border-radius: 8px;
    padding: 18px 22px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s;
    flex: 1;
  }
  .social-btn:hover { border-color: rgba(26,143,227,0.35); }
  .social-btn .cc-icon { font-size: 1.6rem; width: 44px; text-align: center; flex-shrink: 0; }
  .social-btn .cc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); margin-bottom: 4px; }
  .social-btn .cc-val { font-size: 0.95rem; color: var(--white); font-weight: 500; }

  /* Contact form */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(13,27,46,0.8);
    border: 1px solid rgba(91,188,245,0.2);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(143,168,194,0.5); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--sky); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--navy-mid); }

  /* ─── FOOTER ─── */
  footer {
    background: #040a14;
    border-top: 1px solid rgba(91,188,245,0.1);
    padding: 48px 40px 28px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
  }
  .footer-brand img { height: 56px; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(26,143,227,0.4)); }
  .footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

  .footer-links h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 18px;
  }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links li a:hover { color: var(--sky-light); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(91,188,245,0.08);
    color: rgba(143,168,194,0.5);
    font-size: 0.8rem;
  }
  .faa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,143,227,0.1);
    border: 1px solid rgba(26,143,227,0.25);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--sky-light);
  }

  /* ─── SCROLL ANIMATIONS ─── */
  /* Default: visible. JS adds animation progressively. */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.will-animate {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal.will-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }



  /* ─── MOBILE HAMBURGER ─── */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--gray); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--sky-light); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--sky-light); }

  /* ─── MEDIA QUERIES — TABLET ─── */
  @media (max-width: 1100px) {
    .nav-links { gap: 20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 460px; margin: 0 auto; width: 100%; }
    .footer-top { grid-template-columns: 2fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* ─── MEDIA QUERIES — MOBILE ─── */
  @media (max-width: 768px) {
    /* NAV */
    nav { padding: 10px 20px; }
    .nav-logo img { height: 40px; }
    .nav-logo span { font-size: 1.15rem; }
    .nav-logo small { font-size: 0.52rem; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: rgba(6,14,28,0.98);
      backdrop-filter: blur(20px);
      padding: 24px 24px 28px;
      gap: 0;
      border-bottom: 1px solid rgba(91,188,245,0.18);
    }
    .nav-links.open li { border-bottom: 1px solid rgba(91,188,245,0.07); }
    .nav-links.open a { display: block; padding: 13px 0; font-size: 1rem; color: var(--white); }
    .nav-links.open .nav-cta {
      margin-top: 12px;
      display: block;
      text-align: center;
      padding: 13px;
      border-radius: 6px;
    }
    .hamburger { display: flex; }

    /* LOGO BANNER */
    .logo-banner { padding: 30px 20px 16px; }
    .logo-banner img { width: clamp(130px, 40vw, 190px); }

    /* HERO */
    #hero { padding-top: 64px; }
    .hero-reel { display: none; }
    .hero-content {
      padding: 16px 24px 32px 24px;
      max-width: 100%;
      text-align: center;
    }
    .hero-badge { margin: 0 auto 24px; font-size: 0.65rem; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .hero-sub { font-size: 0.95rem; margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .btn-primary, .btn-outline { padding: 13px 26px; font-size: 0.92rem; }

    /* HERO STATS */
    .hero-stats { flex-wrap: wrap; }
    .stat-item { flex: 0 0 50%; padding: 16px 12px; }
    .stat-num { font-size: 1.7rem; }
    .stat-label { font-size: 0.65rem; }

    /* SECTIONS */
    section { padding: 60px 20px; }
    .section-title { font-size: clamp(2rem, 8vw, 3rem); }
    .section-sub { font-size: 0.95rem; }
    .section-head { margin-bottom: 40px; }

    /* SERVICES TABS */
    .services-tabs {
      gap: 0;
      overflow-x: auto;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 2px;
      flex-wrap: nowrap;
    }
    .services-tabs::-webkit-scrollbar { display: none; }
    .tab-btn { font-size: 0.78rem; padding: 12px 16px; white-space: nowrap; }
    .tab-panel.active {
      flex-direction: column;
      gap: 28px;
    }
    .tab-img { flex: none; width: 100%; height: 200px; }
    .tab-left { flex: none; width: 100%; }
    .tab-content h3 { font-size: 1.8rem; }
    .tab-content p { font-size: 0.92rem; }

    /* WHY GRID */
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 28px 22px; }

    /* PRICING */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid .price-card:last-child { grid-column: auto; max-width: 100%; }
    .price-card { padding: 32px 24px; }
    .price-card.featured::before { font-size: 0.55rem; }

    /* FAQ */
    .faq-q { font-size: 0.92rem; padding: 16px 18px; }
    .faq-a { padding: 0 18px; font-size: 0.9rem; }
    .faq-item.open .faq-a { padding: 0 18px 16px; }

    /* CONTACT */
    #contact { padding: 60px 20px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-info h3 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .social-links { flex-wrap: wrap; }

    /* FOOTER */
    footer { padding: 40px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 0.75rem; }
    .footer-brand img { height: 48px; }
  }

  /* ─── EXTRA SMALL ─── */
  @media (max-width: 380px) {
    .hero-title { font-size: 2.5rem; }
    .stat-item { flex: 0 0 100%; }
    .tab-btn { font-size: 0.72rem; padding: 10px 12px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
  }

/* ─────────── SUBPAGES (locations + blog) ─────────── */
.subhero { position: relative; padding: 132px 24px 60px; text-align: center; background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(26,143,227,0.16) 0%, transparent 70%), linear-gradient(170deg,#070f1c,#0d1b2e 55%,#081525); border-bottom: 1px solid rgba(91,188,245,0.12); overflow: hidden; }
.subhero::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(26,143,227,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(26,143,227,0.04) 1px,transparent 1px); background-size:60px 60px; pointer-events:none; }
.subhero .wrap { position:relative; max-width: 840px; margin:0 auto; }
.subhero .eyebrow { font-size:0.72rem; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:var(--sky); margin-bottom:14px; }
.subhero h1 { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.6rem,6vw,4.6rem); line-height:0.98; letter-spacing:0.02em; color:var(--white); margin-bottom:18px; }
.subhero h1 .accent { color:var(--sky-light); }
.subhero p.lead { color:var(--gray); font-size:1.1rem; line-height:1.7; max-width:640px; margin:0 auto 26px; }
.crumbs { position:relative; font-size:0.8rem; color:var(--gray); margin-bottom:16px; letter-spacing:0.04em; }
.crumbs a { color:var(--sky-light); text-decoration:none; }
.section-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.prose { color:#c4d3e6; font-size:1.06rem; line-height:1.8; }
.prose h2 { font-family:'Bebas Neue',sans-serif; font-size:2.1rem; letter-spacing:0.03em; color:var(--white); margin:40px 0 14px; }
.prose h3 { font-family:'Barlow Condensed',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; font-size:1.3rem; color:var(--sky-light); margin:30px 0 10px; }
.prose p { margin-bottom:16px; }
.prose ul { margin:0 0 18px; list-style:none; padding:0; }
.prose ul li { position:relative; padding-left:26px; margin-bottom:9px; }
.prose ul li::before { content:''; position:absolute; left:0; top:10px; width:8px; height:8px; border-radius:50%; background:var(--sky); }
.prose a { color:var(--sky-light); }
.loc-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:14px; margin:24px 0; }
.loc-card { display:block; padding:18px 20px; background:var(--card-bg); border:1px solid rgba(91,188,245,0.12); border-radius:8px; text-decoration:none; transition:transform .25s,border-color .25s; }
.loc-card:hover { transform:translateY(-4px); border-color:rgba(26,143,227,0.4); }
.loc-card .ln { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:1.15rem; letter-spacing:0.04em; text-transform:uppercase; color:var(--white); }
.loc-card .lc { font-size:0.8rem; color:var(--gray); margin-top:3px; }
.region-block { margin:28px 0; }
.region-block h3 { font-family:'Barlow Condensed',sans-serif; text-transform:uppercase; letter-spacing:0.06em; color:var(--sky-light); font-size:1.25rem; margin-bottom:8px; border-bottom:1px solid rgba(91,188,245,0.12); padding-bottom:8px; }
.town-list { display:flex; flex-wrap:wrap; gap:7px 16px; }
.town-list a, .town-list span { color:#aebfd4; text-decoration:none; font-size:0.95rem; }
.town-list a:hover { color:var(--sky-light); }
.cta-band { text-align:center; padding:56px 24px; background:#060d18; border-top:1px solid rgba(91,188,245,0.1); }
.cta-band h2 { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; color:var(--white); margin-bottom:14px; }
.cta-band p { color:var(--gray); margin-bottom:24px; max-width:560px; margin-left:auto; margin-right:auto; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
.blog-card { display:flex; flex-direction:column; background:var(--card-bg); border:1px solid rgba(91,188,245,0.12); border-radius:10px; overflow:hidden; text-decoration:none; transition:transform .25s,border-color .25s; }
.blog-card:hover { transform:translateY(-5px); border-color:rgba(26,143,227,0.4); }
.blog-card .bimg { aspect-ratio:16/9; background-size:cover; background-position:center; background-color:#0a1626; }
.blog-card .bbody { padding:18px 20px; }
.blog-card .btag { font-size:0.7rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--sky); }
.blog-card h3 { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:1.3rem; color:var(--white); margin:8px 0 6px; line-height:1.2; }
.blog-card p { font-size:0.92rem; color:var(--gray); line-height:1.6; }
.post-meta { color:var(--gray); font-size:0.85rem; margin-bottom:6px; letter-spacing:0.03em; }
.post-hero-img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:12px; margin:10px 0 26px; border:1px solid rgba(91,188,245,0.12); }
.pill { display:inline-block; background:rgba(26,143,227,0.12); border:1px solid rgba(26,143,227,0.3); color:var(--sky-light); font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; padding:5px 13px; border-radius:2px; margin-bottom:16px; }
@media(max-width:768px){ .subhero{padding:104px 18px 46px;} .section-wrap{padding:46px 18px;} .cta-band h2{font-size:2rem;} }
