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

:root {
  --ink:       #1a2820;
  --ink-2:     #2d3d32;
  --ink-3:     #3f5449;
  --sage:      #5a7265;
  --sage-lt:   #8aab98;
  --pale:      #f4f6f3;
  --pale-2:    #eaede8;
  --gold:      #b8985a;
  --gold-lt:   #d4b87a;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --ease:      all .25s ease;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn-dark {
  display: inline-block;
  background: var(--ink-2);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: var(--ease);
  border: 1.5px solid var(--ink-2);
  cursor: pointer;
}
.btn-dark:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,40,32,.25); }
.btn-dark.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--ink-2);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--ink-3);
  transition: var(--ease);
}
.btn-outline-dark:hover { background: var(--ink-2); color: var(--white); }

/* ===== EYEBROW / LABELS ===== */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--ease);
}

.nav.scrolled {
  background: rgba(26,40,32,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
}

.nav-brand-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: var(--ease);
}
.nav-menu a:hover { color: var(--white); }

.nav-btn {
  background: var(--ink-3) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 600 !important;
  border: 1px solid var(--sage);
}
.nav-btn:hover { background: var(--sage) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: var(--ease);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink-3) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(90,114,101,.2) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 400px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero feature card */
.hero-feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hfc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hfc-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.hfc-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-lt);
  background: rgba(184,152,90,.15);
  border: 1px solid rgba(184,152,90,.3);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.hfc-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 24px;
}

.hfc-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hfc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

.hfc-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hfc-cta {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--ease);
  border: 1px solid rgba(255,255,255,.15);
}
.hfc-cta:hover { background: rgba(255,255,255,.18); }

/* ===== YEAR PLAN TOOL ===== */
.year-plan {
  padding: 100px 0;
  background: var(--white);
}

.yp-header {
  text-align: center;
  margin-bottom: 48px;
}

.yp-header h2 { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin-bottom: 12px; }
.yp-header p { font-size: 15px; color: var(--sage); }

.yp-toggles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--pale);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.yp-toggle-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.yp-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}

.yp-toggle-btns {
  display: flex;
  background: var(--pale-2);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.yp-btn {
  padding: 8px 22px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: transparent;
  color: var(--sage);
  transition: var(--ease);
}

.yp-btn.active {
  background: var(--ink-2);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26,40,32,.2);
}

.yp-divider {
  width: 1px;
  height: 40px;
  background: var(--pale-2);
  flex-shrink: 0;
}

.yp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.yp-card {
  background: var(--pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}

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

.yp-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
}

.yp-card-top.spring { background: #e8f0eb; }
.yp-card-top.summer { background: #f0ede4; }
.yp-card-top.fall   { background: #ede8e0; }
.yp-card-top.winter { background: #e4eaed; }

.yp-season-icon { font-size: 26px; }

.yp-season-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.yp-season-months {
  font-size: 11px;
  color: var(--sage);
  margin-top: 3px;
  letter-spacing: .3px;
}

.yp-items {
  list-style: none;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  animation: fadeIn .3s ease;
}

.yp-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 5px;
}

.yp-item.highlight .yp-item-dot { background: var(--gold); }
.yp-item.highlight span { color: var(--ink); font-weight: 500; }

.yp-item.coming {
  opacity: .55;
}
.yp-item.coming .yp-item-dot { background: var(--sage-lt); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.yp-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.yp-footer p { font-size: 15px; color: var(--sage); }
.yp-footer strong { color: var(--ink); }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--pale);
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.section-top h2 { font-size: clamp(30px, 4vw, 44px); color: var(--ink); }

.section-desc {
  max-width: 320px;
  font-size: 15px;
  color: var(--sage);
  line-height: 1.7;
  flex-shrink: 0;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pale-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--ease);
}

.svc-card:hover { background: var(--ink-2); }
.svc-card:hover .svc-num { color: rgba(255,255,255,.25); }
.svc-card:hover h3 { color: var(--white); }
.svc-card:hover p { color: rgba(255,255,255,.6); }

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--pale-2);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--ease);
}

.svc-card h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  transition: var(--ease);
}

.svc-card p {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.7;
  transition: var(--ease);
}

/* ===== PLANS ===== */
.plans {
  padding: 100px 0;
  background: var(--white);
}

.plans-header {
  text-align: center;
  margin-bottom: 56px;
}

.plans-header h2 { font-size: clamp(30px, 4vw, 44px); color: var(--ink); margin-bottom: 12px; }
.plans-header p { font-size: 15px; color: var(--sage); }

.plans-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.plan-main {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.plan-price-row {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.plan-dollar {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
}

.plan-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.plan-mo {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  align-self: flex-end;
  margin-bottom: 8px;
}

.plan-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 32px;
}

.plan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}

.pf-check {
  width: 18px;
  height: 18px;
  background: rgba(184,152,90,.25);
  color: var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-coming-card {
  background: var(--pale);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px dashed var(--pale-2);
}

.coming-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--sage-lt);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.plan-coming-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}

.plan-coming-card p {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 20px;
}

.plan-contact-card {
  background: var(--ink-2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-contact-card p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.plan-contact-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-lt);
  transition: var(--ease);
}
.plan-contact-card a:hover { color: var(--white); }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--pale);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-left h2 { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin-bottom: 20px; }

.about-left p {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checks {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-checks li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  align-items: flex-start;
}

.about-checks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(63,84,73,.12);
  color: var(--ink-3);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* About card */
.about-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.about-card-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 16px;
}

.about-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  padding: 0 8px;
}

.about-card blockquote::before {
  content: '"';
  font-size: 60px;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -20px;
  left: -8px;
  font-style: normal;
  line-height: 1;
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 20px;
}

.a-stat { flex: 1; text-align: center; }

.a-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.a-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 5px;
  letter-spacing: .5px;
}

.a-stat-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-left h2 { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin-bottom: 14px; }
.contact-left > p { font-size: 15px; color: var(--sage); margin-bottom: 36px; }

.contact-ways {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.cway {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--ease);
}
a.cway:hover { transform: translateX(4px); }

.cway-icon { font-size: 20px; flex-shrink: 0; }

.cway strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.cway span {
  font-size: 14px;
  color: var(--sage);
}

.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact form */
.cform {
  background: var(--pale);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.cform h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 28px;
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cform-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cform-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .3px;
}

.cform-field input,
.cform-field select,
.cform-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--pale-2);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: var(--ease);
}

.cform-field input:focus,
.cform-field select:focus,
.cform-field textarea:focus {
  border-color: var(--ink-3);
  box-shadow: 0 0 0 3px rgba(63,84,73,.1);
}

.cform-field textarea { resize: vertical; }

.cform-note {
  font-size: 12px;
  color: var(--sage-lt);
  text-align: center;
  margin-top: 12px;
}

.cform-success {
  background: var(--pale);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.success-check {
  width: 56px;
  height: 56px;
  background: rgba(63,84,73,.12);
  color: var(--ink-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.cform-success h3 { font-size: 26px; color: var(--ink); margin-bottom: 8px; }
.cform-success p { font-size: 15px; color: var(--sage); }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: 48px 0 0;
}

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

.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 12px;
  letter-spacing: .5px;
}

.footer-brand .nav-brand-name { color: var(--white); }
.footer-brand .nav-brand-sub { color: rgba(255,255,255,.35); }

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: var(--ease);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .plans-row { grid-template-columns: 1fr; }
  .plan-side { flex-direction: row; }
  .plan-coming-card, .plan-contact-card { flex: 1; }
  .section-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-desc { text-align: left; max-width: 100%; }
}

@media (max-width: 768px) {
  .yp-cards { grid-template-columns: 1fr 1fr; }
  .yp-toggles { flex-direction: column; align-items: flex-start; }
  .yp-divider { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    padding: 80px 28px 32px;
    gap: 20px;
    align-items: flex-start;
    box-shadow: -8px 0 32px rgba(0,0,0,.4);
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 16px; color: rgba(255,255,255,.85); }
  .nav-btn { width: 100%; text-align: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 96px 20px 60px;
    gap: 36px;
  }
  .hero-left h1 { font-size: 38px; }
  .hero-left p { font-size: 15px; }

  .services { padding: 72px 0; }
  .plans { padding: 72px 0; }
  .about { padding: 72px 0; }
  .contact { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .plan-main { padding: 32px 24px; }
  .plan-top { flex-direction: column; gap: 20px; }
  .plan-features-grid { grid-template-columns: 1fr; }
  .plan-side { flex-direction: column; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cform { padding: 28px 20px; }
  .cform-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
  .yp-cards { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .hero-left h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-dark,
  .hero-actions .btn-ghost { text-align: center; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .plan-amount { font-size: 52px; }
  .about-stats-row { flex-direction: column; gap: 12px; }
  .a-stat-line { width: 40px; height: 1px; }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn-dark,
  .contact-btns .btn-outline-dark { text-align: center; }
  .footer-bottom p { font-size: 11px; }
}
