@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --font-sans: 'Nunito Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --primary: #2FBEEE;
  --dark: #181622;
  --gray: #6B6783;
  --border: #D5D2D2;
  --orange: #f58542;
  --purple: #7979F2;
  --yellow: #FBD352;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--dark); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); letter-spacing: -0.025em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.modal { all: unset; display: block; } /* unset bootstrap modal properties */

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* HERO */
.hero { position: relative; padding: 96px 0 0px; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #CEEFF5 0%, #DAD9FF 55%, #FAD3DD 100%); }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,255,255,0.8), transparent, transparent); }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 40px; position: relative; z-index: 10; }
.hero-text { width: 100%; text-align: center; }
.hero-badge { display: inline-block; background: var(--yellow); color: var(--dark); padding: 8px 16px; border-radius: 9999px; font-size: 12px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.hero-title { font-size: 30px; font-weight: 600; line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 16px; font-weight: 500; max-width: 640px; margin: 0 auto 24px; padding: 0 8px; }
@media (min-width: 640px) { .hero-badge { font-size: 14px; } .hero-title { font-size: 48px; } .hero-subtitle { font-size: 18px; } }
@media (min-width: 1024px) {
  .hero { padding: 128px 0 96px; }
  .hero-overlay { background: linear-gradient(to right, rgba(255,255,255,0.7), rgba(255,255,255,0.4), transparent); }
  .hero-content { flex-direction: row; gap: 64px; }
  .hero-text { width: 50%; text-align: left; }
  .hero-title { font-size: 64px; margin-bottom: 24px; }
  .hero-subtitle { font-size: 24px; margin: 0 0 40px; max-width: 640px; text-align: left; padding: 0; }
  .hero-badge { margin-bottom: 24px; }
  .hero-form-wrap { width: 50%; display: flex; justify-content: flex-end;}
}
@media (max-width: 769px) { .hero-form-wrap { margin-bottom: 2rem;  } }

/* LEAD FORM */
.lead-form-card { background: #fff; border-radius: 1.5rem; padding: 32px 24px; box-shadow: 0 8px 40px rgba(0,0,0,0.12); width: 100%; max-width: 440px; }
.lead-form-card h3 { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 4px; }
.lead-form-card .subtitle { text-align: center; color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.form-group input, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 12px; font-size: 15px; font-family: var(--font-sans); outline: none; transition: border-color 0.2s; background: #f3ead14d;}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47,190,238,0.1); }
.btn-primary { display: block; width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 9999px; font-size: 16px; font-weight: 700; font-family: var(--font-sans); cursor: pointer; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 15px rgba(47,190,238,0.3); }
.btn-primary:hover { background: #28a8d4; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-purple { background: var(--purple); box-shadow: 0 4px 15px rgba(121,121,242,0.3); }
.btn-purple:hover { background: #6565d9; }
.btn-orange { background: var(--orange); box-shadow: 0 4px 15px rgba(245,133,66,0.3); }
.btn-orange:hover { background: #e07535; }
.form-error { color: #e53e3e; font-size: 13px; margin-top: 8px; text-align: center; }
.text-danger { color: rgb(214, 41, 62) !important; font-size: 13px !important; }

/* OTP MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: #fff; border-radius: 1.5rem; padding: 32px 24px; max-width: 400px; width: 100%; text-align: center; transform: scale(0.9); transition: transform 0.3s; }
.modal-overlay.active .modal { transform: scale(1); }
.modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.modal .modal-phone { color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.otp-inputs { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
.otp-inputs input { width: 48px; height: 52px; text-align: center; font-size: 20px; font-weight: 700; border: 2px solid var(--border); border-radius: 12px; outline: none; font-family: var(--font-sans); }
.otp-inputs input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47,190,238,0.1); }
.modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray); }
.resend-row { margin-top: 12px; font-size: 13px; color: var(--gray); }
.resend-row button { background: none; border: none; color: var(--primary); font-weight: 700; cursor: pointer; font-family: var(--font-sans); }
.resend-row button:disabled { color: var(--gray); cursor: not-allowed; }

/* SECTION HEADINGS */
.section-title { font-size: 30px; font-weight: 600; margin-bottom: 16px; color: var(--dark); }
.section-subtitle { color: var(--gray); font-size: 14px; }
@media (min-width: 640px) { .section-title { font-size: 36px; } .section-subtitle { font-size: 16px; } }
@media (min-width: 1024px) { .section-title { font-size: 48px; margin-bottom: 24px; } .section-subtitle { font-size: 18px; } }

/* ABOUT SECTION */
.about-section { padding: 40px 0; background: #fff; }
@media (min-width: 1024px) { .about-section { padding: 96px 0; } }
.about-grid { display: flex; flex-direction: column; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .about-grid { flex-direction: row; gap: 64px; } }
.about-img-wrap { width: 100%; order: 2; }
@media (min-width: 1024px) { .about-img-wrap { width: 50%; order: 1; } }
.about-img-container { position: relative; margin: 0 32px; }
@media (min-width: 1024px) { .about-img-container { margin: 0; } }
.about-img-shadow { position: absolute; inset: 0; border-radius: 2rem; transform: translate(12px, 12px); background: var(--orange); }
@media (min-width: 1024px) { .about-img-shadow { transform: translate(16px, 16px); } }
.about-img { position: relative; border-radius: 2rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 1024px) { .about-img { aspect-ratio: auto; height: 600px; } }
.about-text { width: 100%; order: 1; }
@media (min-width: 1024px) { .about-text { width: 50%; order: 2; } }
.about-text h2 { text-align: center; }
@media (min-width: 1024px) { .about-text h2 { text-align: left; } }
.about-text .desc { font-size: 14px; color: var(--gray); margin-bottom: 24px; text-align: center; line-height: 1.7; }
@media (min-width: 640px) { .about-text .desc { font-size: 16px; } }
@media (min-width: 1024px) { .about-text .desc { font-size: 20px; text-align: left; margin-bottom: 32px; } }
.about-stat { display: flex; align-items: center; gap: 16px; padding: 15px 30px; text-align: left; margin: 15px 0; }
.about-stat .icon-box { width: 48px; height: 48px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; background: var(--orange); }
.about-stat span { font-size: 16px; font-weight: 700; color: var(--dark); }
@media (min-width: 640px) { .about-stat span { font-size: 18px; } }
@media (min-width: 1024px) { .about-stat span { font-size: 20px; } }

/* CTA ROW */
.cta-row { text-align: center; margin-top: 40px; }
@media (min-width: 1024px) { .cta-row { margin-top: 56px; } }
.cta-row .investment-label { color: var(--gray); font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 20px 32px; border-radius: 9999px; font-size: 16px; font-weight: 700; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: all 0.2s; font-family: var(--font-sans); }
.btn-cta:hover { transform: translateY(-2px); }
@media (min-width: 1024px) { .btn-cta { padding: 24px 48px; font-size: 18px; } }

/* PUZZLE / HOW IT WORKS */
.puzzle-section { padding: 80px 0; background: #fff; }
.puzzle-grid { display: grid; grid-template-columns: 1fr 1fr; position: relative; max-width: 900px; margin: 0 auto; }
.puzzle-card { padding: 48px; text-align: left; display: flex; flex-direction: column; position: relative; }
.puzzle-card .num { position: absolute; top: 24px; left: 32px; font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.4); }
.puzzle-card h3 { font-size: 24px; font-weight: 700; color: #fff; margin-top: 16px; line-height: 1.2; }
.puzzle-card p { font-size: 16px; color: rgba(255,255,255,0.9); margin-top: 16px; line-height: 1.6; }
@media (min-width: 1024px) { .puzzle-card h3 { font-size: 28px; } }
.puzzle-card:nth-child(1) { background: #38BDF8; border-radius: 24px 0 0 0; z-index: 4; }
.puzzle-card:nth-child(2) { background: #FBBF24; border-radius: 0 24px 0 0; z-index: 3; }
.puzzle-card:nth-child(3) { background: #6366F1; border-radius: 0 0 0 24px; z-index: 2; }
.puzzle-card:nth-child(4) { background: #FB923C; border-radius: 0 0 24px 0; z-index: 1; }
.puzzle-connector { position: absolute; width: 42px; height: 42px; border-radius: 50%; z-index: 5; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.puzzle-connector.top-center { left: 50%; top: 25%; transform: translate(-50%,-50%); background: #38BDF8; }
.puzzle-connector.bottom-center { left: 50%; top: 75%; transform: translate(-50%,-50%); background: #6366F1; }
.puzzle-connector.left-mid { left: 25%; top: 50%; transform: translate(-50%,-50%); background: #38BDF8; margin-top: 25px; }
.puzzle-connector.right-mid { left: 75%; top: 50%; transform: translate(-50%,-50%); background: #FBBF24; margin-top: 25px; }
.buyback-box { border-radius: 20px; padding: 40px; text-align: center; position: relative; overflow: visible; background: #8fdbf5; margin-top: 40px; }
.buyback-box h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.buyback-box p { font-size: 18px; color: var(--dark); line-height: 1.6; max-width: 640px; margin: 0 auto; }
.buyback-dot { position: absolute; width: 42px; height: 42px; border-radius: 50%; background: #39bdf8; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.buyback-dot.left { left: -18px; top: 50%; transform: translateY(-50%); }
.buyback-dot.right { right: -18px; top: 50%; transform: translateY(-50%); }
.optout-title { font-size: 20px; font-weight: 600; font-style: italic; color: #1A1A1A; margin-bottom: 16px; text-align: center; }

/* MOBILE PUZZLE */
@media (max-width: 767px) {
  .puzzle-desktop { display: none; }
  .puzzle-mobile { display: block; max-width: 400px; margin: 0 auto; }
  .puzzle-mobile .puzzle-card { padding: 20px; min-height: 190px; }
  .puzzle-mobile .puzzle-card .num { top: 8px; left: 12px; font-size: 14px; }
  .puzzle-mobile .puzzle-card h3 { font-size: 15px; margin: 16px 7px 0; }
  .puzzle-mobile .puzzle-card p { font-size: 11px; margin: 8px 7px 0; }
  .puzzle-mobile .puzzle-card:nth-child(1) { border-radius: 20px 0 0 0; }
  .puzzle-mobile .puzzle-card:nth-child(2) { border-radius: 0 20px 0 0; }
  .puzzle-mobile .puzzle-card:nth-child(3) { border-radius: 0 0 0 20px; }
  .puzzle-mobile .puzzle-card:nth-child(4) { border-radius: 0 0 20px 0; }
  .puzzle-mobile .puzzle-connector { width: 30px; height: 30px; }
  .puzzle-mobile .puzzle-connector.bottom-center { background: #fb923c; margin-left: -8px; margin-top: 4px; }
  .puzzle-mobile .puzzle-connector.left-mid { background: #6366f1; margin-top: 3px; }
  .puzzle-mobile .puzzle-connector.right-mid { margin-top: 17px; }
  .puzzle-mobile .buyback-box { border-radius: 16px; padding: 20px; margin-top: 32px; }
  .puzzle-mobile .buyback-box h3 { font-size: 17px; }
  .puzzle-mobile .buyback-box p { font-size: 11px; }
  .puzzle-mobile .buyback-dot { width: 30px; height: 30px; }
  .puzzle-mobile .buyback-dot.left { left: -12px; }
  .puzzle-mobile .buyback-dot.right { right: -12px; }
  .puzzle-mobile .optout-title { font-size: 18px; margin-bottom: 12px; }
}
@media (min-width: 768px) {
  .puzzle-mobile { display: none; }
  .puzzle-desktop { display: block; }
}

/* WHO IS THIS FOR */
.who-section { padding: 48px 0; background: #8edbf5; overflow: hidden; }
@media (min-width: 1024px) { .who-section { padding: 96px 0; } }
.who-card { border-radius: 2rem; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 8px 40px rgba(0,0,0,0.1); max-width: 896px; margin: 0 auto; }
.who-card img { width: 100%; height: 200px; object-fit: cover; }
@media (min-width: 1024px) { .who-card img { height: 320px; } }
.who-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 24px; }
@media (min-width: 640px) { .who-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .who-grid { padding: 40px; } }
.who-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; }
.who-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.who-item span { font-size: 16px; font-weight: 700; }
@media (min-width: 1024px) { .who-item span { font-size: 18px; } }

/* COMPARISON TABLE */
.compare-section { padding: 48px 0; background: var(--dark); color: #fff; overflow: hidden; }
@media (min-width: 1024px) { .compare-section { padding: 96px 0; } }
.compare-wrap { max-width: 1100px; margin: 0 auto; width: 100%; }
.compare-scroll { overflow-x: auto; padding-bottom: 16px; }
@media (min-width: 640px) { .compare-scroll { padding-bottom: 24px; } }
.compare-table { min-width: 800px; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.compare-row { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid rgba(255,255,255,0.05); }
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.05); }
.compare-row.header { border-bottom: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.1); }
.compare-cell { padding: 16px; display: flex; align-items: center; font-size: 14px; }
@media (min-width: 1024px) { .compare-cell { padding: 24px; } }
.compare-cell.param { font-weight: 700; color: #fff; position: sticky; left: 0; z-index: 10; border-right: 1px solid rgba(255,255,255,0.1); }
.compare-cell.header-cell { font-weight: 700; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
@media (min-width: 1024px) { .compare-cell.header-cell { font-size: 14px; } }
.compare-cell.foco { font-weight: 600; color: var(--primary); }
.compare-cell.other { color: #b0abc7; }
.compare-row:nth-child(even) .compare-cell.param { background: #1e1c2e; }
.compare-row:nth-child(odd) .compare-cell.param { background: #222038; }
.compare-row:nth-child(even) { background: #1e1c2e; }
.compare-row:nth-child(odd) { background: #222038; }
.compare-row.header .compare-cell.param { background: #252233; }
.swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; color: #9895A5; font-size: 14px; font-weight: 500; }
@media (min-width: 1024px) { .swipe-hint { display: none; } }

/* VIDEO SECTION */
.video-section { padding: 48px 0; background: #cfeff5; overflow: hidden; }
@media (min-width: 1024px) { .video-section { padding: 96px 0; } }
.video-wrap { max-width: 896px; margin: 0 auto; position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); background: #000; }
.video-wrap video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; background: none; border: none; }
.video-play-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; background: rgba(255,255,255,0.9); }
@media (min-width: 1024px) { .video-play-icon { width: 80px; height: 80px; } }
.video-play-icon svg { color: var(--primary); }
.video-playing .video-play-icon { background: rgba(0,0,0,0.4); opacity: 0; }
.video-playing:hover .video-play-icon { opacity: 1; }
.video-playing .video-play-icon svg { color: #fff; }

/* WAVE DIVIDER */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; margin-bottom: -1px; }
.wave-divider svg { width: 100%; height: 40px; display: block; }
@media (min-width: 1024px) { .wave-divider svg { height: 64px; } }

/* TEAM */
.team-section { padding: 48px 0; background: #fff; }
@media (min-width: 1024px) { .team-section { padding: 96px 0; } }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.team-card { background: #fff; border-radius: 1.5rem; padding: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(213,210,210,0.3); text-align: center; transition: box-shadow 0.3s; }
.team-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .team-card { padding: 24px; } }
.team-photo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 12px; overflow: hidden; border: 2px solid rgba(47,190,238,0.2); background: #E2E8F0; }
@media (min-width: 1024px) { .team-photo { width: 128px; height: 128px; margin-bottom: 16px; } }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-weight: 700; font-size: 16px; margin-bottom: 4px; white-space: nowrap; }
@media (min-width: 1024px) { .team-card h3 { font-size: 18px; } }
.team-card p { color: #8c8c8c; font-size: 12px; font-weight: 500; }
@media (min-width: 1024px) { .team-card p { font-size: 13px; } }

/* WHY PARENTS */
.parents-section { padding: 48px 0; background: #cff08a; }
@media (min-width: 1024px) { .parents-section { padding: 96px 0; } }
.parents-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .parents-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.parent-card { display: flex; gap: 16px; padding: 24px; background: #fff; border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.parent-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .parent-card { padding: 32px; } }
.parent-icon { width: 96px; height: 96px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 12px; }
.parent-icon img { width: 100%; height: 100%; object-fit: contain; }
.parent-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.parent-card p { color: var(--gray); line-height: 1.6; }

/* MARQUEE / PARTNER LOGOS */
.partners-section { padding: 48px 0; background: #fff; overflow: hidden; }
@media (min-width: 1024px) { .partners-section { padding: 96px 0; } }
.marquee-container { width: 100%; overflow: hidden; position: relative; }
.marquee-container::before,
.marquee-container::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-container::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-track { display: flex; will-change: transform; }
.marquee-track.forward { animation: marquee-fwd 40s linear infinite; }
.marquee-track.reverse { animation: marquee-rev 45s linear infinite; }
.marquee-track.fast { animation: marquee-fwd 35s linear infinite; }
@keyframes marquee-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-item { height: 64px; width: 128px; flex-shrink: 0; margin: 0 16px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .marquee-item { height: 80px; width: 160px; } }
.marquee-item img { width: 100%; height: 100%; object-fit: contain; }
.marquee-rows { display: flex; flex-direction: column; gap: 24px; }

/* AWARDS */
.awards-section { padding: 48px 0; background: #CFF08A; }
@media (min-width: 1024px) { .awards-section { padding: 96px 0; } }
.awards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 896px; margin: 0 auto; }
@media (min-width: 640px) { .awards-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.award-card { background: #fff; padding: 32px; border-radius: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(255,255,255,0.5); text-align: center; transition: transform 0.3s; }
@media (max-width: 388px) { .award-card  { padding: 20px;} }
.award-card:hover { transform: translateY(-4px); }
.award-logo { width: 288px; height: 160px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .award-logo { width: 352px; height: 192px; } }
.award-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.award-card h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
@media (min-width: 1024px) { .award-card h3 { font-size: 20px; } }
.award-card p { color: var(--gray); font-size: 14px; }

/* MEDIA / NEWS */
.news-section { padding: 32px 0; background: #fff; overflow: hidden; }
@media (min-width: 1024px) { .news-section { padding: 56px 0; } }
.media-item { width: 144px; aspect-ratio: 3/2; flex-shrink: 0; margin: 0 16px; }
@media (min-width: 1024px) { .media-item { width: 192px; } }
.media-item img { width: 100%; height: 100%; object-fit: contain; }

/* FAQ */
.faq-section { padding: 48px 0; background: var(--primary); }
@media (min-width: 1024px) { .faq-section { padding: 96px 0; } }
.faq-section .section-title { color: #fff; }
.faq-section .section-subtitle { color: #e8e8e8; }
.faq-container { background: #fff; border-radius: 2rem; padding: 24px; box-shadow: 0 4px 30px rgba(0,0,0,0.08); max-width: 768px; margin: 0 auto; }
@media (min-width: 1024px) { .faq-container { padding: 40px; } }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 0; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 700; color: var(--dark); font-family: var(--font-heading); transition: color 0.2s; padding-right: 16px; }
@media (min-width: 1024px) { .faq-question { font-size: 20px; } }
.faq-question:hover { color: var(--primary); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 16px; color: var(--gray); line-height: 1.7; font-size: 15px; background: #F8F9FC; padding: 16px; border-radius: 12px; border: 1px solid rgba(213,210,210,0.3); margin-bottom: 16px; }
.faq-answer-inner ul { padding-left: 20px; margin: 8px 0; }
.faq-answer-inner li { margin-bottom: 4px; }

/* THANK YOU HERO */
.ty-hero { padding: 80px 0 64px; position: relative; overflow: hidden; background: linear-gradient(180deg, #CEEFF5 0%, #DAD9FF 50%, #FAD3DD 100%); }
@media (min-width: 1024px) { .ty-hero { padding: 96px 0 80px; } }
.ty-check { width: 80px; height: 80px; background: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.ty-check svg { color: var(--primary); }
.ty-hero h1 { font-size: 30px; font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
@media (min-width: 640px) { .ty-hero h1 { font-size: 36px; } }
@media (min-width: 1024px) { .ty-hero h1 { font-size: 48px; } }

/* THANK YOU WHY CHOOSE */
.ty-why { padding: 48px 0; background: #FFD3B8; overflow: hidden; }
@media (min-width: 1024px) { .ty-why { padding: 80px 0; } }
.ty-highlights { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 896px; margin: 0 auto; }
@media (min-width: 640px) { .ty-highlights { grid-template-columns: 1fr 1fr; gap: 24px; } }
.ty-highlight { border-radius: 1rem; padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.ty-highlight .check-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ty-highlight .check-icon svg { color: var(--primary); }
.ty-highlight span { font-size: 16px; font-weight: 700; }
@media (min-width: 1024px) { .ty-highlight span { font-size: 18px; } }

/* THANK YOU FAQ */
.ty-faq-section { padding: 48px 0; background: #CEEFF5; overflow: hidden; }
@media (min-width: 1024px) { .ty-faq-section { padding: 80px 0; } }

/* FOOTER */
.footer { padding: 24px 0; background: #fff; border-top: 1px solid var(--border); text-align: center; }
@media (min-width: 1024px) { .footer { padding: 32px 0; } }
.footer p { color: var(--gray); font-size: 12px; font-weight: 700; }
@media (min-width: 640px) { .footer p { font-size: 14px; } }
.footer-home { padding-bottom: 96px; }
@media (min-width: 1024px) { .footer-home { padding-bottom: 32px; } }

/* STICKY CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); transform: translateY(100%); transition: transform 0.3s; }
.sticky-cta.visible { transform: translateY(0); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; }
.sticky-cta-text { color: rgba(255,255,255,0.7); font-weight: 500; font-size: 15px; text-align: left; }
.btn-sticky { background: var(--orange); color: #fff; border: none; border-radius: 9999px; padding: 11px 30px; font-size: 17px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); flex-shrink: 0; font-family: var(--font-sans); }

/* DECORATIVE SHAPES */
.cloud-shape { position: absolute; pointer-events: none; }
.stroke-circle { position: absolute; pointer-events: none; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* UTILITY */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 896px; }
.hidden { display: none; }

/* CITIES */
.city-pill {background-color: #cfe8ef; border-radius: 50px; padding: 10px 22px; font-weight: 500; font-size: 14px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 6px rgba(0,0,0,0.05); will-change: transform; backface-visibility: hidden; color:rgb(24, 22, 34); margin: 10px auto;}
@media (min-width: 992px) { .city-pill { font-size: 16px; padding: 12px 26px; } }
.city-pill:hover { background-color: #2FBEEE; color: #fff; }
.city-pill a:hover {color: #fff; }

/* cities section enable scroll on mobile */
@media only screen and (min-width: 768px){ .city-list .row{  position: relative; min-height:480px !important; max-height:480px !important; overflow:scroll !important;} .city-list .swipe-hint{ display: block !important; text-align: end;}} 
@media only screen and (min-width: 320px) and (max-width:768px){ .city-list .row{  position: relative; min-height:480px !important; max-height:480px !important; overflow:scroll !important;}}