/* ============================================
   SYNERGY LIVING — Main Stylesheet
   ============================================ */

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

/* ==================== CSS Variables ==================== */
:root {
  --primary:        #5B9CC4;
  --primary-light:  #D6EAF5;
  --primary-dark:   #3D7DA8;
  --secondary:      #7BAE8C;
  --secondary-light:#D4ECD9;
  --secondary-dark: #4E8A62;
  --accent:         #C9915A;
  --accent-light:   #F5DEC5;
  --bg:             #FAF8F4;
  --bg-alt:         #F2EDE4;
  --white:          #FFFFFF;
  --text:           #2A3540;
  --text-muted:     #6B7C8A;
  --text-light:     #A0B0BC;
  --border:         #E0D8CC;
  --nav-h:          70px;
  --shadow-sm:      0 2px 12px rgba(42,53,64,.06);
  --shadow:         0 4px 24px rgba(42,53,64,.10);
  --shadow-lg:      0 8px 40px rgba(42,53,64,.14);
  --r:              12px;
  --r-lg:           20px;
  --r-xl:           32px;
  --t:              all 0.3s ease;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==================== Typography ==================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text-muted); }
.lead { font-size: 1.15rem; line-height: 1.8; }

/* ==================== Utilities ==================== */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.section      { padding: 90px 0; }
.section-alt    { background: var(--bg-alt); }
.section-white  { background: var(--white); }
.section-primary{ background: var(--primary-light); }
.text-center  { text-align: center; }
.mt-8  { margin-top:  8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }  .mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px; display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px; margin: 20px auto 0;
}
.eyebrow {
  font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 12px;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .95rem; transition: var(--t); letter-spacing: .02em;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(91,156,196,.35);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91,156,196,.45);
}
.btn-secondary {
  background: var(--secondary); color: var(--white);
  box-shadow: 0 4px 16px rgba(123,174,140,.35);
}
.btn-secondary:hover {
  background: var(--secondary-dark); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,174,140,.45);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.18); color: var(--white);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.32); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 16px rgba(201,145,90,.35);
}
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ==================== Navbar ==================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000; transition: var(--t); padding: 0 24px;
}
.navbar.scrolled, .navbar.dark-nav {
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--text);
}
.nav-logo .logo-text span { color: var(--primary); }

/* Transparent nav on hero */
.navbar:not(.scrolled):not(.dark-nav) .nav-logo .logo-text        { color: rgba(255,255,255,.95); }
.navbar:not(.scrolled):not(.dark-nav) .nav-logo .logo-text span   { color: rgba(255,255,255,.75); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: .9rem; padding: 8px 14px;
  border-radius: 8px; transition: var(--t); color: var(--text);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: var(--primary-light);
}
.navbar:not(.scrolled):not(.dark-nav) .nav-links a       { color: rgba(255,255,255,.9); }
.navbar:not(.scrolled):not(.dark-nav) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--t);
}
.navbar:not(.scrolled):not(.dark-nav) .nav-toggle span { background: #fff; }

/* ==================== Hero ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2F6E9E 0%, #5B9CC4 45%, #7BAE8C 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 100px;
}
.hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: rgba(255,255,255,.05); top: -200px; right: -200px;
}
.hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); bottom: -100px; left: -80px;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25); padding: 6px 18px;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.95); margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span {
  display: block; color: rgba(255,255,255,.78); font-size: .52em;
  font-weight: 400; font-style: italic; margin-top: 10px;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-desc em { color: #fff; font-style: italic; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.13); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-xl);
  padding: 36px; max-width: 360px; width: 100%;
}
.hero-card .quote {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  color: #fff; line-height: 1.65; font-style: italic; margin-bottom: 28px;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hero-stat {
  background: rgba(255,255,255,.1); border-radius: var(--r);
  padding: 16px; text-align: center;
}
.hero-stat .num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700; color: #fff;
}
.hero-stat .label { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 600; }

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ==================== Page Hero (inner pages) ==================== */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: linear-gradient(135deg, #2F6E9E 0%, #5B9CC4 50%, #7BAE8C 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,255,255,.05); top: -150px; right: -150px;
}
.page-hero::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(255,255,255,.04); bottom: -80px; left: -80px;
}
.page-hero h1   { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p    { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; line-height: 0; }
.page-hero-wave svg { display: block; width: 100%; }

/* ==================== Pillars ==================== */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); transition: var(--t); text-align: center;
  border: 1px solid var(--border);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 1.9rem;
}
.pillar-icon.blue  { background: var(--primary-light); }
.pillar-icon.green { background: var(--secondary-light); }
.pillar-icon.beige { background: var(--accent-light); }
.pillar-icon.purple{ background: #EDE2F7; }
.pillar-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.pillar-card p  { font-size: .95rem; }

/* ==================== Quote Banner ==================== */
.quote-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  padding: 80px 24px; text-align: center;
}
.quote-section blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 2rem);
  color: #fff; font-style: italic; max-width: 780px; margin: 0 auto 20px; line-height: 1.65;
}
.quote-section cite { color: rgba(255,255,255,.75); font-size: .95rem; font-weight: 600; font-style: normal; }

/* ==================== Philosophy / Split Section ==================== */
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.philosophy-grid.reverse { direction: rtl; }
.philosophy-grid.reverse > * { direction: ltr; }
.philosophy-content h2 { margin-bottom: 16px; }
.philosophy-content p  { margin-bottom: 18px; }
.philosophy-img {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: var(--r-xl); height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.philosophy-img .badge-card {
  position: absolute; bottom: 28px; right: 28px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.philosophy-img .badge-card .bc-label { font-size: .78rem; color: var(--text-light); font-weight: 600; margin-bottom: 3px; }
.philosophy-img .badge-card .bc-value { font-size: 1rem; font-weight: 700; color: var(--text); }

.values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.value-item  { display: flex; align-items: flex-start; gap: 14px; }
.value-dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0; margin-top: 2px;
}
.value-item h4 { font-size: 1rem; margin-bottom: 4px; }
.value-item p  { font-size: .9rem; }

/* ==================== Steps ==================== */
.steps { display: flex; flex-direction: column; gap: 22px; }
.step  { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.step-content h4 { margin-bottom: 5px; }
.step-content p  { font-size: .92rem; }

/* ==================== Cards ==================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--t); border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { height: 190px; overflow: hidden; }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.card-body  { padding: 28px; }
.card-tag   {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.card-tag.blue  { background: var(--primary-light); color: var(--primary-dark); }
.card-tag.green { background: var(--secondary-light); color: var(--secondary-dark); }
.card-tag.beige { background: var(--accent-light); color: var(--accent); }
.card-tag.purple{ background: #EDE2F7; color: #7B5AB4; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p  { font-size: .92rem; margin-bottom: 20px; }

/* ==================== Habit of Happiness (About) ==================== */
.hoh-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.hoh-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); transition: var(--t);
}
.hoh-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.hoh-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.hoh-card h4 { margin-bottom: 10px; }
.hoh-card p  { font-size: .92rem; }

/* ==================== Resource Cards ==================== */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 28px; }
.resource-card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm); transition: var(--t);
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.resource-cover {
  height: 150px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-bottom: 22px;
}
.resource-cover.c1 { background: linear-gradient(135deg, #C8E6F5, #96CAE6); }
.resource-cover.c2 { background: linear-gradient(135deg, #C4E8CD, #94CFA6); }
.resource-cover.c3 { background: linear-gradient(135deg, #F5DEC5, #ECC99A); }
.resource-cover.c4 { background: linear-gradient(135deg, #E8D5F5, #CCA8E8); }
.resource-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.resource-card p  { font-size: .9rem; flex: 1; margin-bottom: 22px; }
.resource-footer  { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.resource-price   { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); }
.resource-price sup { font-size: .85rem; vertical-align: super; font-weight: 600; }

/* ==================== Story Cards ==================== */
.story-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--t); border: 1px solid var(--border);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-header { padding: 30px 30px 0; display: flex; align-items: center; gap: 18px; }
.story-avatar {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0; font-weight: 700; color: #fff;
}
.story-avatar.a1 { background: linear-gradient(135deg, #5B9CC4, #3D7DA8); }
.story-avatar.a2 { background: linear-gradient(135deg, #7BAE8C, #4E8A62); }
.story-avatar.a3 { background: linear-gradient(135deg, #C9915A, #A06A30); }
.story-avatar.a4 { background: linear-gradient(135deg, #9B7FD4, #7050B4); }
.story-meta h3   { font-size: 1.15rem; margin-bottom: 3px; }
.story-meta p    { font-size: .85rem; }
.story-body      { padding: 20px 30px 30px; }
.story-quote {
  font-style: italic; font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--text); border-left: 3px solid var(--primary);
  padding-left: 16px; margin: 16px 0; line-height: 1.65;
}
.story-insights      { margin: 16px 0; }
.story-insights h4   { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 10px; }
.insight-list        { display: flex; flex-direction: column; gap: 7px; }
.insight-item        { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: var(--text-muted); }
.insight-item::before{ content: '✦'; color: var(--secondary); font-size: .65rem; margin-top: 5px; flex-shrink: 0; }

/* ==================== Newsletter Page ==================== */
.newsletter-box {
  background: var(--white); border-radius: var(--r-xl); padding: 56px 48px;
  box-shadow: var(--shadow); border: 1px solid var(--border); max-width: 680px; margin: 0 auto;
}
.newsletter-box h2 { margin-bottom: 12px; }
.newsletter-box .lead { margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 18px; border: 2px solid var(--border);
  border-radius: var(--r); font-family: 'Nunito', sans-serif; font-size: 1rem;
  color: var(--text); background: var(--bg); transition: var(--t); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--primary-light); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder { color: var(--text-light); }

.benefits-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.benefit-item  { display: flex; align-items: flex-start; gap: 12px; }
.benefit-icon  {
  width: 34px; height: 34px; border-radius: 50%; background: var(--secondary-light);
  display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0;
}
.benefit-item h4 { font-size: .95rem; margin-bottom: 2px; }
.benefit-item p  { font-size: .88rem; }

/* ==================== Newsletter CTA box ==================== */
.newsletter-cta {
  background: var(--bg-alt); border-radius: var(--r-xl); padding: 60px 40px;
  text-align: center; max-width: 700px; margin: 0 auto; border: 1px solid var(--border);
}
.newsletter-cta h2 { margin-bottom: 14px; }
.newsletter-cta p  { margin-bottom: 30px; }
.newsletter-form   { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 20px; border: 2px solid var(--border); border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: .95rem; background: var(--white);
  color: var(--text); transition: var(--t); outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-light); }

/* ==================== Issue Preview ==================== */
.issues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.issue-card {
  background: var(--white); border-radius: var(--r-lg); padding: 26px;
  border: 1px solid var(--border); transition: var(--t);
}
.issue-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.issue-num   { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 8px; }
.issue-card h4 { font-size: 1rem; margin-bottom: 8px; }
.issue-card p  { font-size: .88rem; }

/* ==================== Footer ==================== */
.footer { background: #1C2830; color: rgba(255,255,255,.68); padding: 72px 24px 30px; }
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 14px; display: block;
}
.footer-brand .logo-text span { color: #7AB8D4; }
.footer-brand p { font-size: .9rem; line-height: 1.75; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; transition: var(--t); color: rgba(255,255,255,.65);
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.58); transition: var(--t); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-newsletter p { font-size: .88rem; margin-bottom: 0; }
.footer-newsletter .form-row { display: flex; gap: 8px; margin-top: 14px; }
.footer-newsletter input {
  flex: 1; padding: 10px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
  color: #fff; font-family: 'Nunito', sans-serif; font-size: .88rem; outline: none; transition: var(--t);
}
.footer-newsletter input:focus { border-color: var(--primary); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter .btn { padding: 10px 16px; font-size: .85rem; border-radius: 8px; }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.38);
}

/* ==================== Toast ==================== */
.toast {
  position: fixed; bottom: 28px; right: 28px; background: #2A3540; color: #fff;
  padding: 14px 22px; border-radius: var(--r); font-size: .92rem; font-weight: 600;
  box-shadow: var(--shadow-lg); transform: translateY(100px); opacity: 0;
  transition: var(--t); z-index: 9999; display: flex; align-items: center; gap: 9px;
}
.toast.show    { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--secondary-dark); }

/* ==================== Animations ==================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float-anim { animation: float 5s ease-in-out infinite; }

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .22s; }
.reveal.delay-3 { transition-delay: .32s; }
.reveal.delay-4 { transition-delay: .42s; }

/* ==================== Responsive ==================== */
@media (max-width: 960px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-visual       { display: none; }
  .hero-btns         { justify-content: center; }
  .hero-desc         { max-width: 100%; }
  .pillars-grid      { grid-template-columns: 1fr 1fr; }
  .philosophy-grid   { grid-template-columns: 1fr; }
  .philosophy-img    { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .hoh-grid          { grid-template-columns: 1fr; }
  .newsletter-box    { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .section           { padding: 60px 0; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .cards-grid        { grid-template-columns: 1fr; }
  .resources-grid    { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .newsletter-form   { flex-direction: column; }
  .footer-bottom     { flex-direction: column; gap: 10px; text-align: center; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px 24px;
    box-shadow: var(--shadow); gap: 4px;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { padding: 12px 16px; font-size: 1rem; color: var(--text) !important; background: none !important; }
  .nav-links a:hover { background: var(--primary-light) !important; color: var(--primary) !important; }
  .nav-cta         { display: none; }
  .nav-toggle      { display: flex; }
  .newsletter-box  { padding: 30px 20px; }
  .hoh-grid        { grid-template-columns: 1fr; }
}
