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

:root {
  --aav-green: #1A5C38;
  --aav-green-lt: #2A7A4C;
  --aav-green-deep: #123E26;
  --aav-amber: #E8A020;
  --aav-amber-h: #C8880A;
  --aav-cream: #F0F7F2;
  --aav-cream-dk: #E2EFE6;
  --aav-white: #FFFFFF;
  --aav-offwhite: #FAFCFB;
  --aav-charcoal: #1C2E1E;
  --aav-grey: #5C6B5D;
  --aav-silver: #9AAB9C;
  --aav-border: #D2E0D5;
  --aav-f-head: 'Crimson Text', Georgia, serif;
  --aav-f-body: 'Outfit', system-ui, sans-serif;
  --aav-r-s: 4px;
  --aav-r-m: 10px;
  --aav-r-l: 18px;
  --aav-sh-s: 0 2px 8px rgba(26,92,56,.08);
  --aav-sh-m: 0 4px 24px rgba(26,92,56,.14);
  --aav-tr: .22s ease;
  --aav-tr-slow: .38s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--aav-f-body); font-size: 1rem; line-height: 1.7; color: var(--aav-charcoal); background: var(--aav-white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 { font-family: var(--aav-f-head); font-weight: 600; line-height: 1.2; color: var(--aav-charcoal); }
h1 { font-size: clamp(2.1rem, 4vw + .8rem, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* Container */
.aav-wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.aav-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.85rem; border-radius: var(--aav-r-m);
  font-size: .95rem; font-weight: 600; font-family: var(--aav-f-body);
  transition: all var(--aav-tr); border: 2px solid transparent; cursor: pointer;
}
.aav-btn-primary { background: var(--aav-green); color: var(--aav-white); }
.aav-btn-primary:hover { background: var(--aav-green-lt); transform: translateY(-1px); box-shadow: var(--aav-sh-m); }
.aav-btn-ghost { border-color: var(--aav-green); color: var(--aav-green); }
.aav-btn-ghost:hover { background: var(--aav-green); color: var(--aav-white); }
.aav-btn-outline { border-color: var(--aav-green); color: var(--aav-green); }
.aav-btn-outline:hover { background: var(--aav-green); color: var(--aav-white); }
.aav-btn-dark { background: var(--aav-charcoal); color: var(--aav-white); }
.aav-btn-dark:hover { background: var(--aav-green-deep); transform: translateY(-1px); }

/* ── Header ── */
#aav-topbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--aav-white);
  border-bottom: 1px solid var(--aav-border);
  box-shadow: var(--aav-sh-s);
}
.aav-topbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.aav-brand { font-family: var(--aav-f-head); font-size: 1.45rem; font-weight: 600; color: var(--aav-green); letter-spacing: -.01em; }
.aav-brand span { color: var(--aav-amber); }
#aav-nav-menu { display: flex; gap: 2rem; align-items: center; }
#aav-nav-menu a { font-size: .875rem; font-weight: 500; color: var(--aav-grey); transition: color var(--aav-tr); }
#aav-nav-menu a:hover { color: var(--aav-green); }
#aav-menu-btn { display: none; flex-direction: column; gap: 5px; width: 26px; }
#aav-menu-btn span { display: block; height: 2px; background: var(--aav-charcoal); border-radius: 2px; transition: all var(--aav-tr); }

/* ── Hero ── */
#aav-hero { background: var(--aav-offwhite); padding: 5.5rem 0; border-bottom: 1px solid var(--aav-border); }
.aav-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.aav-badge {
  display: inline-block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: var(--aav-green); background: rgba(26,92,56,.08); padding: .35rem .85rem;
  border-radius: 20px; margin-bottom: 1.5rem;
}
.aav-hero-text h1 { margin-bottom: 1.25rem; }
.aav-hero-text p { font-size: 1.05rem; color: var(--aav-grey); max-width: 460px; margin-bottom: 2.25rem; }
.aav-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Hero visual – stat cards */
.aav-hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.aav-hero-card {
  background: var(--aav-white); border: 1px solid var(--aav-border);
  border-radius: var(--aav-r-l); padding: 1.5rem;
  box-shadow: var(--aav-sh-s);
  transition: box-shadow var(--aav-tr);
}
.aav-hero-card:hover { box-shadow: var(--aav-sh-m); }
.aav-hc-offset { transform: translateY(18px); }
.aav-hc-stat { font-family: var(--aav-f-head); font-size: 2.2rem; font-weight: 600; color: var(--aav-green); }
.aav-hc-label { font-size: .82rem; color: var(--aav-grey); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* ── Disclaimer ── */
.aav-disclaimer {
  background: var(--aav-green-deep); color: rgba(255,255,255,.82);
  font-size: .83rem; padding: .78rem 0; text-align: center;
}
.aav-disclaimer a { color: rgba(255,255,255,.9); text-decoration: underline; }
.aav-disclaimer strong { color: var(--aav-amber); }

/* ── Features ── */
#aav-features { padding: 5rem 0; background: var(--aav-cream); }
.aav-section-title { font-family: var(--aav-f-head); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 600; margin-bottom: .6rem; }
.aav-section-sub { color: var(--aav-grey); margin-bottom: 2.5rem; max-width: 520px; }
.aav-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.aav-feat-card {
  background: var(--aav-white); border: 1px solid var(--aav-border);
  border-radius: var(--aav-r-l); padding: 2rem;
  transition: box-shadow var(--aav-tr), transform var(--aav-tr);
}
.aav-feat-card:hover { box-shadow: var(--aav-sh-m); transform: translateY(-2px); }
.aav-feat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.aav-feat-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.aav-feat-card p { font-size: .9rem; color: var(--aav-grey); }

/* ── Plans ── */
#aav-plans { padding: 5rem 0; }
.aav-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; margin-top: 1rem; }
.aav-plan-card {
  background: var(--aav-white); border: 1.5px solid var(--aav-border);
  border-radius: var(--aav-r-l); padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--aav-tr);
  position: relative;
}
.aav-plan-card:hover { box-shadow: var(--aav-sh-m); }
.aav-plan-featured { border-color: var(--aav-green); border-width: 2px; }
.aav-plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--aav-green); color: var(--aav-white);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  padding: .28rem .9rem; border-radius: 20px; white-space: nowrap;
}
.aav-plan-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--aav-silver); margin-bottom: .5rem; }
.aav-plan-name { font-family: var(--aav-f-head); font-size: 1.6rem; font-weight: 600; color: var(--aav-charcoal); margin-bottom: 1rem; }
.aav-plan-perks { flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .55rem; }
.aav-plan-perks li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--aav-charcoal);
}
.aav-plan-perks li::before { content: '✓'; color: var(--aav-green); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

/* ── CTA Strip ── */
.aav-cta-strip { background: var(--aav-amber); padding: 3rem 0; }
.aav-cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.aav-cta-inner strong { font-family: var(--aav-f-head); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 600; display: block; color: var(--aav-charcoal); }
.aav-cta-inner span { font-size: .95rem; color: rgba(28,46,30,.8); margin-top: .3rem; display: block; }

/* ── Reviews ── */
#aav-reviews { padding: 5rem 0; background: var(--aav-cream); }
.aav-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.aav-review-card {
  background: var(--aav-white); border: 1px solid var(--aav-border);
  border-radius: var(--aav-r-l); padding: 1.75rem;
  position: relative;
}
.aav-review-card::after {
  content: '"';
  position: absolute; top: .75rem; right: 1.25rem;
  font-family: var(--aav-f-head); font-size: 5rem;
  color: var(--aav-cream-dk); line-height: 1;
}
.aav-review-stars { color: var(--aav-amber); font-size: .9rem; letter-spacing: .05em; margin-bottom: .75rem; }
.aav-review-text { font-size: .9rem; color: var(--aav-grey); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.aav-review-author { display: flex; flex-direction: column; }
.aav-review-author strong { font-size: .88rem; color: var(--aav-charcoal); }
.aav-review-author span { font-size: .78rem; color: var(--aav-silver); }

/* ── FAQ ── */
#aav-faq { padding: 5rem 0; }
#aav-faq .aav-section-title { text-align: center; margin-bottom: 2.5rem; }
.aav-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.aav-faq-item { background: var(--aav-white); border: 1px solid var(--aav-border); border-radius: var(--aav-r-m); overflow: hidden; }
.aav-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.5rem; background: var(--aav-white);
  text-align: left; font-size: .93rem; font-weight: 600; color: var(--aav-charcoal);
  transition: background var(--aav-tr);
}
.aav-faq-q:hover { background: var(--aav-cream); }
.aav-faq-q::after { content: '+'; font-size: 1.4rem; color: var(--aav-green); font-weight: 300; flex-shrink: 0; transition: transform var(--aav-tr); }
.aav-faq-item.aav-open .aav-faq-q { background: var(--aav-cream); color: var(--aav-green); }
.aav-faq-item.aav-open .aav-faq-q::after { transform: rotate(45deg); }
.aav-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--aav-tr-slow); }
.aav-faq-item.aav-open .aav-faq-a { max-height: 350px; }
.aav-faq-a p { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--aav-grey); line-height: 1.7; }
.aav-faq-a a { color: var(--aav-green); text-decoration: underline; }

/* ── Form ── */
#aav-form { padding: 5rem 0; background: var(--aav-green); }
.aav-form-shell { max-width: 680px; margin: 0 auto; }
.aav-form-shell h2 { color: var(--aav-white); text-align: center; margin-bottom: .5rem; }
.aav-form-shell > p { color: rgba(255,255,255,.75); text-align: center; margin-bottom: 2.5rem; font-size: 1.05rem; }
.aav-form-row { margin-bottom: 1.2rem; }
.aav-form-row label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .4rem; }
.aav-form-row input, .aav-form-row textarea {
  width: 100%; padding: .78rem 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--aav-r-m); color: var(--aav-white);
  font-family: var(--aav-f-body); font-size: .95rem;
  outline: none; transition: border-color var(--aav-tr);
}
.aav-form-row input::placeholder, .aav-form-row textarea::placeholder { color: rgba(255,255,255,.3); }
.aav-form-row input:focus, .aav-form-row textarea:focus { border-color: rgba(255,255,255,.45); }
.aav-form-row textarea { resize: vertical; min-height: 115px; }
.aav-form-check { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.aav-form-check input[type="checkbox"] { width: auto; margin-top: .2rem; flex-shrink: 0; accent-color: var(--aav-amber); }
.aav-form-check label { font-size: .8rem; color: rgba(255,255,255,.6); }
.aav-form-check a { color: rgba(255,255,255,.85); text-decoration: underline; }
#aav-form-success { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: var(--aav-r-m); padding: 1.5rem 1.25rem; margin-top: 1.5rem; display: none; }
#aav-form-success.aav-shown { display: block; }
#aav-form-success h3 { color: var(--aav-white); font-size: 1.1rem; margin-bottom: .4rem; }
#aav-form-success p { color: rgba(255,255,255,.8); font-size: .9rem; }

/* ── Footer ── */
#aav-footer { background: var(--aav-green-deep); color: rgba(255,255,255,.65); padding: 3.5rem 0 0; }
.aav-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.aav-footer-brand .aav-brand { color: var(--aav-white); }
.aav-footer-brand .aav-brand span { color: var(--aav-amber); }
.aav-footer-brand p { font-size: .83rem; margin-top: .75rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.aav-footer-col h5 { color: var(--aav-white); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-family: var(--aav-f-body); margin-bottom: 1rem; }
.aav-footer-col li { margin-bottom: .5rem; }
.aav-footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--aav-tr); }
.aav-footer-col a:hover { color: var(--aav-white); }
.aav-footer-base { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; font-size: .78rem; text-align: center; color: rgba(255,255,255,.4); }

/* ── Cookie Bar ── */
#aav-cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--aav-green-deep);
  border-top: 2px solid var(--aav-amber);
  padding: .9rem 0;
  transform: translateY(100%);
  transition: transform var(--aav-tr-slow);
}
#aav-cookie-bar.aav-visible { transform: translateY(0); }
.aav-cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.aav-cookie-inner p { font-size: .83rem; color: rgba(255,255,255,.8); }
.aav-cookie-inner a { color: var(--aav-cream); text-decoration: underline; }
#aav-cookie-ok { padding: .52rem 1.5rem; background: var(--aav-amber); color: var(--aav-charcoal); border-radius: var(--aav-r-m); font-size: .83rem; font-weight: 700; transition: background var(--aav-tr); flex-shrink: 0; }
#aav-cookie-ok:hover { background: var(--aav-amber-h); color: var(--aav-white); }

/* ── Inner Pages: Banner & Breadcrumb ── */
.aav-page-banner { background: var(--aav-green); color: var(--aav-white); padding: 3.5rem 0; text-align: center; }
.aav-page-banner h1 { color: var(--aav-white); font-size: clamp(1.7rem, 3vw, 2.6rem); }
.aav-page-banner p { color: rgba(255,255,255,.75); margin-top: .75rem; }
.aav-crumb-bar { background: var(--aav-cream); border-bottom: 1px solid var(--aav-border); padding: .6rem 0; font-size: .8rem; color: var(--aav-grey); }
.aav-crumb-bar a { color: var(--aav-green); }
.aav-crumb-bar a:hover { text-decoration: underline; }

/* ── Legal Pages ── */
.aav-legal-wrap { max-width: 840px; margin: 0 auto; padding: 3rem 0 5rem; }
.aav-legal-wrap h2 { font-size: 1.3rem; margin: 2rem 0 .7rem; border-bottom: 1px solid var(--aav-border); padding-bottom: .4rem; }
.aav-legal-wrap h3 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; }
.aav-legal-wrap p { font-size: .93rem; color: var(--aav-grey); }
.aav-legal-wrap ul { list-style: disc; padding-left: 1.5rem; }
.aav-legal-wrap ul li { font-size: .93rem; color: var(--aav-grey); margin-bottom: .35rem; }
.aav-legal-wrap a { color: var(--aav-green); text-decoration: underline; }
.aav-legal-wrap strong { color: var(--aav-charcoal); }
.aav-legal-wrap table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.aav-legal-wrap th { background: var(--aav-green); color: var(--aav-white); padding: .6rem .75rem; text-align: left; }
.aav-legal-wrap td { padding: .6rem .75rem; border-bottom: 1px solid var(--aav-border); color: var(--aav-grey); }

/* ── Article Layout ── */
.aav-content-layout { display: grid; grid-template-columns: 1fr 290px; gap: 3rem; padding: 3rem 0 5rem; }
.aav-article h2 { font-size: 1.45rem; margin: 2rem 0 .7rem; }
.aav-article h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.aav-article p { font-size: .93rem; color: var(--aav-grey); }
.aav-article ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.aav-article ul li { font-size: .93rem; color: var(--aav-grey); margin-bottom: .35rem; }
.aav-article ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1rem; }
.aav-article ol li { font-size: .93rem; color: var(--aav-grey); margin-bottom: .35rem; }
.aav-article a { color: var(--aav-green); text-decoration: underline; }
.aav-article table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1rem 0; }
.aav-article th { background: var(--aav-green); color: var(--aav-white); padding: .65rem 1rem; text-align: left; }
.aav-article td { padding: .65rem 1rem; border-bottom: 1px solid var(--aav-border); color: var(--aav-grey); }
.aav-read-box { background: var(--aav-cream); border-radius: var(--aav-r-l); padding: 1.5rem; margin-top: 2.5rem; }
.aav-read-box h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; font-family: var(--aav-f-body); }
.aav-read-box ul { padding: 0; list-style: none; }
.aav-read-box li { margin-bottom: .5rem; }
.aav-read-box a { color: var(--aav-green); font-size: .9rem; }
.aav-read-box a:hover { text-decoration: underline; }
.aav-side-box { background: var(--aav-white); border: 1px solid var(--aav-border); border-radius: var(--aav-r-l); padding: 1.5rem; margin-bottom: 1.5rem; }
.aav-side-box h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: .9rem; color: var(--aav-charcoal); font-family: var(--aav-f-body); }
.aav-side-box p { font-size: .86rem; color: var(--aav-grey); }
.aav-side-box ul { list-style: disc; padding-left: 1.25rem; }
.aav-side-box ul li { font-size: .86rem; color: var(--aav-grey); margin-bottom: .35rem; }
.aav-side-box a { color: var(--aav-green); }

/* ── Team ── */
.aav-team-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.aav-team-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--aav-border); border-radius: var(--aav-r-l); }
.aav-team-av { width: 64px; height: 64px; border-radius: 50%; background: var(--aav-green); color: var(--aav-white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin: 0 auto 1rem; }
.aav-team-role { font-size: .76rem; color: var(--aav-amber-h); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.aav-team-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.aav-team-card p { font-size: .86rem; color: var(--aav-grey); }

/* ── Contact Grid ── */
.aav-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.aav-ccard { background: var(--aav-cream); border-radius: var(--aav-r-l); padding: 1.75rem; border: 1px solid var(--aav-border); }
.aav-ccard-ico { font-size: 1.75rem; margin-bottom: .75rem; }
.aav-ccard h3 { font-size: 1rem; margin-bottom: .5rem; }
.aav-ccard p { font-size: .88rem; color: var(--aav-grey); }
.aav-ccard a { color: var(--aav-green); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .aav-hero-grid { grid-template-columns: 1fr; }
  .aav-hero-visual { grid-template-columns: repeat(3, 1fr); }
  .aav-hc-offset { transform: none; }
  .aav-plans-grid { grid-template-columns: 1fr 1fr; }
  .aav-footer-grid { grid-template-columns: 1fr 1fr; }
  .aav-content-layout { grid-template-columns: 1fr; }
  .aav-team-row { grid-template-columns: 1fr 1fr; }
  .aav-contact-grid { grid-template-columns: 1fr; }
  .aav-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .aav-feat-grid { grid-template-columns: 1fr; }
  .aav-plans-grid { grid-template-columns: 1fr; }
  .aav-reviews-grid { grid-template-columns: 1fr; }
  .aav-hero-visual { grid-template-columns: 1fr 1fr; }
  .aav-footer-grid { grid-template-columns: 1fr; }
  .aav-team-row { grid-template-columns: 1fr; }
  #aav-nav-menu {
    display: none; position: fixed; top: 66px; left: 0; right: 0;
    background: var(--aav-white); border-bottom: 1px solid var(--aav-border);
    flex-direction: column; padding: 1.5rem; gap: 1.25rem;
    box-shadow: var(--aav-sh-m);
  }
  #aav-nav-menu.aav-nav-open { display: flex; }
  #aav-menu-btn { display: flex; }
  .aav-cookie-inner { flex-direction: column; align-items: flex-start; }
}
