@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --pu50: #EEEDFE;
  --pu100: #CECBF6;
  --pu200: #AFA9EC;
  --pu400: #7F77DD;
  --pu600: #534AB7;
  --pu800: #3C3489;
  --pu900: #26215C;
  --gray50: #F1EFE8;
  --gray100: #D3D1C7;
  --gray200: #B4B2A9;
  --gray400: #888780;
  --gray600: #5F5E5A;
  --white: #FFFFFF;
  --text: #1a1830;
  --text-muted: #5F5E5A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

html, body {
  min-width: 320px;
}

img, svg, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

nav {
  flex-wrap: wrap;
}

h1, h2, h3, h4, .logo-text, .plan-price, .stat-num {
  font-family: 'Syne', sans-serif;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pu100);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--pu50);
  border-radius: 10px;
  border: 1.5px solid var(--pu200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--pu900);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--pu400);
  letter-spacing: 1.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
  position: relative;
}

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

.nav-links a.active {
  color: var(--pu600);
  font-weight: 500;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--pu600);
  border-radius: 2px;
}

.nav-cta {
  background: var(--pu600);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
}

.nav-cta:hover { background: var(--pu800); transform: translateY(-1px); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--pu50);
  border-bottom: 1px solid var(--pu100);
  padding: 64px 48px 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 40px solid var(--pu100);
  opacity: 0.5;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 60px; top: 40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 25px solid var(--pu200);
  opacity: 0.3;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pu600);
  font-weight: 500;
  text-transform: uppercase;
  background: var(--pu100);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--pu900);
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 16px;
  color: var(--pu800);
  max-width: 480px;
  line-height: 1.75;
}

/* ── SECTION BASE ── */
.section {
  padding: 72px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pu400);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--pu900);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--pu600);
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover { background: var(--pu800); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--pu600);
  border: 1.5px solid var(--pu400);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover { background: var(--pu50); border-color: var(--pu600); }

/* ── FOOTER ── */
footer {
  background: var(--pu900);
  color: var(--pu200);
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text { color: white; font-size: 16px; }
.footer-brand .logo-tagline { color: var(--pu400); }
.footer-brand p {
  font-size: 13px;
  color: var(--pu200);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--pu200);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--pu800);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: var(--pu400); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── CHECK MARK ── */
.check { color: var(--pu600); font-weight: 600; flex-shrink: 0; }

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 40px 20px; }
  .page-hero h1 { font-size: 30px; }
  .section { padding: 48px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Terms & Conditions Modal - Complete Styles */
.tc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-modal-container {
    background: white;
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    padding: 32px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--pu100);
    animation: tcFadeIn 0.3s ease;
}

@keyframes tcFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tc-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--pu50);
    padding-bottom: 16px;
}

.tc-modal-icon {
    width: 50px;
    height: 50px;
    background: var(--pu50);
    border-radius: 14px;
    border: 1px solid var(--pu100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--pu900);
    font-family: 'Syne', sans-serif;
    margin: 0;
}

.tc-modal-body {
    margin-bottom: 24px;
}

.tc-modal-body > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tc-terms-scroll {
    background: var(--pu50);
    border: 1px solid var(--pu100);
    border-radius: 12px;
    padding: 16px;
    max-height: 280px;
    overflow-y: auto;
    margin: 16px 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.tc-terms-scroll h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--pu900);
    margin: 12px 0 6px 0;
}

.tc-terms-scroll h4:first-child {
    margin-top: 0;
}

.tc-terms-scroll p {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.tc-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

.tc-checkbox-container input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--pu600);
}

.tc-checkbox-container a {
    color: var(--pu600);
    text-decoration: none;
    font-weight: 500;
}

.tc-checkbox-container a:hover {
    text-decoration: underline;
}

.tc-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.tc-btn-primary {
    background: var(--pu600);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.15s;
}

.tc-btn-primary:hover {
    background: var(--pu800);
    transform: translateY(-1px);
}

.tc-btn-primary:disabled {
    background: var(--pu200);
    cursor: not-allowed;
    transform: none;
}

.tc-btn-outline {
    background: transparent;
    color: var(--pu600);
    border: 1.5px solid var(--pu400);
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.15s;
}

.tc-btn-outline:hover {
    background: var(--pu50);
    border-color: var(--pu600);
}
/* ================================
   MEDIA QUERIES — ALL DEVICES
   ================================ */

/* Large Desktops (1440px and up) */
@media (min-width: 1440px) {

}

/* Desktops */
@media (max-width: 1440px) {

}

/* Small Desktops / Large Laptops */
@media (max-width: 1280px) {

}

/* Laptops */
@media (max-width: 1024px) {

}

/* Tablets (landscape) */
@media (max-width: 900px) {
  .packages-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .page-hero { padding: 40px 20px; }
  .page-hero h1 {
    font-size: 32px;
    max-width: 100%;
  }
  .page-hero p {
    max-width: 100%;
    font-size: 15px;
  }
  .section { padding: 40px 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .form-card { padding: 32px 24px; }
  .contact-info { margin-bottom: 30px; }
}

/* Large Phones */
@media (max-width: 600px) {
  .nav-cta { padding: 10px 16px; }
  .contact-layout { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-methods { gap: 14px; }
  .method-icon { width: 38px; height: 38px; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }
  .section { padding: 36px 18px; }
}

/* Medium Phones */
@media (max-width: 480px) {
  nav { padding: 10px 16px; }
  .nav-cta { display: none; }
  .page-hero { padding: 32px 16px; }
  .page-hero h1 { font-size: 26px; }
  .section { padding: 32px 16px; }
  .form-card { padding: 28px 20px; }
  .submit-btn,
  .btn-primary,
  .btn-outline { width: 100%; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Small Phones */
@media (max-width: 375px) {
  .page-hero h1 { font-size: 24px; }
  .method-icon { width: 36px; height: 36px; font-size: 18px; }
  .contact-method { gap: 12px; }
  .social-icons { flex-direction: column; align-items: stretch; }
}

/* Extra Small Phones (e.g. iPhone SE) */
@media (max-width: 320px) {
  .page-hero { padding: 28px 14px; }
  .section { padding: 28px 14px; }
  .footer-bottom p,
  .footer-col ul li a,
  .footer-col h4 { font-size: 12px; }
}

/* ================================
   ORIENTATION
   ================================ */

/* Landscape mode */
@media (orientation: landscape) {

}

/* Portrait mode */
@media (orientation: portrait) {

}

/* ================================
   HIGH RESOLUTION / RETINA
   ================================ */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

}

/* ================================
   PRINT
   ================================ */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}

.service-card {
  position: relative;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;                        /* covers the full card */
  background: rgba(255, 255, 255, 0.85);
  border-radius: inherit;          /* matches the card's rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.coming-soon-overlay span {
  background: #4f46e5;             /* indigo to match your card's purple */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
}