@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --green:       #1C4A35;
  --green-dark:  #122E21;
  --green-mid:   #2A6048;
  --green-light: #3D7A5C;
  --gold:        #C8A96E;
  --gold-light:  #E2C89A;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE1;
  --cream-mid:   #E3DDD4;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7A7A;
  --border:      rgba(28,74,53,0.1);
  --font-d:      'DM Serif Display', serif;
  --font-h:      'Cormorant Garamond', serif;
  --font-b:      'DM Sans', sans-serif;
  --shadow-s:    0 2px 12px rgba(28,74,53,0.07);
  --shadow-m:    0 8px 32px rgba(28,74,53,0.12);
  --shadow-l:    0 20px 60px rgba(28,74,53,0.16);
  --radius:      10px;
  --tr:          0.32s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-b);color:var(--text);background:var(--cream);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:var(--font-h);font-weight:600;line-height:1.2;color:var(--green-dark)}
h1{font-size:clamp(2.2rem,5vw,3.8rem)}
h2{font-size:clamp(1.7rem,3.5vw,2.6rem)}
h3{font-size:clamp(1.1rem,2vw,1.4rem)}
p{color:var(--text-mid);line-height:1.75;font-size:1rem}
a{text-decoration:none;color:inherit;transition:color var(--tr)}
img{max-width:100%;display:block}

/* Layout */
.container{max-width:1160px;margin:0 auto;padding:0 2rem}
.section{padding:5rem 0}
.section-sm{padding:3rem 0}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.9rem;border-radius:4px;font-family:var(--font-b);font-size:.92rem;font-weight:500;cursor:pointer;transition:all var(--tr);border:none;letter-spacing:.01em}
.btn-primary{background:var(--green);color:var(--white)}
.btn-primary:hover{background:var(--green-mid);transform:translateY(-2px);box-shadow:var(--shadow-m)}
.btn-outline{background:transparent;color:var(--green);border:1.5px solid var(--green)}
.btn-outline:hover{background:var(--green);color:var(--white)}
.btn-gold{background:var(--gold);color:var(--green-dark);font-weight:600}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:var(--shadow-m)}
.btn-wa{background:#25D366;color:var(--white);font-weight:600}
.btn-wa:hover{background:#1fb958;transform:translateY(-2px)}

/* Header */
header{position:sticky;top:0;z-index:1000;background:rgba(250,247,242,.96);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 2rem;max-width:1160px;margin:0 auto}
.logo{display:flex;flex-direction:column;font-family:var(--font-h);font-size:1.4rem;font-weight:700;color:var(--green-dark);letter-spacing:-.02em;line-height:1}
.logo span{color:var(--gold)}
.logo small{font-family:var(--font-b);font-size:.62rem;font-weight:500;color:var(--text-light);letter-spacing:.1em;text-transform:uppercase;margin-top:2px}
.nav-links{display:flex;align-items:center;gap:1.8rem;list-style:none}
.nav-links a{font-size:.88rem;font-weight:500;color:var(--text-mid);letter-spacing:.01em;position:relative;padding-bottom:2px}
.nav-links a::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:1.5px;background:var(--green);transition:width var(--tr)}
.nav-links a:hover{color:var(--green)}
.nav-links a:hover::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:.7rem}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px;z-index:1001}
.hamburger span{display:block;width:22px;height:2px;background:var(--green-dark);transition:all .3s ease}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Page Hero */
.page-hero{background:var(--green-dark);padding:5rem 2rem 4rem;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A96E' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E")}
.page-hero h1{color:var(--cream);font-family:var(--font-d);font-style:italic;position:relative}
.page-hero p{color:var(--gold-light);margin-top:.75rem;font-size:1.05rem;position:relative}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.8rem;color:rgba(250,247,242,.5);justify-content:center;margin-bottom:.8rem;position:relative}
.breadcrumb a{color:var(--gold-light)}

/* Labels */
.label{display:inline-block;font-family:var(--font-b);font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--green);background:rgba(28,74,53,.08);padding:.28rem .85rem;border-radius:20px;margin-bottom:.9rem}
.label-gold{color:var(--gold);background:rgba(200,169,110,.12)}

/* Divider */
.divider{width:44px;height:2.5px;background:linear-gradient(90deg,var(--gold),var(--green-light));border-radius:2px;margin:1rem 0 1.6rem}
.divider-c{margin:1rem auto 1.6rem}

/* Cards */
.card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-s);transition:transform var(--tr),box-shadow var(--tr)}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow-m)}

/* WhatsApp Float */
.wa-float{position:fixed;bottom:26px;right:26px;background:#25D366;color:var(--white);width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;z-index:999;box-shadow:0 4px 18px rgba(37,211,102,.4);transition:transform var(--tr)}
.wa-float:hover{transform:scale(1.1)}

/* Steps */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;position:relative}
.steps-grid::before{content:'';position:absolute;top:27px;left:12%;right:12%;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);pointer-events:none}
.step{text-align:center;padding:.5rem}
.step-num{width:54px;height:54px;border-radius:50%;background:var(--green);color:var(--white);font-family:var(--font-h);font-size:1.35rem;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 1.1rem;position:relative;z-index:1;box-shadow:0 4px 16px rgba(28,74,53,.25)}
.step h3{font-size:1rem;margin-bottom:.4rem}
.step p{font-size:.87rem}

/* Service Icon */
.s-icon{width:52px;height:52px;border-radius:10px;background:rgba(28,74,53,.08);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1.1rem}

/* Stats */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.stat-box{text-align:center}
.stat-num{font-family:var(--font-h);font-size:2.8rem;font-weight:700;color:var(--green);display:block;line-height:1}
.stat-lbl{font-size:.82rem;color:var(--text-light);margin-top:.35rem}

/* Pills */
.pill{display:inline-flex;align-items:center;gap:.45rem;background:rgba(28,74,53,.07);border-radius:30px;padding:.45rem 1rem;font-size:.85rem;color:var(--green-dark);font-weight:500}
.pill::before{content:'✓';color:var(--green);font-weight:700}

/* FAQ */
.faq-item{border:1px solid var(--border);border-radius:var(--radius);margin-bottom:.7rem;background:var(--white);overflow:hidden}
.faq-q{padding:1.15rem 1.4rem;font-weight:500;font-size:.97rem;cursor:pointer;display:flex;align-items:center;justify-content:space-between;color:var(--green-dark);user-select:none}
.faq-icon{width:22px;height:22px;border-radius:50%;background:var(--green);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;transition:transform var(--tr)}
.faq-q.open .faq-icon{transform:rotate(45deg)}
.faq-a{padding:0 1.4rem;max-height:0;overflow:hidden;font-size:.92rem;color:var(--text-mid);transition:max-height .4s ease,padding .3s ease}
.faq-a.open{max-height:300px;padding:0 1.4rem 1.15rem}

/* Table */
.data-table{width:100%;border-collapse:collapse;border-radius:var(--radius);overflow:hidden}
.data-table th{background:var(--green-dark);color:var(--cream);padding:.9rem 1.2rem;text-align:left;font-family:var(--font-b);font-size:.82rem;font-weight:600;letter-spacing:.05em}
.data-table td{padding:.85rem 1.2rem;border-bottom:1px solid var(--cream-dark);font-size:.93rem}
.data-table tr:last-child td{border-bottom:none}
.data-table tr:nth-child(even) td{background:var(--cream)}

/* Forms */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-field{display:flex;flex-direction:column;gap:.38rem}
.form-field label{font-size:.78rem;font-weight:600;color:var(--green-dark);letter-spacing:.04em;text-transform:uppercase}
.form-field input,.form-field select,.form-field textarea{padding:.8rem 1rem;border:1.5px solid var(--cream-dark);border-radius:6px;font-family:var(--font-b);font-size:.93rem;background:var(--white);color:var(--text);outline:none;transition:border-color var(--tr)}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--green)}
.form-field.full{grid-column:1/-1}

/* Policy */
.policy-body h2{font-size:1.4rem;margin:2.2rem 0 .7rem;color:var(--green-dark)}
.policy-body h3{font-size:1.05rem;margin:1.6rem 0 .5rem;font-family:var(--font-b);font-weight:600;color:var(--green)}
.policy-body p{margin-bottom:.9rem;font-size:.95rem}
.policy-body ul{margin:.7rem 0 1rem 1.5rem}
.policy-body ul li{margin-bottom:.4rem;font-size:.93rem;color:var(--text-mid)}

/* Footer */
footer{background:var(--green-dark);color:rgba(250,247,242,.8);padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(250,247,242,.08)}
.footer-col h4{font-family:var(--font-b);font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:.6rem}
.footer-col ul li a{font-size:.88rem;color:rgba(250,247,242,.6)}
.footer-col ul li a:hover{color:var(--gold-light)}
.footer-logo-txt{font-family:var(--font-h);font-size:1.35rem;font-weight:700;color:var(--cream);margin-bottom:.7rem}
.footer-logo-txt span{color:var(--gold)}
.footer-desc{font-size:.88rem;color:rgba(250,247,242,.5);line-height:1.7}
.f-contact-item{display:flex;gap:.6rem;margin-bottom:.65rem;font-size:.88rem;color:rgba(250,247,242,.6)}
.f-contact-item .ico{color:var(--gold);flex-shrink:0;margin-top:2px}
.footer-bottom{padding:1.4rem 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.8rem}
.footer-bottom p{font-size:.8rem;color:rgba(250,247,242,.3)}
.disclaimer-box{margin-top:2rem;padding:1.1rem 1.4rem;border:1px solid rgba(250,247,242,.08);border-radius:8px;font-size:.78rem;color:rgba(250,247,242,.38);line-height:1.65}
.disclaimer-box strong{color:rgba(250,247,242,.55)}

/* Responsive */
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr}.stats-row{grid-template-columns:repeat(2,1fr)}.steps-grid{grid-template-columns:repeat(2,1fr)}.steps-grid::before{display:none}}
@media(max-width:768px){.nav-links{display:none;flex-direction:column}.nav-links.open{display:flex;position:fixed;top:62px;left:0;right:0;bottom:0;background:var(--cream);padding:2rem;gap:1.2rem;z-index:998;overflow-y:auto}.nav-links.open li{border-bottom:1px solid var(--cream-dark);padding-bottom:.8rem}.nav-links.open a{font-size:1.05rem}.nav-cta .btn-outline{display:none}.hamburger{display:flex}.form-grid{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr}.steps-grid{grid-template-columns:1fr}.stats-row{grid-template-columns:repeat(2,1fr)}}

/* ── Dropdown Menu ── */
.has-drop { position:relative; }
.drop-menu {
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%);
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow-l); min-width:230px;
  list-style:none; padding:.5rem 0;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity var(--tr), transform var(--tr);
  transform:translateX(-50%) translateY(-6px);
  z-index:999; border:1px solid var(--border);
}
.has-drop:hover .drop-menu,
.has-drop.drop-open .drop-menu {
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.drop-menu li a {
  display:block; padding:.65rem 1.2rem;
  font-size:.88rem; color:var(--text-mid);
  transition:background var(--tr), color var(--tr);
}
.drop-menu li a:hover { background:var(--cream); color:var(--green); }
.drop-menu li a::after { display:none; }
.drop-menu::before {
  content:''; position:absolute; top:-6px; left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-bottom-color:var(--white);
  border-top:none;
}

/* ── Pricing Cards ── */
.price-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; }
.price-card {
  background:var(--white); border-radius:var(--radius);
  padding:1.6rem 1.4rem; border:1px solid var(--border);
  transition:transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position:relative;
}
.price-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-m); border-color:var(--green); }
.price-card.featured { border-color:var(--green); background:var(--green-dark); }
.price-card.featured h3 { color:var(--cream); }
.price-card.featured p { color:rgba(250,247,242,.6); }
.price-card .badge {
  position:absolute; top:-10px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--green-dark);
  font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.2rem .7rem; border-radius:10px; white-space:nowrap;
}
.price-card .p-icon { font-size:1.8rem; margin-bottom:.8rem; }
.price-card h3 { font-size:1rem; margin-bottom:.3rem; }
.price-card p { font-size:.82rem; margin-bottom:1rem; }
.price-amt { display:block; font-family:var(--font-h); font-size:1.8rem; font-weight:700; color:var(--green); line-height:1; margin-bottom:.2rem; }
.price-card.featured .price-amt { color:var(--gold); }
.price-note { font-size:.75rem; color:var(--text-light); }
.price-card.featured .price-note { color:rgba(250,247,242,.45); }

/* ── WA Steps ── */
.wa-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.wa-step { text-align:center; }
.wa-step-num {
  width:44px; height:44px; border-radius:50%;
  background:#25D366; color:var(--white);
  font-family:var(--font-h); font-size:1.2rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto .9rem;
}
.wa-step h4 { font-size:.95rem; margin-bottom:.3rem; }
.wa-step p { font-size:.84rem; }

/* ── Coverage State Grid ── */
.state-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; margin-top:2rem; }
.state-card {
  background:rgba(250,247,242,.06); border:1px solid rgba(250,247,242,.1);
  border-radius:8px; padding:1rem; transition:background var(--tr);
}
.state-card:hover { background:rgba(200,169,110,.12); border-color:rgba(200,169,110,.3); }
.state-card h4 { font-family:var(--font-b); font-size:.78rem; font-weight:600; color:var(--gold); margin-bottom:.4rem; letter-spacing:.04em; }
.state-card p { font-size:.75rem; color:rgba(250,247,242,.55); line-height:1.5; }

/* ── Individual Service Page ── */
.svc-hero { background:var(--green-dark); padding:4.5rem 0; position:relative; overflow:hidden; }
.svc-hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A96E' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E"); }
.svc-hero-inner { display:grid; grid-template-columns:1fr 340px; gap:3rem; align-items:center; position:relative; }
.svc-hero h1 { color:var(--cream); font-family:var(--font-d); font-style:italic; margin-bottom:.8rem; }
.svc-hero p { color:rgba(250,247,242,.65); font-size:1.05rem; margin-bottom:1.5rem; }
.svc-price-box { background:rgba(250,247,242,.06); border:1px solid rgba(250,247,242,.12); border-radius:12px; padding:1.8rem; }
.svc-price-box .from { font-size:.75rem; color:rgba(250,247,242,.5); text-transform:uppercase; letter-spacing:.08em; }
.svc-price-box .amount { font-family:var(--font-h); font-size:2.8rem; font-weight:700; color:var(--gold); display:block; line-height:1.1; }
.svc-price-box .note { font-size:.8rem; color:rgba(250,247,242,.45); margin-top:.3rem; }
.svc-price-box .btn { margin-top:1.2rem; width:100%; justify-content:center; }
.includes-list { list-style:none; }
.includes-list li { padding:.55rem 0; font-size:.95rem; color:var(--text-mid); display:flex; gap:.8rem; align-items:flex-start; border-bottom:1px solid var(--cream-dark); }
.includes-list li:last-child { border:none; }
.includes-list li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:2px; }
.process-list { counter-reset:step; list-style:none; }
.process-list li { counter-increment:step; display:flex; gap:1.2rem; padding:1.2rem 0; border-bottom:1px solid var(--cream-dark); align-items:flex-start; }
.process-list li:last-child { border:none; }
.process-list li::before { content:counter(step); min-width:32px; height:32px; background:var(--green); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:1rem; font-weight:700; flex-shrink:0; }
.process-list li h4 { font-family:var(--font-b); font-weight:600; font-size:.95rem; margin-bottom:.25rem; }
.process-list li p { font-size:.88rem; }
.svc-other-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.svc-other-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:1.4rem; display:flex; flex-direction:column; gap:.5rem; transition:all var(--tr); }
.svc-other-card:hover { border-color:var(--green); box-shadow:var(--shadow-s); }
.svc-other-card .oc-icon { font-size:1.4rem; }
.svc-other-card h4 { font-size:.95rem; }
.svc-other-card p { font-size:.82rem; }
.svc-other-card a { font-size:.82rem; color:var(--green); font-weight:600; margin-top:auto; }

@media(max-width:1024px) { .price-grid{grid-template-columns:repeat(2,1fr)} .state-grid{grid-template-columns:repeat(3,1fr)} .wa-steps{grid-template-columns:repeat(2,1fr)} }
@media(max-width:768px) { .price-grid{grid-template-columns:1fr 1fr} .state-grid{grid-template-columns:repeat(2,1fr)} .svc-hero-inner{grid-template-columns:1fr} .svc-other-grid{grid-template-columns:1fr 1fr} .drop-menu{position:static;transform:none!important;opacity:1;visibility:hidden;box-shadow:none;border:none;padding:.3rem 0 .3rem 1rem;background:transparent} .has-drop.drop-open .drop-menu{visibility:visible} .drop-menu li a{padding:.4rem .6rem;font-size:.85rem} }
@media(max-width:480px) { .price-grid{grid-template-columns:1fr} .state-grid{grid-template-columns:1fr 1fr} .svc-other-grid{grid-template-columns:1fr} }
