/* ================================================
   GutVitali — Master Stylesheet
   Mobile-first · Premium Health Brand
   ================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --green-deep: #1B6B3A;
  --green-mid: #2D8F4E;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --gold: #C8A83E;
  --gold-light: #E8D48B;
  --gold-dark: #9A7F2E;
  --cream: #FDFAF3;
  --white: #FFFFFF;
  --text-dark: #1A2E1A;
  --text-body: #3D4F3D;
  --text-muted: #6B7B6B;
  --shadow-sm: 0 2px 8px rgba(27,107,58,0.08);
  --shadow-md: 0 8px 32px rgba(27,107,58,0.12);
  --shadow-lg: 0 16px 48px rgba(27,107,58,0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}
h1,h2,h3,h4 { font-family:var(--font-display); color:var(--text-dark); line-height:1.2; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { font-family:var(--font-body); }

/* ---------- STICKY NAV ---------- */
.top-bar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding:0 16px; height:60px;
  display:flex; align-items:center; justify-content:space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.logo-text {
  font-family:var(--font-display);
  font-size:1.4rem; color:var(--white);
  display:flex; align-items:center; gap:6px;
}
.logo-icon {
  width:32px; height:32px;
  background:rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.top-bar nav { display:flex; gap:4px; align-items:center; }
.top-bar nav a {
  color:rgba(255,255,255,0.85);
  font-size:0.7rem; font-weight:600;
  padding:6px 8px; border-radius:20px;
  transition:all 0.3s;
  text-transform:uppercase; letter-spacing:0.3px;
}
.top-bar nav a:hover { background:rgba(255,255,255,0.15); color:#fff; }
.nav-cta {
  background:var(--gold)!important; color:var(--text-dark)!important;
  font-weight:700!important;
  box-shadow:0 2px 12px rgba(200,168,62,0.4);
}

/* Hamburger */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--white); margin:5px 0; border-radius:2px;
  transition:all 0.3s;
}
.mobile-nav {
  display:none; position:fixed; top:60px; left:0; right:0;
  background:var(--green-deep);
  padding:16px 20px;
  flex-direction:column; gap:8px; z-index:999;
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  color:rgba(255,255,255,0.9); font-size:0.9rem; font-weight:600;
  padding:12px 16px; border-radius:var(--radius-sm);
  transition:background 0.3s;
}
.mobile-nav a:hover { background:rgba(255,255,255,0.1); }

@media(max-width:639px){
  .top-bar nav { display:none; }
  .hamburger { display:block; }
}
@media(min-width:640px){ .hamburger,.mobile-nav { display:none!important; } }

/* ---------- CTA BUTTON ---------- */
.cta-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(135deg,var(--gold),#D4B44A,var(--gold));
  background-size:200% 200%;
  color:var(--text-dark);
  font-size:1.05rem; font-weight:800;
  padding:16px 36px; border-radius:60px;
  border:none; cursor:pointer;
  box-shadow:0 6px 24px rgba(200,168,62,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition:all 0.3s; animation:shimmer 3s ease infinite;
  text-transform:uppercase; letter-spacing:1px;
}
.cta-btn:hover { transform:translateY(-2px); box-shadow:0 10px 36px rgba(200,168,62,0.5); }
.cta-btn:active { transform:translateY(0); }
.cta-btn .arrow { font-size:1.2rem; transition:transform 0.3s; }
.cta-btn:hover .arrow { transform:translateX(4px); }
.cta-sub { color:rgba(255,255,255,0.5); font-size:0.72rem; margin-top:10px; }

/* ---------- HERO ---------- */
.hero {
  position:relative;
  background:linear-gradient(170deg,var(--green-deep),#0D4A23 50%,#0A3319);
  padding:48px 20px 40px; text-align:center; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(76,175,80,0.15),transparent 70%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0; height:60px;
  background:var(--cream); clip-path:ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(200,168,62,0.15); border:1px solid rgba(200,168,62,0.3);
  color:var(--gold-light); font-size:0.75rem; font-weight:700;
  padding:6px 16px; border-radius:50px;
  margin-bottom:20px; letter-spacing:1px; text-transform:uppercase;
  animation:fadeSlideDown 0.8s ease;
}
.hero h1 { color:var(--white); font-size:2.2rem; margin-bottom:16px; animation:fadeSlideDown 0.8s ease 0.1s both; }
.hero h1 span { color:var(--gold-light); }
.hero-sub { color:rgba(255,255,255,0.8); font-size:1rem; max-width:500px; margin:0 auto 28px; animation:fadeSlideDown 0.8s ease 0.2s both; }
.hero-img-wrap {
  position:relative; max-width:320px; margin:0 auto 28px;
  animation:floatUp 0.8s ease 0.3s both;
}
.hero-img-wrap img { filter:drop-shadow(0 20px 40px rgba(0,0,0,0.3)); transition:transform 0.5s; }
.hero-img-wrap:hover img { transform:scale(1.03); }
.hero-trust-row {
  display:flex; justify-content:center; gap:20px; flex-wrap:wrap;
  margin-bottom:24px; animation:fadeSlideDown 0.8s ease 0.4s both;
}
.trust-item { display:flex; align-items:center; gap:6px; color:rgba(255,255,255,0.7); font-size:0.78rem; font-weight:600; }
.trust-item .icon {
  width:28px; height:28px; background:rgba(76,175,80,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:14px;
}

/* ---------- BADGES ROW ---------- */
.badges-section {
  background:var(--white); padding:28px 20px;
  display:flex; justify-content:center; gap:24px; flex-wrap:wrap;
  border-bottom:1px solid rgba(27,107,58,0.06);
}
.badge-item {
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-size:0.68rem; font-weight:700; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:0.5px;
}
.badge-item .b-icon {
  width:44px; height:44px; background:var(--green-pale); border-radius:12px;
  display:flex; align-items:center; justify-content:center; font-size:20px;
}

/* ---------- SECTIONS SHARED ---------- */
section { padding:56px 20px; }
.section-label {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.7rem; font-weight:700; text-transform:uppercase;
  letter-spacing:2px; color:var(--green-mid); margin-bottom:12px;
}
.section-title { font-size:1.8rem; margin-bottom:16px; }
.section-desc { color:var(--text-muted); font-size:0.95rem; max-width:600px; margin:0 auto 36px; }

/* ---------- ABOUT ---------- */
.about-section { background:var(--white); text-align:center; }
.about-img {
  max-width:280px; margin:0 auto 28px; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-lg);
}
.about-img img { transition:transform 0.5s; }
.about-img:hover img { transform:scale(1.03); }
.about-text p { margin-bottom:16px; text-align:left; }
.inline-link { color:var(--green-mid); font-weight:600; border-bottom:1px dashed var(--green-mid); transition:color 0.3s; }
.inline-link:hover { color:var(--green-deep); }

/* ---------- BENEFITS ---------- */
.benefits-section { background:var(--cream); text-align:center; }
.benefits-grid { display:grid; grid-template-columns:1fr; gap:16px; max-width:600px; margin:0 auto; }
.benefit-card {
  background:var(--white); border:1px solid rgba(27,107,58,0.06);
  border-radius:var(--radius-md); padding:24px 20px;
  text-align:left; display:flex; gap:16px; align-items:flex-start;
  transition:all 0.3s; box-shadow:var(--shadow-sm);
}
.benefit-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(76,175,80,0.2); }
.benefit-icon {
  min-width:48px; height:48px;
  background:linear-gradient(135deg,var(--green-pale),#D4EDDA); border-radius:14px;
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.benefit-card h4 { font-size:1rem; margin-bottom:6px; font-family:var(--font-body); font-weight:700; }
.benefit-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.5; }

/* ---------- INGREDIENTS ---------- */
.ingredients-section {
  background:linear-gradient(170deg,var(--green-deep),#0A3319);
  color:var(--white); text-align:center;
}
.ingredients-section .section-label { color:var(--gold-light); }
.ingredients-section .section-title { color:var(--white); }
.ingredients-section .section-desc { color:rgba(255,255,255,0.65); }
.ingredients-grid { display:grid; grid-template-columns:1fr; gap:12px; max-width:600px; margin:0 auto; }
.ingredient-card {
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-sm); padding:20px;
  text-align:left; display:flex; gap:14px; align-items:flex-start;
  transition:all 0.3s; backdrop-filter:blur(4px);
}
.ingredient-card:hover { background:rgba(255,255,255,0.1); border-color:rgba(200,168,62,0.3); transform:translateY(-2px); }
.ing-num {
  min-width:36px; height:36px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; font-weight:800; color:var(--text-dark);
}
.ingredient-card h4 { color:var(--white); font-size:0.95rem; font-family:var(--font-body); font-weight:700; margin-bottom:4px; }
.ingredient-card h4 a { color:var(--gold-light); border-bottom:1px dashed rgba(200,168,62,0.4); transition:border-color 0.3s; }
.ingredient-card h4 a:hover { border-color:var(--gold-light); }
.ingredient-card p { font-size:0.82rem; color:rgba(255,255,255,0.6); line-height:1.5; }

/* ---------- HOW IT WORKS ---------- */
.how-section { background:var(--white); text-align:center; }
.steps { max-width:600px; margin:0 auto; display:flex; flex-direction:column; position:relative; }
.steps::before {
  content:''; position:absolute; left:27px; top:44px; bottom:44px; width:2px;
  background:linear-gradient(to bottom,var(--green-light),var(--gold));
}
.step { display:flex; gap:20px; align-items:flex-start; text-align:left; padding:20px 0; position:relative; }
.step-num {
  min-width:56px; height:56px;
  background:linear-gradient(135deg,var(--green-mid),var(--green-deep)); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.2rem; color:var(--white);
  box-shadow:0 4px 16px rgba(27,107,58,0.2); position:relative; z-index:1;
}
.step h4 { font-size:1.05rem; margin-bottom:6px; font-family:var(--font-body); font-weight:700; }
.step p { font-size:0.88rem; color:var(--text-muted); }

/* ---------- PRICING ---------- */
.pricing-section { background:linear-gradient(170deg,#F7F2E4,var(--cream)); text-align:center; }
.pricing-grid { display:grid; grid-template-columns:1fr; gap:16px; max-width:380px; margin:0 auto; }
.price-card {
  background:var(--white); border:2px solid rgba(27,107,58,0.08);
  border-radius:var(--radius-md); padding:28px 20px; position:relative;
  transition:all 0.3s; box-shadow:var(--shadow-sm);
}
.price-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.price-card.popular { border-color:var(--gold); box-shadow:var(--shadow-lg),0 0 0 1px var(--gold); }
.popular-tag {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--text-dark); font-size:0.68rem; font-weight:800;
  padding:4px 18px; border-radius:20px; text-transform:uppercase; letter-spacing:1px;
}
.price-card .bottles { font-size:0.82rem; color:var(--text-muted); font-weight:600; margin-bottom:4px; text-transform:uppercase; letter-spacing:1px; }
.price-card .supply { font-family:var(--font-display); font-size:1.15rem; color:var(--text-dark); margin-bottom:12px; }
.price-row { display:flex; align-items:baseline; justify-content:center; gap:8px; margin-bottom:6px; }
.old-price { font-size:1rem; color:var(--text-muted); text-decoration:line-through; }
.price { font-size:2.4rem; font-weight:800; color:var(--green-deep); }
.per { font-size:0.82rem; color:var(--text-muted); }
.shipping { font-size:0.78rem; color:var(--green-mid); font-weight:600; margin-bottom:16px; }
.price-img { max-width:160px; margin:0 auto 16px; }
.price-card .cta-btn { width:100%; font-size:0.92rem; padding:14px 20px; }

/* ---------- GUARANTEE ---------- */
.guarantee-section { background:var(--white); text-align:center; }
.guarantee-box {
  max-width:500px; margin:0 auto;
  background:linear-gradient(135deg,#FFF9E6,#FFFDF5);
  border:2px solid var(--gold-light); border-radius:var(--radius-lg);
  padding:36px 24px; box-shadow:var(--shadow-md);
}
.guarantee-box img { width:100px; margin:0 auto 20px; }
.guarantee-box h3 { font-size:1.4rem; margin-bottom:12px; }
.guarantee-box p { font-size:0.9rem; color:var(--text-muted); }

/* ---------- REVIEWS ---------- */
.reviews-section { background:var(--cream); text-align:center; }
.reviews-grid { display:grid; grid-template-columns:1fr; gap:16px; max-width:600px; margin:0 auto; }
.review-card {
  background:var(--white); border:1px solid rgba(27,107,58,0.06);
  border-radius:var(--radius-md); padding:24px 20px; text-align:left;
  box-shadow:var(--shadow-sm); transition:all 0.3s;
}
.review-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.review-stars { color:#F4B400; font-size:1rem; margin-bottom:10px; letter-spacing:2px; }
.review-card p { font-size:0.9rem; color:var(--text-body); margin-bottom:12px; font-style:italic; }
.reviewer { display:flex; align-items:center; gap:10px; }
.reviewer-avatar {
  width:40px; height:40px; background:linear-gradient(135deg,var(--green-pale),#C8E6C9);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:0.85rem; color:var(--green-deep);
}
.reviewer-info .name { font-weight:700; font-size:0.85rem; color:var(--text-dark); }
.reviewer-info .loc { font-size:0.75rem; color:var(--text-muted); }
.verified { display:inline-flex; align-items:center; gap:4px; font-size:0.72rem; color:var(--green-mid); font-weight:600; margin-top:2px; }

/* ---------- FAQ ---------- */
.faq-section { background:var(--white); text-align:center; }
.faq-list { max-width:600px; margin:0 auto; }
.faq-item { border-bottom:1px solid rgba(27,107,58,0.08); text-align:left; }
.faq-q {
  width:100%; background:none; border:none; cursor:pointer;
  font-size:0.95rem; font-weight:700; color:var(--text-dark);
  padding:18px 40px 18px 0; text-align:left; position:relative; transition:color 0.3s;
}
.faq-q::after {
  content:'+'; position:absolute; right:0; top:50%; transform:translateY(-50%);
  font-size:1.4rem; color:var(--green-mid); transition:transform 0.3s;
}
.faq-item.open .faq-q::after { content:'−'; }
.faq-q:hover { color:var(--green-mid); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height 0.4s ease,padding 0.3s;
  font-size:0.88rem; color:var(--text-muted); line-height:1.6;
}
.faq-item.open .faq-a { max-height:300px; padding-bottom:18px; }
.faq-a a { color:var(--green-mid); font-weight:600; border-bottom:1px dashed var(--green-mid); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background:linear-gradient(170deg,var(--green-deep),#0A3319);
  text-align:center; padding:56px 20px; position:relative; overflow:hidden;
}
.final-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 100%,rgba(200,168,62,0.1),transparent 60%);
}
.final-cta h2 { color:var(--white); font-size:1.8rem; margin-bottom:12px; position:relative; z-index:1; }
.final-cta h2 span { color:var(--gold-light); }
.final-cta p { color:rgba(255,255,255,0.7); margin-bottom:28px; position:relative; z-index:1; }
.final-cta .cta-btn { position:relative; z-index:1; }
.final-cta .cta-sub { color:rgba(255,255,255,0.4); }

/* ---------- FOOTER ---------- */
footer {
  background:#0A1F0F; color:rgba(255,255,255,0.5);
  padding:36px 20px 24px; text-align:center; font-size:0.75rem; line-height:1.8;
}
footer a { color:rgba(255,255,255,0.6); border-bottom:1px solid rgba(255,255,255,0.15); transition:color 0.3s; }
footer a:hover { color:var(--gold-light); }
.footer-links { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:16px; }
.footer-links a { font-weight:600; font-size:0.78rem; }
.fda-disclaimer {
  max-width:600px; margin:16px auto 0; padding:16px;
  background:rgba(255,255,255,0.03); border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,0.05); font-size:0.7rem; color:rgba(255,255,255,0.35);
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position:fixed; bottom:0; left:0; right:0; z-index:999;
  background:rgba(10,26,15,0.95); backdrop-filter:blur(12px);
  padding:12px 16px; display:flex; align-items:center; justify-content:center; gap:12px;
  box-shadow:0 -4px 20px rgba(0,0,0,0.2);
  transform:translateY(100%); transition:transform 0.4s ease;
}
.floating-cta.visible { transform:translateY(0); }
.floating-cta .fc-text { color:rgba(255,255,255,0.7); font-size:0.75rem; font-weight:600; }
.floating-cta .fc-text strong { color:var(--white); }
.floating-cta .cta-btn { padding:12px 24px; font-size:0.85rem; animation:none; }

/* ---------- BLOG / LEGAL PAGES ---------- */
.page-header {
  background:linear-gradient(170deg,var(--green-deep),#0D4A23);
  padding:40px 20px; text-align:center;
}
.page-header h1 { color:var(--white); font-size:1.8rem; }
.page-header p { color:rgba(255,255,255,0.7); font-size:0.9rem; margin-top:8px; }
.page-content {
  max-width:720px; margin:0 auto; padding:40px 20px;
  background:var(--white); min-height:60vh;
}
.page-content h2 { font-size:1.4rem; margin:32px 0 12px; color:var(--text-dark); }
.page-content h3 { font-size:1.15rem; margin:24px 0 8px; color:var(--text-dark); }
.page-content p { margin-bottom:16px; font-size:0.92rem; line-height:1.8; }
.page-content ul,.page-content ol { margin:0 0 16px 20px; }
.page-content li { margin-bottom:8px; font-size:0.92rem; line-height:1.7; }
.page-content a { color:var(--green-mid); font-weight:600; border-bottom:1px dashed var(--green-mid); }
.page-content a:hover { color:var(--green-deep); }
.page-content blockquote {
  border-left:4px solid var(--gold); padding:16px 20px; margin:24px 0;
  background:#FFFCF0; border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-style:italic; color:var(--text-muted);
}
.page-content .blog-meta {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  padding-bottom:20px; margin-bottom:24px;
  border-bottom:1px solid rgba(27,107,58,0.08);
  font-size:0.82rem; color:var(--text-muted);
}
.page-content .blog-meta span { display:flex; align-items:center; gap:4px; }
.blog-cta-box {
  background:linear-gradient(135deg,var(--green-pale),#D4EDDA);
  border:2px solid rgba(76,175,80,0.2); border-radius:var(--radius-md);
  padding:28px 24px; text-align:center; margin:32px 0;
}
.blog-cta-box h3 { font-size:1.2rem; margin-bottom:8px; font-family:var(--font-body); font-weight:700; }
.blog-cta-box p { font-size:0.88rem; color:var(--text-muted); margin-bottom:16px; }
.blog-cta-box .cta-btn { font-size:0.9rem; padding:12px 28px; }

/* Blog listing */
.blog-grid { display:grid; grid-template-columns:1fr; gap:20px; max-width:720px; margin:0 auto; padding:40px 20px; }
.blog-card {
  background:var(--white); border:1px solid rgba(27,107,58,0.06);
  border-radius:var(--radius-md); padding:24px; transition:all 0.3s; box-shadow:var(--shadow-sm);
}
.blog-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.blog-card .tag {
  display:inline-block; background:var(--green-pale); color:var(--green-deep);
  font-size:0.7rem; font-weight:700; padding:3px 10px; border-radius:20px;
  text-transform:uppercase; letter-spacing:0.5px; margin-bottom:10px;
}
.blog-card h3 { font-size:1.1rem; margin-bottom:8px; }
.blog-card h3 a { transition:color 0.3s; }
.blog-card h3 a:hover { color:var(--green-mid); }
.blog-card p { font-size:0.85rem; color:var(--text-muted); margin-bottom:12px; }
.blog-card .read-more { color:var(--green-mid); font-weight:700; font-size:0.85rem; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes floatUp { from{opacity:0;transform:translateY(40px) scale(0.95)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
.animate-in { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.animate-in.visible { opacity:1; transform:translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media(min-width:640px){
  .hero h1 { font-size:2.8rem; }
  .hero-img-wrap { max-width:380px; }
  .benefits-grid,.ingredients-grid,.reviews-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:repeat(3,1fr); max-width:720px; }
  .section-title { font-size:2.2rem; }
  .blog-grid { grid-template-columns:1fr 1fr; }
}
@media(min-width:1024px){
  .top-bar { padding:0 40px; height:64px; }
  .top-bar nav a { font-size:0.8rem; padding:8px 16px; }
  section { padding:72px 40px; }
  .hero { padding:72px 40px 56px; }
  .hero h1 { font-size:3.2rem; }
  .section-title { font-size:2.6rem; }
  .floating-cta { display:none; }
  body.home-page { padding-bottom:0; }
}

/* Mobile bottom padding for floating CTA */
body.home-page { padding-bottom:72px; }
