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

    :root {
      --teal:        #00838F;
      --teal-dark:   #006670;
      --teal-light:  #E0F4F6;
      --teal-mid:    #B2E4E8;
      --white:       #FFFFFF;
      --gray-soft:   #F5FAFB;
      --gray-text:   #4A5568;
      --gray-border: #D1E8EA;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      background: var(--white);
      color: var(--gray-text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ── CONTENT CONTAINER ── */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ── TOP BANNER ── */
    .top-banner {
      background: var(--teal-dark);
      color: var(--white);
      text-align: center;
      padding: 10px 24px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    /* ── HEADER + NAV ── */
    header {
      background: var(--white);
      border-bottom: 1px solid var(--gray-border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 88px;
    }

    .header-logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      padding: 10px 0;
    }

    .logo-area { display: contents; }
    .logo-main  { display: contents; }

    nav {
      display: flex;
      align-items: center;
      gap: 0;
    }

    nav a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: #2D3748;
      text-decoration: none;
      padding: 12px 24px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.82rem;
      border-bottom: 3px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--teal);
      border-bottom-color: var(--teal);
    }

    nav a.active {
      color: var(--teal);
      border-bottom-color: var(--teal);
    }

    .powered-by {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      color: #8AABB0;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .powered-by span { color: var(--teal); font-weight: 600; }

    /* Prominent phone pill in header */
    .header-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 2px 10px rgba(0,131,143,0.20);
      flex-shrink: 0;
    }

    .header-phone:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 5px 16px rgba(0,131,143,0.30);
    }

    .header-phone svg {
      width: 16px; height: 16px;
      fill: none; stroke: #fff;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, var(--gray-soft) 0%, var(--teal-light) 100%);
      padding: 80px 0 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,131,143,0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -60px;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,131,143,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .deadline-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--white);
      border: 1px solid var(--teal-mid);
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
      letter-spacing: 0.03em;
    }

    .deadline-badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--teal);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(1.4); }
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--teal-dark);
      line-height: 1.2;
      max-width: 720px;
      margin: 0 auto 24px;
      letter-spacing: -0.02em;
    }

    .hero p {
      font-size: 1rem;
      color: var(--gray-text);
      max-width: 660px;
      margin: 0 auto 40px;
      font-weight: 400;
    }

    .cta-btn {
      display: inline-block;
      background: var(--teal);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      padding: 14px 34px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(0,131,143,0.25);
      letter-spacing: 0.01em;
    }

    .cta-btn:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,131,143,0.32);
    }

    /* ── BULLETS ── */
    .bullets-section {
      padding: 72px 0;
      background: var(--white);
    }

    .bullets-inner {
      max-width: 1280px;
      padding: 0 40px;
      margin: 0 auto;
    }

    .section-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-heading {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #1A2E35;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .section-sub {
      text-align: center;
      font-size: 1rem;
      color: var(--gray-text);
      max-width: 640px;
      margin: 0 auto 44px;
      line-height: 1.65;
    }

    .bullets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .bullet-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-top: 4px solid var(--teal);
      border-radius: 10px;
      padding: 32px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 8px rgba(0,131,143,0.05);
    }

    .bullet-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(0,131,143,0.13);
    }

    .bullet-icon {
      width: 44px; height: 44px;
      background: var(--teal-light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }

    .bullet-icon svg { width: 22px; height: 22px; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .bullet-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #1A2E35;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .bullet-card p {
      font-size: 0.9375rem;
      font-weight: 400;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* ── CONTACT FORM ── */
    .contact-section {
      background: var(--teal-light);
      padding: 72px 0;
      border-top: 1px solid var(--gray-border);
    }

    .contact-inner {
      max-width: 600px;
      margin: 0 auto;
      padding: 0 40px;
      text-align: center;
    }

    .contact-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--teal-dark);
      margin-bottom: 10px;
    }

    .contact-inner .sub {
      font-size: 0.92rem;
      color: var(--gray-text);
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 16px;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--teal-dark);
      margin-bottom: 6px;
      letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--teal-mid);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      color: #2D3748;
      background: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,131,143,0.12);
    }

    .form-group textarea { min-height: 110px; }

    .form-submit {
      width: 100%;
      background: var(--teal);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.97rem;
      font-weight: 600;
      padding: 13px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 6px;
      letter-spacing: 0.02em;
    }

    .form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

    .form-note {
      font-size: 0.75rem;
      color: #8AABB0;
      margin-top: 12px;
    }

    /* success — sits above Full Name field */
    #form-success {
      display: none;
      background: #E6F9F1;
      border: 1px solid #6FCFA0;
      border-left: 4px solid #27AE60;
      border-radius: 8px;
      padding: 14px 18px;
      color: #1E7E4A;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    #form-success span { font-size: 1.1rem; margin-right: 6px; }

    /* field error state */
    .form-group input.error,
    .form-group textarea.error,
    .form-group .captcha-input.error {
      border-color: #E53E3E;
      box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
    }

    .field-error {
      font-size: 0.75rem;
      color: #E53E3E;
      margin-top: 5px;
      display: none;
    }

    .field-error.visible { display: block; }

    /* captcha row */
    .captcha-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .captcha-question {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--teal-dark);
      background: var(--teal-light);
      padding: 9px 14px;
      border-radius: 6px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .captcha-input {
      width: 80px;
      padding: 11px 14px;
      border: 1px solid var(--teal-mid);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      color: #2D3748;
      background: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      text-align: center;
    }

    .captcha-input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,131,143,0.12);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--teal-dark);
      color: rgba(255,255,255,0.75);
      text-align: center;
      padding: 28px 24px;
      font-size: 0.78rem;
    }

    footer .footer-powered {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
    }

    footer .footer-powered strong { color: rgba(255,255,255,0.9); }

    footer .footer-contact {
      margin-top: 10px;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.03em;
    }

    footer .footer-contact a {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.35);
      padding-bottom: 1px;
      transition: border-color 0.2s;
    }

    footer .footer-contact a:hover { border-color: #fff; }


    /* ── RESPONSIVE — Mobile < 480px ── */
    @media (max-width: 480px) {
      .header-inner { padding: 0 16px; min-height: auto; flex-wrap: wrap; gap: 8px; padding-top: 10px; padding-bottom: 10px; }
      header img { height: 60px !important; }
      nav { order: 3; width: 100%; justify-content: center; border-top: 1px solid var(--gray-border); padding-top: 6px; }
      nav a { padding: 6px 10px; font-size: 0.75rem; }
      .header-phone { order: 2; font-size: 0.82rem; padding: 7px 14px; }
      .hero { padding: 48px 0 52px; }
      .bullets-inner, .contact-inner { padding: 0 16px; }
      h1 { font-size: 1.6rem; }
      .bullets-grid { grid-template-columns: 1fr; }
    }

    /* ── RESPONSIVE — Tablet 481–768px ── */
    @media (min-width: 481px) and (max-width: 768px) {
      .header-inner { padding: 0 24px; min-height: 76px; }
      header img { height: 76px !important; }
      nav a { padding: 10px 12px; font-size: 0.8rem; }
      .header-phone { font-size: 0.85rem; padding: 8px 14px; }
      .hero { padding: 60px 0 64px; }
      .bullets-inner, .contact-inner { padding: 0 24px; }
      h1 { font-size: 1.85rem; }
      .bullets-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ── RESPONSIVE — Large tablet 769–1024px ── */
    @media (min-width: 769px) and (max-width: 1024px) {
      .header-inner { padding: 0 32px; }
      .bullets-inner, .contact-inner { padding: 0 32px; }
    }

    /* ── RESPONSIVE — Wide desktop 1280px+ ── */
    @media (min-width: 1280px) {
      .header-inner, .bullets-inner { padding: 0 60px; }
    }