:root {
  --white:       #ffffff;
  --off-white:   #f8f7f5;
  --surface:     #f2f0ed;
  --border:      #dcd8d0;
  --border-soft: #ede9e3;
  --navy:        #1a2e44;
  --navy-deep:   #0f1d2e;
  --navy-mid:    #243a52;
  --teal:        #2d7d7d;
  --teal-light:  #3a9898;
  --teal-pale:   #e8f4f4;
  --teal-faint:  #f0f8f8;
  --text:        #1a2022;
  --text-mid:    #4a5568;
  --text-light:  #7a8694;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --shadow-sm:   0 2px 12px rgba(26,46,68,0.06);
  --shadow-md:   0 8px 32px rgba(26,46,68,0.10);
  --shadow-lg:   0 20px 60px rgba(26,46,68,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--sans); font-weight: 300; overflow-x: hidden; line-height: 1.5; }
img, svg { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 3px solid var(--teal);
  padding: 1.2rem 2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(26,46,68,0.15);
}
#cookie-banner p { font-size: 0.8rem; color: rgba(255,255,255,0.7); max-width: 640px; line-height: 1.6; flex: 1; min-width: 200px; }
#cookie-banner a { color: #7ec8c8; text-decoration: none; }
.cookie-btns { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cookie-btns button { font-family: var(--sans); font-size: 0.75rem; padding: 0.5rem 1.2rem; cursor: pointer; transition: all 0.3s; border-radius: 2px; white-space: nowrap; }
.btn-accept { background: var(--teal); color: #fff; border: none; }
.btn-accept:hover { background: var(--teal-light); }
.btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, padding 0.3s, box-shadow 0.4s;
}
nav.scrolled { border-bottom-color: var(--border); padding: 0.9rem 2.5rem; box-shadow: var(--shadow-sm); }
.nav-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); text-decoration: none; white-space: nowrap; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-links a { font-size: 0.78rem; color: var(--text-mid); text-decoration: none; transition: color 0.25s; font-weight: 400; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.08em; padding: 0.6rem 1.4rem; background: var(--teal); color: #fff; text-decoration: none; transition: all 0.3s; border-radius: 2px; white-space: nowrap; }
.nav-cta:hover { background: var(--teal-light); box-shadow: 0 4px 16px rgba(45,125,125,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  overflow-y: auto; padding: 4rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); text-decoration: none; font-weight: 400; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.6rem; color: var(--teal); cursor: pointer; background: none; border: none; line-height: 1; }

/* BUTTONS */
.btn-primary {
  display: inline-block; font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.08em; padding: 0.9rem 2rem; background: var(--teal);
  color: #fff; border: none; cursor: pointer; transition: all 0.3s;
  text-decoration: none; border-radius: 2px; font-weight: 400; white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-light); box-shadow: 0 6px 20px rgba(45,125,125,0.28); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.08em; padding: 0.9rem 2rem; background: transparent;
  color: var(--navy); border: 1.5px solid var(--navy); cursor: pointer;
  transition: all 0.3s; text-decoration: none; border-radius: 2px; font-weight: 400; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-white {
  display: inline-block; font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.08em; padding: 0.9rem 2rem; background: transparent;
  color: #fff; border: 1.5px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.3s; text-decoration: none; border-radius: 2px; font-weight: 400; white-space: nowrap;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* SECTION LAYOUT */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1160px; margin: 0 auto; width: 100%; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center;
  gap: 0.8rem; font-weight: 500;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--teal); flex-shrink: 0; }
h2.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400;
  line-height: 1.15; margin-bottom: 1.2rem; color: var(--navy); word-wrap: break-word;
}
h2.section-title em { font-style: italic; color: var(--teal); }
.section-sub { font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); max-width: 520px; font-weight: 300; }
.divider { width: 44px; height: 2px; background: var(--teal); margin: 1.5rem 0; }
.bg-surface { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }

/* PAGE HERO */
.page-hero {
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 35%;
  background: linear-gradient(135deg, transparent 0%, rgba(45,125,125,0.12) 100%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.1; color: #fff; word-wrap: break-word;
}
.page-hero h1 em { font-style: italic; color: #7ec8c8; }
.page-hero p { font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.62); max-width: 540px; margin-top: 1.2rem; font-weight: 300; }
.breadcrumb { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1.8rem; display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: #7ec8c8; text-decoration: none; }

/* HERO (HOME) */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--off-white); overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3.5rem 5rem 2.5rem; position: relative; z-index: 2;
  min-width: 0;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem; display: flex; align-items: center;
  gap: 0.8rem; font-weight: 500; flex-wrap: wrap;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--teal); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 1.8rem; color: var(--navy);
  word-wrap: break-word;
}
.hero-h1 em { font-style: italic; color: var(--teal); }
.hero-p { font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); max-width: 420px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #c8dde8 0%, #d4e8e8 40%, #b8d4d4 70%, #a8c8d8 100%);
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 55%, var(--off-white) 100%); z-index: 1;
}
.hero-deco {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 60%; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; z-index: 0;
}
.hero-deco::after { content: ''; position: absolute; top: 10%; left: 10%; right: 10%; bottom: 10%; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; }
.hero-large-r {
  position: absolute; bottom: -4rem; right: -2rem;
  font-family: var(--serif); font-size: 18vw; font-weight: 400;
  color: rgba(255,255,255,0.18); line-height: 1; z-index: 0; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: 3rem; left: -2rem; z-index: 2;
  background: var(--white); padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-lg); border-left: 3px solid var(--teal);
}
.badge-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--navy); line-height: 1; }
.badge-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 0.3rem; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.35rem; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-features { display: grid; gap: 1.2rem; margin-top: 2rem; }
.why-feat {
  display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; align-items: start;
  padding: 1.3rem 1.5rem; background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 6px; transition: box-shadow 0.3s, border-color 0.3s; box-shadow: var(--shadow-sm);
  min-width: 0;
}
.why-feat:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.feat-num { font-family: var(--serif); font-size: 1.4rem; color: var(--teal); font-weight: 400; line-height: 1.2; }
.feat-title { font-size: 0.85rem; margin-bottom: 0.35rem; font-weight: 500; color: var(--navy); }
.feat-text { font-size: 0.82rem; line-height: 1.75; color: var(--text-mid); }
.why-visual {
  position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden;
  background: linear-gradient(145deg, #d4e8ec 0%, #c0d8e4 40%, #b8d0e0 100%);
  box-shadow: var(--shadow-lg); min-width: 0;
}
.why-visual-inner {
  position: absolute; inset: 1.5rem; border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.why-visual-quote {
  background: rgba(255,255,255,0.93); padding: 1.2rem 1.5rem; border-left: 3px solid var(--teal);
  font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: var(--navy);
  line-height: 1.6; box-shadow: var(--shadow-sm);
}
.why-visual-tag { margin-top: 0.8rem; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 500; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.service-card {
  background: var(--white); padding: 2rem; cursor: pointer;
  border: 1px solid var(--border-soft); border-radius: 6px;
  transition: all 0.3s; box-shadow: var(--shadow-sm); position: relative;
  overflow: hidden; min-width: 0;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 2.6rem; height: 2.6rem; background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1rem; color: var(--teal); flex-shrink: 0;
}
.svc-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.7rem; color: var(--navy); }
.svc-text { font-size: 0.82rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.2rem; }
.svc-link { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 0.4rem; font-weight: 500; text-decoration: none; }
.svc-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .svc-link::after { transform: translateX(4px); }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 1.95rem; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 0 0.5rem; position: relative; z-index: 1; min-width: 0; }
.step-circle {
  width: 3.8rem; height: 3.8rem; border: 1.5px solid var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
  font-family: var(--serif); font-size: 1.1rem; color: var(--teal); background: var(--off-white); flex-shrink: 0;
}
.step-title { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--navy); font-weight: 500; }
.step-text { font-size: 0.76rem; line-height: 1.65; color: var(--text-mid); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial {
  padding: 2rem; background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 6px; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; min-width: 0;
}
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--teal); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text { font-family: var(--serif); font-size: 0.97rem; font-style: italic; line-height: 1.7; color: var(--navy); margin-bottom: 1.2rem; font-weight: 400; }
.testimonial-author { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 500; }

/* TRUST BANNER */
.trust-banner { background: var(--navy); padding: 4rem 2rem; }
.trust-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.trust-text h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; color: #fff; line-height: 1.2; }
.trust-text p { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin-top: 0.6rem; font-weight: 300; }

/* SERVICES PAGE */
.services-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.service-full-card {
  background: var(--white); padding: 2.5rem;
  border: 1px solid var(--border-soft); border-radius: 6px;
  transition: all 0.3s; box-shadow: var(--shadow-sm); min-width: 0;
}
.service-full-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal); }
.sfc-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; font-weight: 500; }
.sfc-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.9rem; color: var(--navy); line-height: 1.2; }
.sfc-text { font-size: 0.85rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.5rem; }
.sfc-bullets { list-style: none; margin-bottom: 1.8rem; display: grid; gap: 0.6rem; }
.sfc-bullets li { font-size: 0.82rem; color: var(--text-mid); display: flex; gap: 0.8rem; align-items: flex-start; }
.sfc-bullets li::before { content: '✓'; color: var(--teal); flex-shrink: 0; font-weight: 500; margin-top: 0.05em; }
.sfc-cta {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer;
  border: none; background: none; font-family: var(--sans); padding: 0; font-weight: 500; text-decoration: none; transition: gap 0.3s;
}
.sfc-cta:hover { gap: 0.8rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 4rem; margin-top: 3rem; }
.faq-sidebar { position: sticky; top: 5.5rem; height: fit-content; }
.faq-cat-btn {
  display: block; width: 100%; text-align: left; background: none;
  border: none; border-left: 2px solid var(--border); padding: 0.7rem 1rem;
  font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light); cursor: pointer;
  transition: all 0.3s; margin-bottom: 0.25rem;
}
.faq-cat-btn.active, .faq-cat-btn:hover { color: var(--teal); border-left-color: var(--teal); background: var(--teal-faint); }
.faq-items { display: grid; gap: 1px; background: var(--border); border-radius: 6px; overflow: hidden; }
.faq-item { background: var(--white); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 1.4rem 1.8rem;
  font-family: var(--sans); font-size: 0.88rem; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.25s, color 0.25s; font-weight: 400; line-height: 1.45;
}
.faq-q:hover, .faq-q.open { color: var(--teal); background: var(--teal-faint); }
.faq-icon { font-size: 1.3rem; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.85rem; line-height: 1.85; color: var(--text-mid); padding: 0 1.8rem;
  background: var(--teal-faint);
}
.faq-a.open { max-height: 400px; padding: 0.5rem 1.8rem 1.6rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { cursor: pointer; transition: transform 0.3s; min-width: 0; text-decoration: none; display: block; color: inherit; }
.blog-card:hover { transform: translateY(-4px); }
.blog-img {
  aspect-ratio: 16/10; border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, #c8dde8 0%, #b8d4e0 50%, #a8c8d8 100%);
  position: relative; margin-bottom: 1.3rem; box-shadow: var(--shadow-sm);
}
.blog-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,46,68,0.08), rgba(45,125,125,0.12)); }
.blog-img-num { position: absolute; bottom: 0.8rem; right: 1rem; font-family: var(--serif); font-size: 3rem; font-weight: 400; color: rgba(255,255,255,0.3); line-height: 1; }
.blog-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; font-weight: 500; }
.blog-title { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; line-height: 1.35; margin-bottom: 0.65rem; color: var(--navy); }
.blog-excerpt { font-size: 0.82rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
.blog-meta { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* POST PAGE */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.post-body { min-width: 0; }
.post-body h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.2; }
.post-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--navy); margin: 2rem 0 0.7rem; }
.post-body p { font-size: 0.92rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.2rem; font-weight: 300; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem 1.4rem; }
.post-body li { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 0.4rem; }
.post-body blockquote { border-left: 3px solid var(--teal); padding: 1rem 1.5rem; background: var(--teal-faint); margin: 1.8rem 0; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.6; }
.post-img-hero { width: 100%; aspect-ratio: 16/7; border-radius: 6px; overflow: hidden; background: linear-gradient(135deg, #c8dde8, #a8c8d8); margin-bottom: 2.5rem; position: relative; box-shadow: var(--shadow-md); }
.post-img-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,46,68,0.08), rgba(45,125,125,0.12)); }
.post-img-num-large { position: absolute; bottom: 1rem; right: 1.5rem; font-family: var(--serif); font-size: 5rem; font-weight: 400; color: rgba(255,255,255,0.25); line-height: 1; }
.post-tag-hero { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: #7ec8c8; margin-bottom: 1rem; font-weight: 500; }
.post-meta-hero { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem !important; letter-spacing: 0.05em; }
.post-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 2rem; cursor: pointer; border: none; background: none; font-family: var(--sans); padding: 0; transition: gap 0.3s; text-decoration: none; }
.post-back:hover { gap: 0.8rem; }
.post-sidebar { position: sticky; top: 5.5rem; }
.sidebar-box { background: var(--white); border: 1px solid var(--border-soft); border-radius: 6px; padding: 1.8rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--teal); }
.sidebar-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: 0.8rem; }
.sidebar-text { font-size: 0.82rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.2rem; }
.sidebar-related-item { padding: 0.9rem 0; border-bottom: 1px solid var(--border-soft); cursor: pointer; }
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-tag { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; font-weight: 500; }
.sidebar-related-title { font-size: 0.84rem; color: var(--navy); line-height: 1.4; transition: color 0.25s; }
.sidebar-related-item:hover .sidebar-related-title { color: var(--teal); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.contact-item {
  padding: 1.5rem 1.8rem; background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 6px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--teal); min-width: 0;
}
.contact-item-title { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; font-weight: 500; }
.contact-item-val { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--navy); word-break: break-word; }
.contact-item-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 0.2rem; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.form-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1.5px solid var(--border); color: var(--text);
  font-family: var(--sans); font-size: 0.88rem; padding: 0.8rem 1rem;
  transition: border-color 0.3s; outline: none; resize: vertical; border-radius: 4px;
  font-weight: 300; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45,125,125,0.07); }
.form-textarea { min-height: 120px; }
.form-submit {
  background: var(--teal); color: #fff; border: none; padding: 0.95rem 2.2rem;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  border-radius: 2px; font-weight: 400; width: fit-content;
}
.form-submit:hover { background: var(--teal-light); box-shadow: 0 6px 20px rgba(45,125,125,0.25); }
.form-note { font-size: 0.75rem; color: var(--text-light); line-height: 1.65; }
.form-success { display: none; background: var(--teal-faint); border: 1.5px solid var(--teal); padding: 2.5rem; text-align: center; border-radius: 6px; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 400; }
.form-success p { font-size: 0.87rem; color: var(--text-mid); }
.privacy-note {
  padding: 1.5rem 1.8rem; background: var(--teal-faint); border: 1.5px solid var(--teal);
  border-radius: 6px; min-width: 0;
}
.privacy-note p { font-size: 0.82rem; line-height: 1.75; color: var(--text-mid); }
.privacy-note a { color: var(--teal); text-decoration: none; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  border: 1.5px solid var(--border); padding: 2.5rem 2rem; position: relative;
  border-radius: 6px; text-align: center; background: var(--white);
  box-shadow: var(--shadow-sm); transition: all 0.3s; min-width: 0;
}
.pricing-card.featured { border-color: var(--teal); box-shadow: var(--shadow-md); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.28rem 0.9rem; border-radius: 20px; font-weight: 500; white-space: nowrap;
}
.pricing-tier { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; font-weight: 500; }
.pricing-price { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; color: var(--navy); margin-bottom: 0.2rem; }
.pricing-from { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 1.8rem; }
.pricing-feats { list-style: none; text-align: left; margin-bottom: 2rem; display: grid; gap: 0.75rem; }
.pricing-feats li { font-size: 0.82rem; color: var(--text-mid); display: flex; gap: 0.75rem; align-items: flex-start; }
.pricing-feats li::before { content: '✓'; color: var(--teal); flex-shrink: 0; font-weight: 500; margin-top: 0.05em; }
.pricing-note {
  background: var(--off-white); padding: 2rem; border: 1px solid var(--border-soft);
  border-radius: 6px; margin-top: 2rem; border-left: 3px solid var(--teal);
}
.pricing-note h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--navy); }
.pricing-note p { font-size: 0.87rem; line-height: 1.85; color: var(--text-mid); }
.finance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.finance-card {
  padding: 1.8rem; border: 1px solid var(--border-soft); border-radius: 6px;
  background: var(--white); box-shadow: var(--shadow-sm); border-top: 3px solid var(--teal); min-width: 0;
}
.finance-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.7rem; color: var(--navy); }
.finance-text { font-size: 0.83rem; line-height: 1.75; color: var(--text-mid); }

/* RECOVERY TIMELINE */
.timeline { margin-top: 3.5rem; position: relative; padding-left: 0; }
.timeline::before { content: ''; position: absolute; left: 1.9rem; top: 0; bottom: 0; width: 1.5px; background: var(--border); }
.timeline-item { padding: 0 0 3rem 5.5rem; position: relative; min-width: 0; }
.timeline-dot {
  position: absolute; left: 0; top: 0; width: 3.8rem; height: 3.8rem;
  border: 1.5px solid var(--teal); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-family: var(--serif);
  font-size: 0.95rem; font-weight: 400; color: var(--teal);
  background: var(--off-white); box-shadow: 0 0 0 4px var(--off-white); flex-shrink: 0;
}
.timeline-week { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; font-weight: 500; }
.timeline-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--navy); }
.timeline-text { font-size: 0.86rem; line-height: 1.85; color: var(--text-mid); max-width: 620px; }
.timeline-tips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tip-pill {
  font-size: 0.7rem; padding: 0.3rem 0.8rem; border: 1px solid var(--teal);
  color: var(--teal); border-radius: 20px; background: var(--teal-pale);
}
.recovery-tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
.recovery-tip-card {
  padding: 2rem; border: 1px solid var(--border-soft); border-radius: 6px;
  background: var(--white); box-shadow: var(--shadow-sm); min-width: 0;
}
.rtc-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.rtc-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.7rem; color: var(--navy); }
.rtc-text { font-size: 0.83rem; line-height: 1.75; color: var(--text-mid); }

/* WHY REVISION PAGE */
.why-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.signs-list { display: grid; gap: 0.9rem; }
.sign-item {
  padding: 1.2rem 1.5rem; border-left: 3px solid var(--teal);
  background: var(--white); border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-sm); border-top: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); min-width: 0;
}
.sign-title { font-size: 0.87rem; margin-bottom: 0.35rem; font-weight: 500; color: var(--navy); }
.sign-text { font-size: 0.8rem; line-height: 1.7; color: var(--text-mid); }
.candidate-checklist { display: grid; }
.check-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--border-soft); min-width: 0; }
.check-box {
  width: 1.3rem; height: 1.3rem; border: 1.5px solid var(--teal); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--teal); background: var(--teal-pale); border-radius: 2px; margin-top: 2px;
}
.check-text { font-size: 0.85rem; line-height: 1.7; color: var(--text-mid); min-width: 0; }
.check-text strong { color: var(--navy); font-weight: 500; }
.candidate-box {
  margin-top: 2rem; padding: 2rem; background: var(--teal-faint);
  border: 1.5px solid var(--teal); border-radius: 6px; min-width: 0;
}
.candidate-box p { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; line-height: 1.5; color: var(--navy); margin-bottom: 1.4rem; }

/* PRIVACY */
.privacy-content { max-width: 760px; }
.privacy-content h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin: 2.5rem 0 0.8rem; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.privacy-content h3 { font-size: 0.9rem; margin: 1.5rem 0 0.6rem; color: var(--navy); font-weight: 500; }
.privacy-content p { font-size: 0.87rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 0.9rem; }
.privacy-content ul { margin: 0 0 1rem 1.4rem; }
.privacy-content li { font-size: 0.86rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 0.3rem; }

/* FOOTER */
footer { background: var(--navy); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: #fff; display: block; margin-bottom: 0.9rem; text-decoration: none; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 260px; font-weight: 300; }
.footer-col h4 { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; display: grid; gap: 0.75rem; }
.footer-col li a { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; font-weight: 300; }
.footer-col li a:hover { color: #7ec8c8; }
.footer-bottom {
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: #7ec8c8; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 7rem 2rem 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { gap: 3rem; }
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16/9; max-height: 300px; }
  .why-content-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .finance-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
  .faq-cat-btn { width: auto; border-left: none; border-bottom: 2px solid var(--border); padding: 0.4rem 0.75rem; font-size: 0.72rem; }
  .recovery-tips-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  nav.scrolled { padding: 0.8rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.2rem; }
  .page-hero { padding: 6rem 1.2rem 3rem; }
  .hero-left { padding: 6rem 1.2rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .trust-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .pricing-grid { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
}