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

/* ===== CSS VARIABLES ===== */
:root {
  --green-deep: #1a3d2b;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --yellow: #f4c430;
  --yellow-warm: #e9b84a;
  --cream: #fdf8f0;
  --cream-dark: #f0e8d8;
  --coral: #e05c3a;
  --sand: #d4a96a;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --shadow: 0 4px 24px rgba(26,61,43,0.12);
  --shadow-lg: 0 12px 48px rgba(26,61,43,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,61,43,0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.7rem 2rem;
  box-shadow: var(--shadow);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--green-deep);
}
.nav-logo span { color: var(--yellow-warm); }
.nav-logo img { height: 38px; width: 38px; border-radius: 50%; }
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green-light); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green-deep); color: var(--white) !important;
  padding: 0.55rem 1.3rem; border-radius: 50px;
  font-size: 0.85rem !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-deep); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 600; font-family: 'Playfair Display', serif; color: var(--green-deep); }
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.8rem; cursor: pointer; color: var(--green-deep);
  background: none; border: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-primary {
  background: var(--green-deep); color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,61,43,0.25); }
.btn-secondary {
  background: transparent; color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-secondary:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow); color: var(--green-deep);
}
.btn-yellow:hover { background: var(--yellow-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,196,48,0.35); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ===== SECTION WRAPPERS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-mid);
  background: rgba(82,183,136,0.12);
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { color: var(--green-deep); margin-bottom: 1rem; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--green-deep);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(82,183,136,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(244,196,48,0.08) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.3);
  color: var(--yellow); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800; color: var(--yellow);
  display: block;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.hero-main-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.hero-main-card-icon { font-size: 3rem; margin-bottom: 1rem; }
.hero-main-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.3rem; }
.hero-main-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.hero-float-card {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; color: var(--green-deep);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { top: -1rem; right: -1.5rem; animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { bottom: -1rem; left: -1.5rem; animation-delay: 1s; }
.hero-float-card .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--yellow);
  padding: 1.2rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 600; color: var(--green-deep);
}

/* ===== FEARS SECTION ===== */
.fears-section { background: var(--white); }
.fears-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.fear-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(26,61,43,0.06);
}
.fear-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fear-icon {
  font-size: 2.4rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: rgba(82,183,136,0.1); border-radius: 14px;
}
.fear-card h3 { color: var(--green-deep); margin-bottom: 0.6rem; font-size: 1.1rem; }
.fear-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }
.fear-card .fear-answer {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(26,61,43,0.08);
  font-size: 0.85rem; font-weight: 600; color: var(--green-mid);
  display: flex; align-items: center; gap: 0.4rem;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--green-deep);
  position: relative; overflow: hidden;
}
.about-preview::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(82,183,136,0.1);
}
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic; color: var(--white);
  line-height: 1.5; margin-bottom: 1.5rem;
}
.about-quote-mark { color: var(--yellow); font-size: 3rem; line-height: 0; vertical-align: -0.5em; }
.about-desc { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.about-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.about-pillars { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 1rem;
}
.pillar-icon {
  font-size: 1.4rem; width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(244,196,48,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.pillar-title { font-weight: 700; color: var(--yellow); font-size: 0.95rem; }
.pillar-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

/* ===== FEATURED POSTS ===== */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.post-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,61,43,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-thumb {
  height: 200px; overflow: hidden;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.post-thumb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.post-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
}
.post-category {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--yellow); color: var(--green-deep);
  padding: 0.25rem 0.7rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.post-body { padding: 1.4rem; }
.post-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.6rem; }
.post-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--green-deep); line-height: 1.35; }
.post-body p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.post-read {
  font-size: 0.82rem; font-weight: 700; color: var(--green-mid);
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.post-card:hover .post-read { gap: 0.6rem; }

/* ===== FREE GUIDE CTA ===== */
.guide-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
}
.guide-section::after {
  content: '🇧🇷';
  position: absolute; right: -2rem; bottom: -3rem;
  font-size: 14rem; opacity: 0.04; line-height: 1;
}
.guide-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.guide-text h2 { color: var(--white); margin-bottom: 1rem; }
.guide-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.guide-includes { display: flex; flex-direction: column; gap: 0.6rem; }
.guide-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.guide-item::before {
  content: '✓'; font-weight: 800; color: var(--yellow);
  font-size: 1rem; flex-shrink: 0;
}
.guide-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.guide-form-box h3 { color: var(--green-deep); margin-bottom: 0.4rem; font-size: 1.2rem; }
.guide-form-box p { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group input {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(26,61,43,0.15); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  background: var(--cream); color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(82,183,136,0.12); }
.form-group input::placeholder { color: var(--text-light); }
.form-disclaimer { font-size: 0.75rem; color: var(--text-light); margin-top: 0.8rem; text-align: center; }

/* ===== SOCIAL PROOF ===== */
.social-section { background: var(--cream-dark); }
.social-grid {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2.5rem;
}
.social-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; max-width: 320px;
  border: 1px solid rgba(26,61,43,0.06);
  flex: 1; min-width: 260px;
}
.social-stars { color: var(--yellow-warm); font-size: 1rem; margin-bottom: 0.8rem; }
.social-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.social-author { display: flex; align-items: center; gap: 0.7rem; }
.social-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.social-name { font-size: 0.85rem; font-weight: 700; color: var(--green-deep); }
.social-country { font-size: 0.75rem; color: var(--text-light); }

/* ===== FOOTER ===== */
footer {
  background: #0f2419;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--yellow); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--green-mid); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--yellow); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--green-deep);
  padding: 140px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(82,183,136,0.12) 0%, transparent 65%);
}
.page-header .section-tag { background: rgba(244,196,48,0.15); color: var(--yellow); }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 0.8rem; }

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid rgba(26,61,43,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-featured-thumb {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
  min-height: 300px;
}
.blog-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; }
.blog-cat-btn {
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(26,61,43,0.15);
  background: var(--white); color: var(--text-mid);
  transition: all 0.2s;
}
.blog-cat-btn.active, .blog-cat-btn:hover {
  background: var(--green-deep); color: var(--white); border-color: var(--green-deep);
}

/* ===== ABOUT PAGE ===== */
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-photo-box {
  background: var(--green-mid);
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative;
}
.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.85), transparent);
  padding: 1.5rem;
}
.about-photo-overlay p { color: var(--white); font-weight: 600; font-size: 1rem; }
.about-photo-overlay span { color: var(--yellow); font-size: 0.85rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-value {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(26,61,43,0.06);
}
.about-value-icon {
  font-size: 1.5rem; width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(82,183,136,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-value h4 { font-size: 0.95rem; color: var(--green-deep); margin-bottom: 0.2rem; }
.about-value p { font-size: 0.85rem; color: var(--text-mid); }

/* ===== START HERE PAGE ===== */
.timeline { margin-top: 3rem; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 28px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--yellow));
}
.timeline-item {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 2.5rem; position: relative;
}
.timeline-num {
  width: 58px; height: 58px; flex-shrink: 0;
  background: var(--green-deep); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800;
  border: 3px solid var(--cream); position: relative; z-index: 1;
}
.timeline-body {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem 2rem; flex: 1;
  border: 1px solid rgba(26,61,43,0.06);
}
.timeline-body h3 { color: var(--green-deep); margin-bottom: 0.5rem; }
.timeline-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(26,61,43,0.06);
}
.contact-icon {
  font-size: 1.4rem; width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(82,183,136,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.85rem; color: var(--text-mid); }
.contact-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid rgba(26,61,43,0.06);
}
.contact-form-box h3 { color: var(--green-deep); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.4rem; }
.form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(26,61,43,0.15); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  background: var(--cream); color: var(--text-dark);
  transition: border-color 0.2s; outline: none; resize: vertical; min-height: 120px;
}
.form-group textarea:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(82,183,136,0.12); }
.form-group select {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(26,61,43,0.15); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  background: var(--cream); color: var(--text-dark);
  transition: border-color 0.2s; outline: none; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 3rem 0; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .fears-grid { grid-template-columns: 1fr; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .guide-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { min-height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .social-grid { flex-direction: column; align-items: center; }
}
