/* ============================================================
   FEEL N HEAL — Main Stylesheet
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #4a4fa3;
  --brand-dark:  #3b3f8a;
  --brand-light: #d0d2ee;
  --brand-pale:  #f0f0f9;
  --ink:         #9399cc;
  --ink-mid:     #a8aed4;
  --ink-soft:    #b8bcda;
  --clay:        #3b3f8a;
  --warm-white:  #faf8f5;
  --white:       #ffffff;
  --black:       #111111;
  --border:      rgba(74,79,163,0.15);
  --wa-green:    #25D366;

  /* Type scale */
  --display:  64px;
  --h1:       48px;
  --h2:       40px;
  --h3:       32px;
  --h4:       24px;
  --h5:       20px;
  --body-lg:  18px;
  --body:     16px;
  --small:    14px;
  --caption:  12px;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--body);
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* ── Typography helpers ── */
.text-brand    { color: var(--brand); }
.text-black    { color: var(--black); }
.text-soft     { color: var(--ink-soft); }
.text-white    { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border-radius: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--small); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-brand  { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); box-shadow: 0 8px 24px rgba(74,79,163,.3); }

.btn-white  { background: #fff; color: var(--brand); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.18); }

.btn-ghost  { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--brand); }

.arrow-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.arrow-circle.dark { background: var(--brand-pale); color: var(--brand); }

/* ── Section tags & titles ── */
.section-tag {
  font-size: var(--caption); letter-spacing: .2em;
  text-transform: uppercase; color: var(--clay);
  font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-tag::before {
  content: ''; width: 1.5rem; height: 1.5px;
  background: var(--clay); display: inline-block;
}
.section-tag.light { color: rgba(255,255,255,.6); }
.section-tag.light::before { background: rgba(255,255,255,.4); }

.section-title {
  font-size: var(--h2); font-weight: 300; line-height: 1.15;
  letter-spacing: -.02em; margin-bottom: 1.25rem; color: var(--black);
}
.section-title em { font-style: italic; font-weight: 700; color: var(--brand); }
.section-title.light { color: #fff; }
.section-title.light em { color: rgba(255,255,255,.75); }

.section-body {
  font-size: var(--body-lg); font-weight: 400;
  color: var(--black); line-height: 1.85; margin-bottom: 1.25rem;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,245,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(74,79,163,.1); }

.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo-svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text { font-size: var(--h5); font-weight: 700; color: var(--brand); letter-spacing: -.01em; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: var(--caption); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--black); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--black);
  border-radius: 2px; transition: all .3s;
  display: block;
}

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 190; padding: 2rem 2rem;
  flex-direction: column; gap: .5rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: var(--body-lg); font-weight: 600;
  color: var(--black); padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: .04em; text-transform: uppercase;
}
.nav-mobile a:hover { color: var(--brand); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-top: 70px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/main-banner.png') center top/cover no-repeat;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 38%, rgba(20,20,50,.25) 65%, transparent 100%);
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 5rem 5.5rem;
  max-width: 760px;
}

.hero-trust {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 2rem;
  padding: .45rem 1rem .45rem .55rem; margin-bottom: 2rem;
}
.trust-avatars { display: flex; }
.trust-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--brand);
  margin-left: -8px;
}
.trust-av:first-child { margin-left: 0; }
.trust-star {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f5a623; display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-left: -8px; border: 2px solid rgba(255,255,255,.5);
}
.trust-text { font-size: var(--caption); font-weight: 600; color: #fff; letter-spacing: .04em; }

.hero-headline {
  font-size: var(--display); font-weight: 700;
  line-height: 1.05; color: #fff; letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero-headline span { font-weight: 300; font-style: italic; color: rgba(255,255,255,.8); }

.hero-sub {
  font-size: var(--body-lg); font-weight: 400;
  color: rgba(255,255,255,.75); max-width: 32rem;
  margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: var(--caption); letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.scroll-line { width: 1.5px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); }

/* ── ACHIEVEMENTS ── */
.achievements-section {
  background: var(--brand); padding: 5rem;
  position: relative; overflow: hidden;
}
.achievements-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.achievements-inner {
  display: grid; grid-template-columns: 1fr 3fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.achievements-heading {
  font-size: var(--h3); font-weight: 700; color: #fff;
  letter-spacing: -.02em; line-height: 1.15;
}
.achievements-heading em { font-style: italic; font-weight: 300; color: rgba(255,255,255,1); }
.achievements-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.achievement-item {
  padding: 2.5rem 2rem; border-left: 1px solid rgba(255,255,255,.1);
  transition: background .25s;
}
.achievement-item:first-child { border-left: none; }
.achievement-item:hover { background: rgba(255,255,255,.06); }
.achievement-num { font-size: var(--display); font-weight: 700; color: #fff; letter-spacing: -.04em; line-height: 1; margin-bottom: .4rem; }
.achievement-num span { font-size: var(--h3); font-weight: 300; opacity: .7; }
.achievement-label { font-size: var(--small); font-weight: 500; color: rgba(255,255,255,1); text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }
.achievement-sub { font-size: var(--caption); font-weight: 400; color: rgba(255,255,255,1); margin-top: .5rem; line-height: 1.5; }

/* ── ABOUT / INTRO ── */
.section-intro {
  padding: 7rem 5rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.intro-visual {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 4/5; background: var(--brand-pale);
}
.intro-img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--brand); color: #fff;
  padding: 1rem 1.5rem 1rem 1.25rem;
  border-radius: .75rem 0 0 .75rem;
  font-size: var(--small); font-weight: 600;
  box-shadow: 0 4px 16px rgba(74,79,163,.35); line-height: 1.4; max-width: 180px;
}

/* ── FOUNDER ── */
.founder-section { background: var(--white); padding: 7rem 5rem; }
.founder-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover; aspect-ratio: 3/4; display: block;
}
.founder-photo-bg {
  position: absolute; inset: 0; border-radius: var(--radius-xl);
  background: var(--brand-pale); z-index: -1;
  transform: translate(16px, 16px);
}
.founder-badge {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--brand); color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(74,79,163,.3);
}
.founder-badge-title { font-size: var(--small); font-weight: 700; color: #fff; }
.founder-badge-sub { font-size: var(--caption); color: rgba(255,255,255,.7); margin-top: 2px; }

.founder-content {}
.founder-name { font-size: var(--h2); font-weight: 700; color: var(--black); letter-spacing: -.025em; margin-bottom: .5rem; }
.founder-role {
  font-size: var(--body-lg); font-weight: 500; color: var(--brand);
  margin-bottom: 2rem; display: flex; align-items: center; gap: .75rem;
}
.founder-role::after { content: ''; flex: 1; height: 1.5px; background: var(--border); }

.founder-bio-para {
  font-size: var(--body); font-weight: 400; color: var(--black);
  line-height: 1.85; margin-bottom: 1.2rem;
}

.founder-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.75rem 0 2rem; }
.founder-tag {
  background: var(--brand-pale); color: var(--brand);
  font-size: var(--caption); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .45rem 1rem; border-radius: 2rem;
}

.founder-book {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--brand-pale); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; margin-top: 2rem;
  border: 1px solid var(--border);
}
.founder-book-icon { font-size: 2rem; flex-shrink: 0; }
.founder-book-title { font-size: var(--small); font-weight: 700; color: var(--black); }
.founder-book-sub { font-size: var(--caption); color: var(--ink-soft); margin-top: 2px; }

/* ── SERVICES ── */
.services-section { background: var(--warm-white); padding: 7rem 5rem; }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; gap: 2rem;
}
.services-header .section-title { max-width: 32rem; margin-bottom: 0; }
.services-link {
  font-size: var(--caption); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand);
  border-bottom: 1.5px solid var(--border); padding-bottom: 2px;
  transition: border-color .2s; white-space: nowrap; align-self: flex-end;
}
.services-link:hover { border-color: var(--brand); }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(74,79,163,.13); border-color: var(--brand); }

.service-card-top { padding: 2rem 2rem 1.5rem; }
.service-card-top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 1.25rem; }
.service-num-pill { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); font-size: var(--caption); font-weight: 700; color: var(--ink-mid); }
.service-name { font-size: var(--h4); font-weight: 700; color: var(--brand); margin-bottom: .75rem; line-height: 1.25; letter-spacing: -.02em; }
.service-desc { font-size: var(--small); font-weight: 400; color: var(--black); line-height: 1.8; }
.service-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; margin-top: auto; flex-shrink: 0; transition: transform .4s; }
.service-card:hover .service-card-img { transform: scale(1.03); }

/* ── PROJECTS ── */
.projects-section { background: var(--brand-pale); padding: 7rem 5rem; }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; }
.projects-header .section-title { max-width: 28rem; margin-bottom: 0; }

.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.project-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--brand-pale);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,79,163,.85) 0%, rgba(74,79,163,.15) 50%, transparent 80%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  transition: background .3s;
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(74,79,163,.92) 0%, rgba(74,79,163,.3) 60%, transparent 85%); }
.project-cat { font-size: var(--caption); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.project-title { font-size: var(--h4); font-weight: 700; color: #fff; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 1rem; }
.project-arrow { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: background .2s; }
.project-card:hover .project-arrow { background: rgba(255,255,255,.3); }

/* ── BLOG ── */
.blog-section { background: var(--brand-pale); padding: 7rem 5rem; }
.blog-header { text-align: center; margin-bottom: 4rem; }
.blog-header .section-title { font-size: var(--h1); font-weight: 700; color: var(--black); max-width: 600px; margin: 0 auto 1rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,79,163,.12); }
.blog-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 1.5rem 1.5rem 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.blog-cat { font-size: var(--caption); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color .2s; }
.blog-cat:hover { text-decoration-color: var(--brand); }
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); }
.blog-date { font-size: var(--caption); color: var(--ink-soft); font-weight: 500; }
.blog-title { font-size: var(--h4); font-weight: 700; color: var(--black); line-height: 1.25; letter-spacing: -.02em; margin-bottom: auto; flex: 1; }
.blog-footer { display: flex; justify-content: flex-end; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--border); }
.blog-arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-pale); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 14px; transition: background .2s, border-color .2s; }
.blog-arrow:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── WHY US ── */
.why-section { padding: 7rem 5rem; background: var(--brand-pale); }
.why-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.pillar-list { list-style: none; margin-top: 2rem; }
.pillar-item { padding: 1.5rem 0; border-top: 1px solid var(--border); display: flex; gap: 1.25rem; align-items: flex-start; }
.pillar-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: var(--caption); font-weight: 700; color: var(--brand); margin-top: .1rem; }
.pillar-text strong { display: block; font-size: var(--body-lg); font-weight: 600; color: var(--black); margin-bottom: .3rem; letter-spacing: -.01em; }
.pillar-text p { font-size: var(--body); font-weight: 400; color: var(--black); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 7rem 5rem; background: var(--white); }
.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-header .section-tag { justify-content: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: transform .2s, box-shadow .2s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(74,79,163,.1); }
.testi-quote { font-size: var(--h1); font-weight: 700; line-height: 1; color: var(--brand-light); margin-bottom: 1rem; display: block; letter-spacing: -.04em; }
.testi-body { font-size: var(--body); font-weight: 400; color: var(--black); line-height: 1.85; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testi-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: var(--caption); font-weight: 700; color: var(--brand); flex-shrink: 0; }
.testi-name { font-size: var(--small); font-weight: 600; color: var(--black); }
.testi-role { font-size: var(--caption); font-weight: 400; color: var(--ink-soft); margin-top: 1px; }

/* ── FAQ ── */
.faq-section { padding: 7rem 5rem; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.faq-list { margin-top: 2rem; }
.faq-item { border-top: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; font-family: 'Montserrat', sans-serif; font-size: var(--body-lg); font-weight: 500; color: var(--black); text-align: left; gap: 1rem; }
.faq-arrow { font-size: 1.4rem; font-weight: 300; color: var(--brand); transition: transform .25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { font-size: var(--body); color: var(--black); line-height: 1.85; padding-bottom: 1.5rem; }

/* ── CTA ── */
.cta-section { background: var(--brand); padding: 6rem 5rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(20,20,60,.3) 0%, transparent 70%); pointer-events: none; }
.cta-section .section-title { margin-bottom: 1rem; position: relative; }
.cta-section .section-body { max-width: 36rem; margin: 0 auto 2.5rem; color: rgba(255,255,255,.8); position: relative; }

/* ── PRIVACY PAGE ── */
.page-hero {
  background: var(--brand); padding: 10rem 5rem 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 110%, rgba(20,20,60,.3) 0%, transparent 70%); pointer-events: none; }
.page-hero-title { font-size: var(--h1); font-weight: 700; color: #fff; letter-spacing: -.025em; position: relative; }
.page-hero-sub { font-size: var(--body-lg); color: rgba(255,255,255,.75); margin-top: .75rem; position: relative; }

.privacy-content { max-width: 860px; margin: 0 auto; padding: 5rem 2rem 7rem; }
.privacy-intro { font-size: var(--body-lg); color: var(--black); line-height: 1.85; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.privacy-section { margin-bottom: 3rem; }
.privacy-section h2 { font-size: var(--h4); font-weight: 700; color: var(--brand); letter-spacing: -.02em; margin-bottom: 1rem; display: flex; align-items: center; gap: .75rem; }
.privacy-section h2::before { content: ''; width: 3px; height: 1.2em; background: var(--brand); border-radius: 2px; display: inline-block; flex-shrink: 0; }
.privacy-section h3 { font-size: var(--body-lg); font-weight: 600; color: var(--black); margin-bottom: .75rem; margin-top: 1.5rem; }
.privacy-section p { font-size: var(--body); color: var(--black); line-height: 1.85; margin-bottom: .75rem; }
.privacy-section ul { list-style: none; margin: .5rem 0 1rem 1rem; }
.privacy-section ul li { font-size: var(--body); color: var(--black); line-height: 1.75; margin-bottom: .4rem; padding-left: 1.25rem; position: relative; }
.privacy-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ── FOOTER ── */
footer { background: #0e1128; color: rgba(255,255,255,.55); padding: 4rem 5rem 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-row { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.footer-brand-text { font-size: var(--h5); font-weight: 700; color: #fff; }
.footer-brand p { font-size: var(--small); line-height: 1.8; max-width: 22rem; color: rgba(255,255,255,.5); }
.footer-col h4 { font-size: var(--caption); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 700; margin-bottom: 1.25rem; }
.footer-col a, .footer-col p { display: block; font-size: var(--small); color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: var(--caption); color: rgba(255,255,255,.3); letter-spacing: .02em; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { color: rgba(255,255,255,.35); font-size: var(--caption); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; transition: color .2s; }
.footer-social a:hover { color: var(--brand-light); }

/* ── MODAL ── */
.modal-backdrop { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(74,79,163,.35); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 1.5rem; }
.modal-backdrop.active { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-xl); padding: 3rem; width: 100%; max-width: 520px; position: relative; box-shadow: 0 24px 64px rgba(74,79,163,.22); animation: modalIn .3s cubic-bezier(.34,1.56,.64,1); max-height: 90vh; overflow-y: auto; }
@keyframes modalIn { from { opacity: 0; transform: scale(.92) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--brand-pale); border: none; cursor: pointer; width: 2rem; height: 2rem; border-radius: 50%; color: var(--brand); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background .2s; font-family: 'Montserrat', sans-serif; }
.modal-close:hover { background: var(--brand-light); }
.modal-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.modal-title { font-size: var(--h4); font-weight: 700; color: var(--brand); letter-spacing: -.02em; margin-bottom: .4rem; }
.modal-sub { font-size: var(--small); color: var(--black); margin-bottom: 2rem; line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: var(--caption); font-weight: 700; color: var(--black); letter-spacing: .08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { font-family: 'Montserrat', sans-serif; font-size: var(--small); color: var(--black); background: var(--warm-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .75rem 1rem; outline: none; transition: border-color .2s; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); background: var(--white); }
.modal-submit { background: var(--brand); color: #fff; border: none; border-radius: 2rem; padding: .9rem 2rem; font-family: 'Montserrat', sans-serif; font-size: var(--small); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; margin-top: .5rem; }
.modal-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.modal-note { font-size: var(--caption); color: var(--ink-soft); text-align: center; margin-top: .75rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
.wa-popup {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.15); padding: 1.25rem 1.5rem;
  max-width: 260px; opacity: 0; transform: translateY(10px) scale(.95);
  transition: all .3s cubic-bezier(.34,1.3,.64,1); pointer-events: none;
  border-left: 3px solid var(--wa-green);
}
.wa-popup.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-popup-title { font-size: var(--small); font-weight: 700; color: var(--black); margin-bottom: .35rem; }
.wa-popup-text { font-size: var(--caption); color: var(--ink-soft); line-height: 1.6; margin-bottom: 1rem; }
.wa-popup-btn {
  display: flex; align-items: center; gap: .5rem;
  background: var(--wa-green); color: #fff;
  padding: .6rem 1.1rem; border-radius: 2rem;
  font-size: var(--caption); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s;
}
.wa-popup-btn:hover { background: #1da851; }
.wa-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s;
  font-size: 24px;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ff4d4f; border: 2px solid #fff;
}

/* ── LOGO SVG shared ── */
.logo-svg { width: 34px; height: 34px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --display: 56px; --h1: 42px; --h2: 34px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --display: 44px; --h1: 36px; --h2: 28px; --h3: 24px; --h4: 20px; --h5: 18px; }
  .nav-links { display: none; }
  .nav > .btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 4rem 1.5rem 4rem; }
  .hero-scroll { right: 1.5rem; }
  .hero-headline { font-size: var(--h1); }
  .achievements-inner { grid-template-columns: 1fr; gap: 2rem; }
  .achievements-grid { grid-template-columns: repeat(2,1fr); }
  .achievement-item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .achievement-item:nth-child(odd) { border-left: none; }
  .section-intro { grid-template-columns: 1fr; gap: 3rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq-section { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-header, .projects-header { flex-direction: column; align-items: flex-start; }

  .nav, .hero-content,
  .achievements-section, .section-intro,
  .founder-section, .services-section,
  .projects-section, .why-section,
  .testi-section, .blog-section,
  .faq-section, .cta-section,
  footer, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }

  .privacy-content { padding: 3rem 1.5rem 5rem; }
  .achievements-section { padding-top: 3rem; padding-bottom: 3rem; }
}

@media (max-width: 480px) {
  :root { --display: 36px; --h1: 30px; --h2: 24px; --h3: 20px; }
  .hero-trust { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .wa-float { bottom: 1rem; right: 1rem; }
}

/* ============================================================
   PROJECTS — horizontal scroll carousel
   ============================================================ */

.projects-section { background: var(--brand-pale); padding: 7rem 5rem; }
.projects-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap; }
.projects-header .section-title { max-width: 28rem; margin-bottom: 0; }

/* Scroll track — shows cards at 3-up on wide, scrolls when more */
.projects-scroll-wrap {
  position: relative;
}

.projects-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 1.5rem) / 3);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
  cursor: grab;
}
.projects-track:active { cursor: grabbing; }
.projects-track::-webkit-scrollbar { display: none; }

.projects-track .project-card {
  scroll-snap-align: start;
  min-width: 0; /* prevent blowout */
}

/* Scroll nav arrows */
.projects-nav {
  display: flex; align-items: center; gap: .75rem; margin-top: 1.75rem; justify-content: flex-end;
}
.proj-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--brand);
  transition: background .2s, border-color .2s, color .2s;
}
.proj-nav-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.proj-nav-btn:disabled { opacity: .35; cursor: not-allowed; }

/* Scroll dots */
.projects-dots { display: flex; gap: 6px; align-items: center; margin-right: auto; }
.proj-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.proj-dot.active { background: var(--brand); transform: scale(1.35); }

/* Blog section — same scroll pattern */
.blog-section { background: var(--brand-pale); padding: 7rem 5rem; }
.blog-header { text-align: center; margin-bottom: 4rem; }
.blog-header .section-title { font-size: var(--h1); font-weight: 700; color: var(--black); max-width: 600px; margin: 0 auto 1rem; }

.blog-scroll-wrap { position: relative; }

.blog-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 1.5rem) / 3);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
  cursor: grab;
}
.blog-track:active { cursor: grabbing; }
.blog-track::-webkit-scrollbar { display: none; }

.blog-track .blog-card {
  scroll-snap-align: start;
  min-width: 0;
}

.blog-nav {
  display: flex; align-items: center; gap: .75rem; margin-top: 1.75rem; justify-content: flex-end;
}
.blog-dots { display: flex; gap: 6px; align-items: center; margin-right: auto; }
.blog-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.blog-dot.active { background: var(--brand); transform: scale(1.35); }

/* ── Footer social icons ── */
.footer-socials {
  display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  margin-bottom: 0; /* override footer-col a rule */
}
.footer-socials a:hover {
  background: var(--brand-light);
  color: var(--brand);
  border-color: var(--brand-light);
}

.footer-bottom-links {
  display: flex; align-items: center; gap: .75rem;
  font-size: var(--caption); color: rgba(255,255,255,.35);
}
.footer-bottom-links a {
  color: rgba(255,255,255,.35); text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--brand-light); }

/* ── Responsive overrides for scroll tracks ── */
@media (max-width: 900px) {
  .projects-track { grid-auto-columns: calc((100% - 1.5rem) / 2); }
  .blog-track     { grid-auto-columns: calc((100% - 1.5rem) / 2); }
  .projects-section, .blog-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 600px) {
  .projects-track { grid-auto-columns: 85%; }
  .blog-track     { grid-auto-columns: 85%; }
}
