/*
Theme Name: Signal Street Insurance
Author: Codex
Description: Converted from a static HTML file.
Version: 1.0
Text Domain: signal-street
*/

:root {
    --aqua: #81CFD3;
    --teal: #008B8B;
    --navy: #0D1A29;
    --lime: #CADD6E;
    --silver: #DDE0E3;
    --navy-light: #142236;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* -- NAVBAR -- */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 26, 41, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(129, 207, 211, 0.08);
    transition: all 0.4s ease;
  }

  .navbar.scrolled {
    padding: 0.8rem 4%;
    background: rgba(13, 26, 41, 0.97);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
  }

  .nav-logo img {
    height: 62px;
    width: auto;
    display: block;
    mix-blend-mode: lighten;
    margin-left: 1.5rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
  }

  .nav-links a:hover { color: var(--aqua); }

  /* Nav dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
  .nav-dropdown-toggle svg { transition: transform 0.3s ease; }
  .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute; top: 100%; left: -1rem; margin-top: 0.8rem;
    background: rgba(13, 26, 41, 0.97); border: 1px solid rgba(129,207,211,0.12);
    border-radius: 12px; padding: 0.5rem 0; min-width: 200px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.3s ease; list-style: none; backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav-dropdown-menu li a {
    display: block; padding: 0.6rem 1.2rem; font-size: 0.82rem;
    color: rgba(255,255,255,0.6); transition: all 0.2s ease;
  }
  .nav-dropdown-menu li a:hover {
    color: var(--aqua); background: rgba(129,207,211,0.06);
  }

  /* Nav phone icon */
  .nav-phone {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15) !important;
    transition: all 0.3s ease !important;
  }
  .nav-phone:hover {
    border-color: var(--aqua) !important; background: rgba(129,207,211,0.08);
    color: var(--aqua) !important;
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--aqua), var(--teal));
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(129, 207, 211, 0.3);
    color: var(--navy) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* -- HERO -- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
  }

  .hero-bg { position: absolute; inset: 0; overflow: hidden; }

  .hero-bg::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 70vw; height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129,207,211,0.08) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 50vw; height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,221,110,0.06) 0%, transparent 70%);
    animation: pulse-glow 10s ease-in-out infinite reverse;
  }

  @keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(129,207,211,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(129,207,211,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: 8rem 4% 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-text { animation: fade-up 1s ease 0.2s both; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(129,207,211,0.1);
    border: 1px solid rgba(129,207,211,0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--aqua);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--aqua) 0%, var(--lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 1.1rem; line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 520px; margin-bottom: 2.5rem;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--aqua), var(--teal));
    color: var(--navy); font-weight: 700; font-size: 0.95rem;
    border-radius: 60px; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(129,207,211,0.35);
  }

  .btn-primary svg { transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; background: transparent;
    color: var(--white); font-weight: 600; font-size: 0.95rem;
    border-radius: 60px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease; cursor: pointer;
  }

  .btn-outline:hover {
    border-color: var(--aqua); color: var(--aqua);
    background: rgba(129,207,211,0.05);
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: fade-up 1s ease 0.5s both;
  }

  .hero-visual-inner { position: relative; width: 100%; max-width: 480px; }

  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(129,207,211,0.12);
    border-radius: 24px; padding: 2.5rem;
    backdrop-filter: blur(20px);
  }

  .hero-card-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--aqua), var(--teal));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .hero-card-icon svg { width: 24px; height: 24px; }

  .hero-card-title {
    font-family: 'Outfit', sans-serif; font-weight: 600;
    color: var(--white); font-size: 1.05rem;
  }

  .hero-card-sub { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 2px; }

  .hero-form-group {
    margin-bottom: 1rem;
  }

  .hero-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }

  .hero-form-group label {
    display: block; font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.5); margin-bottom: 0.4rem;
    letter-spacing: 0.03em; text-transform: uppercase;
  }
  .hero-form-group label .required-asterisk {
    color: #ff4d4d; margin-left: 2px;
  }

  .hero-form-group input,
  .hero-form-group select,
  .hero-form-group textarea {
    width: 100%; padding: 0.7rem 1rem; border-radius: 12px;
    border: 1px solid rgba(129,207,211,0.15);
    background: rgba(255,255,255,0.04);
    color: var(--white); font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none; box-sizing: border-box;
  }

  .hero-form-group input::placeholder,
  .hero-form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
  }

  .hero-form-group input:focus,
  .hero-form-group select:focus,
  .hero-form-group textarea:focus {
    border-color: var(--aqua);
    background: rgba(129,207,211,0.06);
  }

  .hero-form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  .hero-form-group select option {
    background: var(--navy); color: var(--white);
  }

  .hero-form-group textarea {
    resize: none; min-height: 70px;
  }

  .hero-form-submit {
    width: 100%; padding: 0.85rem; border: none; border-radius: 14px;
    background: linear-gradient(135deg, var(--aqua), var(--teal));
    color: var(--navy); font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }

  .hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(129,207,211,0.3);
  }

  .float-badge {
    position: absolute;
    background: rgba(13, 26, 41, 0.92);
    border: 1px solid rgba(129,207,211,0.15);
    border-radius: 16px; padding: 0.8rem 1.2rem;
    display: flex; align-items: center; gap: 0.6rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
  }

  .float-badge-1 { top: -10px; right: -20px; }
  .float-badge-2 { bottom: -20px; left: -30px; animation-delay: 2s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
  .float-dot.aqua { background: var(--aqua); }

  .float-text { font-size: 0.75rem; font-weight: 600; color: var(--white); }
  .float-text small { display: block; font-weight: 400; color: rgba(255,255,255,0.4); font-size: 0.65rem; margin-top: 1px; }

  /* -- MARQUEE -- */
  .verticals-bar {
    background: var(--white); padding: 3rem 0;
    border-bottom: 1px solid rgba(13,26,41,0.06); overflow: hidden;
  }

  .verticals-label {
    text-align: center; font-size: 0.75rem; font-weight: 600;
    color: rgba(13,26,41,0.35); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 1.5rem; padding: 0 4%;
  }

  .verticals-track {
    display: flex; gap: 2rem;
    animation: scroll-left 30s linear infinite; width: max-content;
  }

  .verticals-track:hover { animation-play-state: paused; }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .vertical-chip {
    display: flex; align-items: center;
    padding: 0.65rem 1.5rem; white-space: nowrap;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem; font-weight: 400; color: #c0c4c8;
    letter-spacing: 0.03em;
    flex-shrink: 0;
  }

  /* -- VERTICALS -- */
  .verticals { padding: 7rem 4%; background: linear-gradient(180deg, #f8fafb 0%, var(--white) 100%); }
  .verticals-inner { max-width: 1280px; margin: 0 auto; }

  .section-label {
    font-size: 0.75rem; font-weight: 700; color: var(--teal);
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--navy); margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(13,26,41,0.55); max-width: 560px; margin-bottom: 3.5rem;
  }

  .verticals-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .vertical-card {
    background: var(--navy); border-radius: 20px;
    padding: 2.2rem; position: relative;
    overflow: hidden; transition: transform 0.4s ease;
  }

  .vertical-card:hover { transform: translateY(-4px); }

  .vertical-card::before {
    content: '';
    position: absolute; top: -40%; right: -30%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(129,207,211,0.08), transparent 70%);
  }

  .vertical-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
  }

  .vertical-card-icon.aqua { background: rgba(129,207,211,0.15); }
  .vertical-card-icon.lime { background: rgba(202,221,110,0.12); }
  .vertical-card-icon.teal { background: rgba(0,139,139,0.15); }

  .vertical-card-icon svg { width: 22px; height: 22px; }

  .vertical-card h3 {
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 1.15rem; color: var(--white); margin-bottom: 0.6rem;
  }

  .vertical-card p {
    font-size: 0.88rem; line-height: 1.65;
    color: rgba(255,255,255,0.45); position: relative;
  }

  /* -- SERVICES -- */
  .services { padding: 7rem 4%; background: var(--white); }
  .services-inner { max-width: 1280px; margin: 0 auto; }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border: 1px solid rgba(13,26,41,0.07);
    border-radius: 20px; padding: 2.2rem;
    transition: all 0.4s ease; position: relative; overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--aqua), var(--teal));
    opacity: 0; transition: opacity 0.3s ease;
  }

  .service-card:hover {
    border-color: rgba(129,207,211,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(13,26,41,0.08);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
  }

  .service-icon.aqua-bg { background: rgba(129,207,211,0.12); }
  .service-icon.lime-bg { background: rgba(202,221,110,0.15); }
  .service-icon.teal-bg { background: rgba(0,139,139,0.1); }

  .service-icon svg { width: 24px; height: 24px; }

  .service-card h3 {
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem;
  }

  .service-card p { font-size: 0.9rem; line-height: 1.65; color: rgba(13,26,41,0.5); }

  /* -- BUILT FOR YOU + TRUSTED PARTNER (COMBINED) -- */
  .built-trusted-combo { padding: 7rem 4%; background: var(--navy); }
  .built-trusted-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  }

  /* Left column -- Built for You */
  .bfy-col h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--white); margin-bottom: 0.8rem;
  }

  .bfy-col > p {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; max-width: 560px;
  }

  .bfy-grid {
    display: flex; flex-direction: column; gap: 1.2rem;
  }

  .bfy-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(129,207,211,0.1);
    border-radius: 20px; padding: 1.8rem 2rem;
    transition: all 0.4s ease; position: relative; overflow: hidden;
    display: flex; gap: 1.5rem; align-items: flex-start;
  }

  .bfy-card:hover {
    border-color: rgba(129,207,211,0.2);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
  }

  .bfy-card-number {
    font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800;
    color: var(--aqua); line-height: 1; flex-shrink: 0;
    opacity: 0.7;
  }

  .bfy-card h3 {
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 1.05rem; color: var(--white); margin-bottom: 0.4rem;
  }

  .bfy-card p {
    font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.45);
  }

  /* Right column -- Trusted Partner */
  .tp-col {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
  }

  .tp-col .section-label {
    color: var(--teal);
  }

  .tp-col h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--navy); margin-bottom: 1.2rem;
  }

  .tp-col > p {
    font-size: 1rem; line-height: 1.7;
    color: rgba(13,26,41,0.55); margin-bottom: 2.5rem; max-width: 520px;
  }

  .tp-features { display: flex; flex-direction: column; gap: 1.8rem; }
  .tp-feature { display: flex; gap: 1rem; align-items: flex-start; }

  .tp-feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(129,207,211,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .tp-feature-icon svg { width: 20px; height: 20px; }

  .tp-feature h4 {
    font-family: 'Outfit', sans-serif; font-weight: 600;
    font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem;
  }

  .tp-feature p { font-size: 0.88rem; line-height: 1.6; color: rgba(13,26,41,0.5); }

  /* -- ABOUT US -- */
  .about-us {
    padding: 7rem 4%;
    background: linear-gradient(180deg, #f8fafb 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
  }

  .about-us::before {
    content: '';
    position: absolute;
    top: -20%; right: -15%;
    width: 40vw; height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129,207,211,0.06) 0%, transparent 70%);
  }

  .about-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .about-text-col p {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(13,26,41,0.6); margin-bottom: 1.5rem;
  }

  .about-text-col p:last-child { margin-bottom: 0; }

  .about-highlights {
    display: flex; flex-direction: column; gap: 1.5rem;
  }

  .about-highlight {
    background: var(--white);
    border: 1px solid rgba(13,26,41,0.07);
    border-radius: 20px;
    padding: 1.8rem 2rem;
    display: flex; gap: 1.2rem; align-items: flex-start;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
  }

  .about-highlight::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--aqua), var(--teal));
    opacity: 0; transition: opacity 0.3s ease;
  }

  .about-highlight:hover {
    border-color: rgba(129,207,211,0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(13,26,41,0.08);
  }

  .about-highlight:hover::before { opacity: 1; }

  .about-highlight-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .about-highlight-icon.aqua { background: rgba(129,207,211,0.12); }
  .about-highlight-icon.lime { background: rgba(202,221,110,0.15); }
  .about-highlight-icon.teal { background: rgba(0,139,139,0.1); }

  .about-highlight-icon svg { width: 20px; height: 20px; }

  .about-highlight h4 {
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem;
  }

  .about-highlight p {
    font-size: 0.88rem; line-height: 1.6;
    color: rgba(13,26,41,0.5); margin-bottom: 0;
  }

  .about-states {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .state-pill {
    display: inline-flex; align-items: center;
    padding: 0.35rem 0.9rem;
    background: rgba(129,207,211,0.08);
    border: 1px solid rgba(129,207,211,0.15);
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.02em;
  }

  @media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  /* -- CTA -- */
  .cta {
    padding: 7rem 4%; background: var(--navy);
    position: relative; overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute; top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 80vw; height: 80vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(129,207,211,0.06), transparent 60%);
  }

  .cta-inner {
    position: relative; max-width: 720px;
    margin: 0 auto; text-align: center;
  }

  .cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.2rem;
  }

  .cta h2 .gradient-text {
    background: linear-gradient(135deg, var(--aqua), var(--lime));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta p {
    font-size: 1.1rem; line-height: 1.7;
    color: rgba(255,255,255,0.5); margin-bottom: 2.5rem;
    max-width: 520px; margin-left: auto; margin-right: auto;
  }

  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* -- FOOTER -- */
  .footer {
    background: var(--navy);
    border-top: 1px solid rgba(129,207,211,0.08);
    padding: 4rem 4% 2rem;
  }

  .footer-inner { max-width: 1280px; margin: 0 auto; }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem;
  }

  .footer-brand-desc {
    font-size: 0.88rem; line-height: 1.7;
    color: rgba(255,255,255,0.4); margin-top: 1rem; max-width: 300px;
  }

  .footer-col h4 {
    font-family: 'Outfit', sans-serif; font-weight: 600;
    color: var(--white); font-size: 0.9rem; margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

  .footer-col a {
    text-decoration: none; color: rgba(255,255,255,0.4);
    font-size: 0.85rem; transition: color 0.3s ease;
  }

  .footer-col a:hover { color: var(--aqua); }

  .footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
  }

  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

  .footer-social { display: flex; gap: 1rem; }

  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); transition: all 0.3s ease; text-decoration: none;
  }

  .footer-social a:hover {
    border-color: var(--aqua); color: var(--aqua);
    background: rgba(129,207,211,0.08);
  }

  /* -- RESPONSIVE -- */
  @media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; }
    .hero-visual-inner { max-width: 400px; margin: 0 auto; }
    .services-grid, .verticals-grid { grid-template-columns: 1fr 1fr; }
    .built-trusted-inner { grid-template-columns: 1fr; gap: 3rem; }
    .why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .float-badge-1 { right: 0; }
    .float-badge-2 { left: 0; }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.2rem 1.5rem 1.5rem; gap: 0; list-style: none; z-index: 999; }
    .nav-links.active { display: flex; }
    .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-links > li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 0.75rem 0; font-size: 1rem; color: rgba(255,255,255,0.85); }
    .nav-links .nav-phone { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; margin: 0.5rem 0; }
    .nav-links .nav-cta { display: inline-block; padding: 0.65rem 1.8rem; margin: 0.75rem 0; }
    .hamburger { display: flex; }
    .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; margin-top: 0; background: transparent; border: none; box-shadow: none; padding-left: 1rem; }
    .services-grid, .verticals-grid { grid-template-columns: 1fr; }
    .bfy-card { flex-direction: column; gap: 0.8rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; justify-content: center; }
    .hero-card { padding: 1.8rem; }
    .hero-form-row { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
  }
