@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.19.0/tabler-icons.min.css');

:root {
  --green: #1D9E75;
  --green-dark: #0F6E56;
  --green-light: #E8F7F2;
  --green-mid: #9FE1CB;
  --text-primary: #0D1F1A;
  --text-secondary: #4A6B61;
  --text-tertiary: #8AA89F;
  --bg: #FFFFFF;
  --bg-secondary: #F6FAF9;
  --bg-tertiary: #EEF7F4;
  --border: #E2EDEA;
  --border-strong: #C8DDD8;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(13,31,26,0.06);
  --shadow-md: 0 4px 16px rgba(13,31,26,0.08);
  --shadow-lg: 0 12px 40px rgba(13,31,26,0.1);
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-primary); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2.5rem; height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.logo-link { display:inline-flex; align-items:center; text-decoration:none; }
.logo-link svg { display:block; }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); padding: 6px 12px; border-radius: var(--radius-md); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: var(--bg-secondary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); border: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,158,117,0.3); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-white { background: white; color: var(--green-dark); font-weight: 600; }
.btn-white:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 8px 14px; }
.btn-ghost:hover { background: var(--bg-secondary); color: var(--text-primary); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.container-sm { max-width: 700px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green-dark); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.2px; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* CARD */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }
.card-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--green-dark); font-size: 20px; flex-shrink: 0; }

/* ICON UTILS */
.icon-sm { font-size: 16px; }
.icon-md { font-size: 20px; }
.icon-lg { font-size: 24px; }
.icon-green { color: var(--green); }
.icon-muted { color: var(--text-tertiary); }

/* CHECKLIST */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.checklist li .ti { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* CTA DARK */
.cta-dark { background: var(--green-dark); padding: 5.5rem 0; text-align: center; }
.cta-dark h2 { color: white; font-size: 40px; margin-bottom: 1rem; }
.cta-dark p { color: var(--green-mid); font-size: 17px; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.footer { padding: 2.5rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-tertiary); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 13px; color: var(--text-tertiary); }

/* DIVIDER */
hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* LABEL */
.label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-tertiary); font-weight: 600; }

/* PRICE BOX */
.price-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.price-box.featured { border: 2px solid var(--green); }
.price-amount { font-size: 36px; font-family: 'DM Serif Display', serif; color: var(--text-primary); }
.price-amount span { font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-secondary); font-weight: 400; }
.price-from, .price-note { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }

/* FORMS */
input, select, textarea { width: 100%; font-size: 14px; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; color: var(--text-primary); font-family: 'DM Sans', sans-serif; transition: var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,158,117,0.1); }
textarea { resize: vertical; min-height: 100px; }
label { font-size: 13px; font-weight: 500; color: var(--text-secondary); display: block; margin-bottom: 6px; }
label span { color: var(--green); }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* PILLS */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pill { font-size: 12px; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; background: transparent; font-family: 'DM Sans', sans-serif; transition: var(--transition); font-weight: 500; }
.pill:hover { border-color: var(--green); color: var(--green); }
.pill.active { background: var(--green-light); color: var(--green-dark); border-color: var(--green); }

/* FADE ANIMATION */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: none; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; border-radius: var(--radius-sm); }
.hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); display: block; }

/* WHY POINTS */
.why-point { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.why-dot { width: 36px; height: 36px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-dark); font-size: 18px; }
.why-text h4 { font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; margin-bottom: 3px; color: var(--text-primary); }
.why-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* STAT BLOCKS */
.stat-block { text-align: center; padding: 2rem 1rem; }
.stat-num { font-size: 32px; font-family: 'DM Serif Display', serif; color: var(--green); margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }

/* SERVICE BLOCK */
.svc-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); font-weight: 600; margin-bottom: .875rem; display: flex; align-items: center; gap: 6px; }
.svc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.svc-includes { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-tertiary); font-weight: 600; margin-bottom: 1rem; }

/* PLAN CARDS */
.plan { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.plan.featured { border: 2px solid var(--green); }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 11px; font-weight: 600; padding: 3px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.3px; }
.plan-name { font-size: 20px; font-family: 'DM Serif Display', serif; margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.75rem; }
.plan-price { font-size: 40px; font-family: 'DM Serif Display', serif; margin-bottom: 4px; line-height: 1; }
.plan-price span { font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-secondary); font-weight: 400; }
.plan-billing { font-size: 12px; color: var(--text-tertiary); margin-bottom: 1.75rem; }
.plan-btn { width: 100%; padding: 11px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text-primary); font-family: 'DM Sans', sans-serif; margin-bottom: 1.75rem; transition: var(--transition); }
.plan-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.plan-btn.primary { background: var(--green); color: white; border-color: var(--green); }
.plan-btn.primary:hover { background: var(--green-dark); }
.plan-feature { display: flex; gap: 9px; font-size: 13px; color: var(--text-secondary); margin-bottom: 9px; align-items: flex-start; }
.plan-feature .ti-check { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.plan-feature .ti-minus { color: var(--text-tertiary); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.plan-feature.no { color: var(--text-tertiary); }

/* PAGE HERO */
.page-hero { background: linear-gradient(150deg, var(--bg-secondary) 0%, var(--bg) 70%); padding: 5.5rem 0 4rem; }
.page-hero h1 { font-size: 46px; margin: 1rem 0; }
.page-hero p { font-size: 17px; color: var(--text-secondary); max-width: 560px; line-height: 1.8; }
.page-hero.dark-hero { background: var(--green-dark); }
.page-hero.dark-hero h1 { color: white; }
.page-hero.dark-hero p { color: var(--green-mid); }

/* MOBILE */
@media(max-width:768px){
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); gap: .25rem; z-index: 99; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .container,.container-sm { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .grid-2,.grid-3,.grid-4,.svc-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-dark { padding: 4rem 0; }
  .cta-dark h2 { font-size: 30px; }
  .footer { padding: 1.5rem 1.25rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .page-hero h1 { font-size: 34px; }
}
