:root {
      --navy: #0b2440;
      --navy-light: #17395e;
      --gold: #c69a4e;
      --teal: #1c8c97;
      --sand: #f6f8f9;
      --text: #1f2937;
      --text-light: #6b7280;
      --white: #ffffff;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
      --radius: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }

    a { text-decoration: none; color: inherit; transition: var(--transition); }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    nav.scrolled {
      box-shadow: var(--shadow);
      background: rgba(255, 255, 255, 0.95);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 56px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-weight: 500;
      font-size: 0.9375rem;
      color: var(--text-light);
      position: relative;
    }

    .nav-links a:hover { color: var(--navy); }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }

    .nav-links a:hover::after { width: 100%; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.75rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9375rem;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      gap: 0.5rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), #dbb877);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(198,154,78, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(198,154,78, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
    }

    .btn-outline:hover {
      background: var(--navy);
      color: var(--white);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    /* Hero */
    .hero {
      padding: 10rem 0 6rem;
      background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(28,140,151,0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(78, 205, 196, 0.1);
      color: var(--navy-light);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(78, 205, 196, 0.2);
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    h1 .highlight {
      background: linear-gradient(135deg, var(--gold), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p.lead {
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      max-width: 540px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .trust-bar {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .trust-icon {
      width: 32px;
      height: 32px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
      color: var(--teal);
    }

    .trust-icon svg {
      width: 16px;
      height: 16px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-mockup {
      position: relative;
      width: 100%;
      max-width: 460px;
    }

    .mockup-browser {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
      z-index: 2;
    }

    .mockup-bar {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.9rem 1.1rem;
      background: var(--sand);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mockup-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(11,36,64,0.15);
    }

    .mockup-url {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-left: 0.75rem;
      background: var(--white);
      border-radius: 100px;
      padding: 0.4rem 0.9rem;
      font-size: 0.8125rem;
      color: var(--text-light);
      flex: 1;
    }

    .mockup-url svg { width: 14px; height: 14px; flex-shrink: 0; }

    .mockup-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mockup-result {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 0.9rem;
      border-radius: 10px;
    }

    .mockup-result--featured {
      background: rgba(28,140,151,0.08);
      border: 1px solid rgba(28,140,151,0.25);
    }

    .mockup-rank {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--teal);
      color: var(--white);
      font-weight: 700;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mockup-rank--muted {
      background: rgba(11,36,64,0.08);
      color: var(--text-light);
    }

    .mockup-result-info { flex: 1; min-width: 0; }

    .mockup-result-info strong {
      display: block;
      font-size: 0.9375rem;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }

    .mockup-stars {
      font-size: 0.8125rem;
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .mockup-stars span {
      color: var(--text-light);
      letter-spacing: normal;
      margin-left: 0.25rem;
    }

    .mockup-muted { color: var(--text-light) !important; opacity: 0.75; }

    .mockup-badge {
      background: var(--teal);
      color: var(--white);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.3rem 0.6rem;
      border-radius: 100px;
      flex-shrink: 0;
    }

    .floating-badge {
      position: absolute;
      z-index: 3;
      background: var(--white);
      border-radius: 10px;
      box-shadow: var(--shadow-lg);
      padding: 0.85rem 1.1rem;
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .badge-value {
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--navy);
    }

    .badge-label {
      font-size: 0.75rem;
      color: var(--text-light);
      font-weight: 600;
      white-space: nowrap;
    }

    .badge-top {
      top: -1.25rem;
      right: -1.25rem;
      border-top: 3px solid var(--gold);
    }

    .badge-bottom {
      bottom: -1.25rem;
      left: -1.25rem;
      border-top: 3px solid var(--teal);
    }

    /* Sections */
    section { padding: 6rem 0; }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
    }

    .eyebrow {
      display: inline-block;
      color: var(--gold);
      font-weight: 700;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }

    h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .section-header p {
      font-size: 1.125rem;
      color: var(--text-light);
    }

    /* Services */
    .services { background: var(--white); }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: var(--sand);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(0,0,0,0.05);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow);
      color: var(--navy);
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
    }

    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--text-light);
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    /* Locations */
    .locations {
      background: var(--navy);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .locations::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    .locations h2 { color: var(--white); }

    .locations .section-header p { color: rgba(255,255,255,0.7); }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .location-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: var(--transition);
    }

    .location-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .location-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .location-icon {
      width: 32px;
      height: 32px;
      color: var(--teal);
      flex-shrink: 0;
    }

    .location-card p {
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .location-meta {
      display: flex;
      gap: 1rem;
      font-size: 0.875rem;
      color: var(--teal);
      font-weight: 600;
    }

    /* Process */
    .process { background: var(--sand); }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-top: 3rem;
    }

    .step::before {
      counter-increment: step;
      content: '0' counter(step);
      position: absolute;
      top: 0;
      left: 0;
      font-size: 4rem;
      font-weight: 800;
      color: var(--navy);
      opacity: 0.08;
      line-height: 1;
    }

    .step h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .step p {
      font-size: 0.9375rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Difference Section (replacing testimonials) */
    .difference { background: var(--white); }

    .difference-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .difference-card {
      background: var(--sand);
      border-radius: var(--radius);
      padding: 2.5rem;
      border: 1px solid rgba(0,0,0,0.03);
      transition: var(--transition);
    }

    .difference-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .difference-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .difference-card p {
      color: var(--text-light);
      line-height: 1.7;
      font-size: 0.9375rem;
    }

    /* Detailed page content */
    .detail-section { background: var(--sand); }
    .detail-section-white { background: var(--white); }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .detail-card {
      background: var(--white);
      border: 1px solid rgba(11, 36, 64, 0.08);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.75rem;
    }

    .detail-section-white .detail-card { background: var(--sand); }

    .detail-card h3 {
      color: var(--navy);
      font-size: 1.125rem;
      margin-bottom: 0.65rem;
    }

    .detail-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .detail-list {
      list-style: none;
      margin-top: 1.1rem;
    }

    .detail-list li {
      color: var(--text-light);
      font-size: 0.925rem;
      line-height: 1.6;
      padding-left: 1.45rem;
      position: relative;
    }

    .detail-list li + li { margin-top: 0.65rem; }

    .detail-list li::before {
      color: var(--teal);
      content: '✓';
      font-weight: 800;
      left: 0;
      position: absolute;
    }

    .faq-list {
      display: grid;
      gap: 0.9rem;
      margin: 0 auto;
      max-width: 820px;
    }

    .faq-list details {
      background: var(--white);
      border: 1px solid rgba(11, 36, 64, 0.1);
      border-radius: 10px;
      padding: 1.1rem 1.25rem;
    }

    .faq-list summary {
      color: var(--navy);
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      padding-right: 1.5rem;
      position: relative;
    }

    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { content: '+'; position: absolute; right: 0; color: var(--teal); }
    .faq-list details[open] summary::after { content: '–'; }

    .faq-list p {
      color: var(--text-light);
      line-height: 1.7;
      margin-top: 0.85rem;
    }

    .diff-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--gold), var(--teal));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.125rem;
      flex-shrink: 0;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(28,140,151,0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta h2 {
      color: var(--white);
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .cta p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.8);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .cta .btn-primary {
      background: var(--white);
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .cta .btn-primary:hover {
      background: var(--sand);
      transform: translateY(-2px);
    }

    .cta .btn-outline {
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }

    .cta .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    /* Footer */
    footer {
      background: #080f1e;
      color: rgba(255,255,255,0.6);
      padding: 4rem 0 2rem;
      font-size: 0.9375rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand .logo {
      margin-bottom: 1.25rem;
      display: inline-flex;
    }

    .footer-logo {
      background: var(--white);
      padding: 0.75rem 1.25rem;
      border-radius: 8px;
    }

    .footer-logo .logo-img { height: 34px; }

    .footer-brand p {
      line-height: 1.7;
      max-width: 320px;
    }

    .footer-links h4 {
      color: var(--white);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a:hover {
      color: var(--teal);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .socials {
      display: flex;
      gap: 1rem;
    }

    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-weight: 600;
      font-size: 0.875rem;
    }

    .socials a:hover {
      background: var(--gold);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobile */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
      h1 { font-size: 2.75rem; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 768px) {
      html { scroll-padding-top: 80px; }
      .nav-inner { height: 72px; }
      .logo-img { height: 40px; }

      .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid var(--sand);
      }

      .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }

      .mobile-toggle { display: block; }

      h1 { font-size: 2.25rem; }
      h2 { font-size: 1.875rem; }
      .hero { padding: 8rem 0 4rem; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta h2 { font-size: 2rem; }
      section { padding: 4rem 0; }
      .detail-card { padding: 1.35rem; }
      .hero-mockup { max-width: 100%; }
      .badge-top { top: -0.75rem; right: -0.5rem; padding: 0.6rem 0.8rem; }
      .badge-bottom { bottom: -0.75rem; left: -0.5rem; padding: 0.6rem 0.8rem; }
      .badge-value { font-size: 1.125rem; }
    }

/* Page header (sub-pages) */
.page-header {
  padding: 9.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
  text-align: center;
}

.page-header .eyebrow { display: block; }

.page-header h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--teal); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .page-header { padding: 7.5rem 0 2.5rem; }
  .page-header h1 { font-size: 2rem; }
}

/* Contact page details */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: -2rem;
}

.contact-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow);
  color: var(--navy);
}

.contact-card .contact-icon svg { width: 26px; height: 26px; }

/* Contact form */
.form-field-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form-section {
  padding: 0 0 6rem;
  background: var(--white);
}

.contact-form-section .container {
  max-width: 820px;
}

.contact-form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-intro h2 {
  margin: 0.5rem 0 0.75rem;
}

.contact-form-intro p {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.contact-form {
  background: var(--sand);
  border: 1px solid rgba(11, 36, 64, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(11, 36, 64, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 140, 151, 0.16);
  outline: none;
}

.website-url-input {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(11, 36, 64, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.website-url-input:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 140, 151, 0.16);
}

.website-url-prefix {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.8rem 0 0.8rem 0.9rem;
  color: var(--text-light);
  background: rgba(11, 36, 64, 0.04);
  border-right: 1px solid rgba(11, 36, 64, 0.12);
}

.website-url-input input {
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.website-url-input input:focus {
  box-shadow: none;
}

.form-field-help {
  color: var(--text-light);
  font-size: 0.8rem;
}

.form-notice {
  border-radius: 8px;
  font-weight: 600;
  margin: 0 auto 1.25rem;
  max-width: 820px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.form-notice-success {
  background: #ecfdf5;
  border: 1px solid #86efac;
  color: #166534;
}

.form-notice-error {
  background: #fff1f2;
  border: 1px solid #fda4af;
  color: #9f1239;
}

@media (max-width: 768px) {
  .contact-form-section { padding-bottom: 4rem; }
  .contact-form { padding: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card a, .contact-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.contact-card a:hover { color: var(--teal); }

/* Thank-you page */
.thank-you-section {
  padding: 5.5rem 0;
  background: var(--sand);
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(11, 36, 64, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.thank-you-mark {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  background: var(--teal);
  border-radius: 50%;
}

.thank-you-card h2 {
  max-width: 580px;
  margin: 0.7rem auto 1rem;
  color: var(--navy);
}

.thank-you-card p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--text-light);
}

.thank-you-card p a {
  color: var(--teal);
  font-weight: 700;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .thank-you-section { padding: 3.5rem 0; }
  .thank-you-card { padding: 2.25rem 1.25rem; }
  .thank-you-actions { flex-direction: column; }
  .thank-you-actions .btn { width: 100%; }
}
