@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

:root {
  --navy: #221959;
  --navy-deep: #150F3D;
  --red: #F20000;
  --red-deep: #C40000;
  --black: #000000;
  --bg: #FFFFFF;
  --bg-alt: #F4F2FA;
  --ink: #1A1A1A;
  --ink-soft: #56536E;
  --white: #FFFFFF;
  --radius: 12px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.signature {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

section[id] {
  scroll-margin-top: 84px;
}

/* ---------- Header ---------- */

header.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #ECE9F5;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.brand img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--navy);
}

.brand-tagline {
  font-size: 0.64rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: bold;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover {
  border-bottom-color: var(--red);
  color: var(--red);
}

.nav-cta {
  background: #25D366;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 30px;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: #1EBE5D;
  border-bottom: none !important;
  color: var(--white) !important;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #ECE9F5;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  nav.main-nav.open { max-height: 420px; }

  nav.main-nav a {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid #ECE9F5;
  }

  .nav-cta {
    margin: 12px 20px;
    display: inline-block;
    width: calc(100% - 40px);
    text-align: center;
  }
}

/* ---------- Synapse decorations ---------- */

.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-decor svg { width: 100%; height: 100%; }

.synapse-divider {
  margin-bottom: 18px;
  display: block;
}

.node-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; }

.hero-flex {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap-reverse;
}

.hero-text {
  flex: 1 1 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-logo {
  height: 96px;
  width: auto;
  max-width: 100%;
  aspect-ratio: 378 / 420;
  object-fit: contain;
  flex-shrink: 0;
  align-self: flex-start;
  margin-bottom: 4px;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.15rem;
  line-height: 1.25;
  margin: 0;
  max-width: 720px;
  color: var(--navy);
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.badge {
  background: var(--white);
  border: 1px solid #E2DEF2;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: bold;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: #25D366;
  color: var(--white);
}

.btn-primary:hover { background: #1EBE5D; }

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover { background: rgba(34,25,89,0.06); }

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover { background: var(--red-deep); }

.hero-photo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  position: relative;
}

.hero-photo img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--red);
  box-shadow: 0 14px 34px rgba(34,25,89,0.25);
  position: relative;
  z-index: 1;
}

@media (max-width: 780px) {
  .hero-photo, .hero-photo img { width: 170px; height: 170px; }
}

/* ---------- Sections ---------- */

section { padding: 60px 0; }

section.alt { background: var(--bg-alt); }

h2.section-title {
  color: var(--navy);
  font-size: 1.55rem;
  margin: 0 0 6px;
}

p.section-intro {
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 30px;
  font-size: 1rem;
}

/* Cards grid */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 700px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid #ECE9F5;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 3px 16px rgba(34,25,89,0.05);
}

section.alt .card { background: var(--white); }

.card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

/* Audience split */

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 700px) {
  .audience-split { grid-template-columns: 1fr; }
}

.audience-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.audience-card:nth-child(2) { background: var(--red); }

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  position: relative;
}

.audience-card p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 18px;
  font-size: 0.95rem;
  position: relative;
}

.audience-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  position: relative;
}

.audience-card li { margin-bottom: 6px; }

.audience-card .btn-white {
  background: var(--white);
  color: var(--navy);
  position: relative;
}

.audience-card:nth-child(2) .btn-white { color: var(--red); }

.audience-card .btn-white:hover { background: #F0EEFA; }

/* Timeline */

.timeline {
  border-left: 3px solid var(--red);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item .years {
  color: var(--red);
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-item h4 {
  margin: 4px 0 6px;
  color: var(--navy);
  font-size: 1.03rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Values */

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 780px) {
  .value-row { grid-template-columns: 1fr; }
}

/* Intro photo block */

.intro-photo {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: center;
}

.intro-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(34,25,89,0.16);
}

.intro-photo-text p {
  color: var(--ink-soft);
  margin: 0 0 22px;
}

@media (max-width: 780px) {
  .intro-photo { grid-template-columns: 1fr; }
}

/* Quote card */

.quote-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  width: 48px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}

.quote-text {
  font-size: 1.45rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 14px;
}

.quote-author {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid #ECE9F5;
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}

.contact-method:hover {
  box-shadow: 0 6px 20px rgba(34,25,89,0.1);
  transform: translateY(-1px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-method h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-method p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.info-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}

.info-panel h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.info-panel dl { margin: 18px 0 0; }

.info-panel dt {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 14px;
}

.info-panel dd {
  margin: 3px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

/* CTA banner */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 { margin: 0 0 10px; font-size: 1.5rem; }

.cta-banner p { margin: 0 0 22px; color: rgba(255,255,255,0.85); }

.cta-banner .btn-row { justify-content: center; position: relative; }

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy-deep);
  color: #B9B4D6;
  padding: 44px 0 22px;
  font-size: 0.88rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.footer-brand span {
  color: var(--white);
  font-weight: bold;
  font-size: 1.02rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

.footer-grid h5 {
  color: var(--white);
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-grid p, .footer-grid a {
  color: #B9B4D6;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-grid a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 0.78rem;
  color: #8781A8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* Floating WhatsApp button */

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  z-index: 200;
  font-size: 1.6rem;
}

.wa-float:hover { background: #1EBE5D; }
