/* Grow N Rise — premium financial advisory one-pager */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --gnr-bg: #ffffff;
  --gnr-bg-2: #f8fafc;
  --gnr-green: #00d09c;
  --gnr-green-deep: #00a57c;
  --gnr-blue: #2942f2;
  --gnr-text: #0f172a;
  --gnr-text-2: #475569;
  --gnr-border: rgba(15, 23, 42, 0.08);
  --gnr-radius: 1.25rem;
  --gnr-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(15, 23, 42, 0.08);
  --gnr-shadow-hover: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 40px -18px rgba(0, 208, 156, 0.18);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gnr-bg);
  color: var(--gnr-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: rgba(0, 208, 156, 0.22); color: var(--gnr-text); }

.font-display { font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: -0.02em; }

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ---------- Shared layout ---------- */
.gnr-section { padding: 5.5rem 1.25rem; }
.gnr-container { max-width: 1200px; margin: 0 auto; }

.gnr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gnr-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gnr-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gnr-green);
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0.85rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.section-sub { color: var(--gnr-text-2); font-size: 1.02rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* offset anchor scrolling under fixed header */
section[id] { scroll-margin-top: 84px; }

.gnr-card {
  background: var(--gnr-card, #fff);
  border: 1px solid var(--gnr-border);
  border-radius: var(--gnr-radius);
  box-shadow: var(--gnr-shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.gnr-card:hover {
  border-color: rgba(0, 208, 156, 0.45);
  box-shadow: var(--gnr-shadow-hover);
  transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.gnr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gnr-green);
  color: #04131e;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 8px 20px -6px rgba(0, 208, 156, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  text-align: center;
}
.gnr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0, 208, 156, 0.55);
}

.gnr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--gnr-text);
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.gnr-btn-secondary:hover {
  background: var(--gnr-bg-2);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* ---------- Header + nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 42px; width: auto; }

.nav { display: none; align-items: center; gap: 1.6rem; }
.nav a, .drawer-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gnr-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gnr-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a:hover { color: var(--gnr-green-deep); }
.nav a:hover::after { transform: scaleX(1); }

.btn-header { display: none; padding: 0.6rem 1.35rem; font-size: 0.85rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--gnr-text);
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .nav-close { display: none; }
body.drawer-open .nav-toggle .nav-menu { display: none; }
body.drawer-open .nav-toggle .nav-close { display: block; }

.drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  overflow-y: auto;
}
body.drawer-open { overflow: hidden; }
body.drawer-open .drawer { opacity: 1; transform: translateY(0); visibility: visible; }
.drawer-nav { display: flex; flex-direction: column; gap: 1.35rem; align-items: flex-start; }
.drawer-nav .gnr-btn-primary { margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 1.25rem 7rem;
  overflow: hidden;
  background: var(--gnr-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 156, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}
.hero-eyebrow { color: var(--gnr-text-2); }
.hero-title {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.08;
  font-weight: 600;
  margin: 1.25rem 0 1.1rem;
}
.gradient-text {
  background: linear-gradient(90deg, #0bb388 0%, var(--gnr-green) 60%, #0bb388 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gnr-text);
  max-width: 620px;
}
.hero-copy { color: var(--gnr-text-2); margin-top: 0.9rem; max-width: 600px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  color: var(--gnr-text-2);
  font-size: 0.9rem;
}
.hero-trust .icon { width: 17px; height: 17px; color: var(--gnr-green-deep); }
.trust-divider { width: 4px; height: 4px; border-radius: 50%; background: #cbd5e1; margin: 0 0.6rem; }

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  z-index: 0;
  pointer-events: none;
}
@keyframes gnr-dash { 0% { stroke-dashoffset: 1200; } to { stroke-dashoffset: 0; } }
.gnr-line-animate { stroke-dasharray: 1200; animation: gnr-dash 4s ease-out forwards; }

/* ---------- Trust metrics ---------- */
.metrics { padding-top: 2.5rem; padding-bottom: 4.5rem; background: var(--gnr-bg); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}
.metric .count {
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 600;
  line-height: 1;
  color: var(--gnr-text);
}
.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gnr-text-2);
  position: relative;
  padding-bottom: 0.85rem;
}
.metric-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gnr-green);
}

/* ---------- Services ---------- */
.services { background: var(--gnr-bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  position: relative;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: rgba(0, 208, 156, 0.1);
  border: 1px solid rgba(0, 208, 156, 0.25);
  margin-bottom: 0.35rem;
}
.service-icon .icon { width: 22px; height: 22px; color: var(--gnr-green-deep); }
.service-card h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }
.service-card p { color: var(--gnr-text-2); font-size: 0.95rem; }
.service-arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--gnr-text-2);
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.service-arrow .icon { width: 18px; height: 18px; }
.service-card:hover .service-arrow { opacity: 1; transform: translate(2px, -2px); color: var(--gnr-green-deep); }

/* ---------- Clientele ---------- */
.clientele { background: var(--gnr-bg); }
.marquee {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 1px solid var(--gnr-border);
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  font-weight: 500;
  color: var(--gnr-text);
  background: #fff;
}
.pill .icon { width: 15px; height: 15px; color: var(--gnr-green-deep); }

.professions-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gnr-text-2);
  margin-bottom: 1.25rem;
}
.professions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.professions-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gnr-border);
  border-radius: 0.85rem;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--gnr-bg-2);
  color: var(--gnr-text);
}
.professions-grid .icon { width: 18px; height: 18px; color: var(--gnr-green-deep); }

/* ---------- About ---------- */
.about { background: var(--gnr-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photo { position: relative; max-width: 460px; }
.about-photo img {
  border-radius: 1.5rem;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about-glow {
  position: absolute;
  z-index: 0;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 156, 0.18), transparent 60%),
    radial-gradient(circle, rgba(41, 66, 242, 0.12) 30%, transparent 70%);
  filter: blur(30px);
}
.about-badge {
  position: absolute;
  right: -0.5rem;
  bottom: 1.5rem;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--gnr-border);
  border-radius: 1rem;
  box-shadow: var(--gnr-shadow-hover);
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gnr-green-deep);
}
.badge-name { font-size: 1.15rem; font-weight: 600; }
.badge-sub { font-size: 0.8rem; color: var(--gnr-text-2); }

.about-copy p { color: var(--gnr-text-2); margin-top: 1.05rem; font-size: 1rem; }
.about-copy strong { color: var(--gnr-text); font-weight: 600; }
.about-copy .gnr-btn-primary { margin-top: 1.75rem; }

/* ---------- Why ---------- */
.why { background: var(--gnr-bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.why-card { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: rgba(41, 66, 242, 0.08);
  border: 1px solid rgba(41, 66, 242, 0.2);
  margin-bottom: 0.35rem;
}
.why-icon .icon { width: 21px; height: 21px; color: var(--gnr-blue); }
.why-card h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; }
.why-card p { color: var(--gnr-text-2); font-size: 0.94rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--gnr-bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.65rem 1.75rem;
  border-top: 3px solid transparent;
  position: relative;
}
.testimonial:hover { border-top-color: var(--gnr-green); }
.quote-icon { width: 26px; height: 26px; color: rgba(0, 208, 156, 0.8); }
.quote-icon .icon { width: 26px; height: 26px; }
.testimonial p { color: var(--gnr-text); font-size: 0.97rem; font-style: italic; flex: 1; }
.testimonial footer {
  color: var(--gnr-text-2);
  font-size: 0.84rem;
  margin-top: 0.35rem;
}
.quote-name { color: var(--gnr-text); font-weight: 600; }

/* ---------- Blog / Insights ---------- */
.blog { background: var(--gnr-bg-2); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-top {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--blog-accent) 22%, #fff), var(--blog-accent));
  color: var(--gnr-text);
}
.blog-top .icon { width: 30px; height: 30px; color: #fff; }
.blog-body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gnr-green-deep);
}
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #cbd5e1; }
.blog-body h3 { font-size: 1.08rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
.blog-body p { color: var(--gnr-text-2); font-size: 0.93rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--gnr-bg); }
.faq-inner { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  border: 1px solid var(--gnr-border);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open { border-color: rgba(0, 208, 156, 0.5); box-shadow: var(--gnr-shadow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.2rem 1.4rem;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gnr-text);
  text-align: left;
  cursor: pointer;
}
.faq-q .icon {
  width: 18px;
  height: 18px;
  color: var(--gnr-green-deep);
  transition: transform 0.3s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--gnr-text-2); font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--gnr-bg); padding-bottom: 5rem; }
.final-card {
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #f0faf6 0%, #ffffff 50%, #f5f8fe 100%);
  border: 1px solid var(--gnr-border);
  padding: 3.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--gnr-shadow);
}
.final-card .section-sub { max-width: 560px; }
.final-actions { margin-top: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--gnr-bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}
.contact-intro { color: var(--gnr-text-2); margin: 1rem 0 1.75rem; max-width: 480px; }
.contact-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--gnr-border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
.contact-chip {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-chip .icon { width: 20px; height: 20px; }
.contact-card.phone .contact-chip { background: rgba(0, 208, 156, 0.1); color: var(--gnr-green-deep); }
.contact-card.email .contact-chip { background: rgba(41, 66, 242, 0.08); color: var(--gnr-blue); }
.contact-card.insta .contact-chip { background: rgba(15, 23, 42, 0.06); color: var(--gnr-text); }
.contact-card.loc .contact-chip { background: rgba(71, 85, 105, 0.1); color: var(--gnr-text-2); }
.contact-k {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gnr-text-2);
  margin-bottom: 0.15rem;
}
.contact-card a { font-weight: 500; }
.contact-card a:hover { color: var(--gnr-green-deep); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--gnr-border);
  border-radius: 1.5rem;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--gnr-shadow);
}
.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gnr-text-2);
  margin-bottom: 0.45rem;
}
.form-row label span { color: var(--gnr-green-deep); }

.gnr-input {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  color: var(--gnr-text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gnr-input::placeholder { color: #94a3b8; }
.gnr-input:focus {
  border-color: var(--gnr-green);
  box-shadow: 0 0 0 4px rgba(0, 208, 156, 0.12);
  outline: none;
}
textarea.gnr-input { resize: vertical; min-height: 96px; }

.privacy-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gnr-text-2);
  font-size: 0.82rem;
  margin: 0 0 1.25rem;
}
.privacy-note .icon { width: 15px; height: 15px; color: var(--gnr-green-deep); }

.btn-submit { border: 0; }
.form-status { margin-top: 1rem; margin-bottom: 0; font-size: 0.92rem; }
.form-status.success { color: var(--gnr-green-deep); }
.form-status.error { color: #dc2626; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--gnr-text); color: #cbd5e1; }
.site-footer .gnr-container { padding: 4.5rem 1.25rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand img { height: 48px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; max-width: 420px; line-height: 1.65; }
.footer-brand .disclaimer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: #cbd5e1; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gnr-green); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
}
.footer-contact .icon { width: 16px; height: 16px; color: var(--gnr-green); }
.btn-footer { margin-top: 1.5rem; padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(203, 213, 225, 0.15);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.82rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .professions-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 2.5rem 2.25rem; }
}

@media (min-width: 768px) {
  .gnr-section { padding: 7rem 2rem; }
  .metrics { padding-top: 2.5rem; padding-bottom: 4.5rem; }
  .nav { display: flex; }
  .btn-header { display: inline-flex; }
  .nav-toggle { display: none; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
  .about-photo { margin: 0 auto; }
  .hero-wave { height: 140px; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
  .professions-grid { grid-template-columns: repeat(5, 1fr); }
  .why-grid { grid-template-columns: repeat(6, 1fr); }
  .why-card.wide { grid-column: span 3; }
  .why-card:not(.wide) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 4fr 3fr 2fr 3fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .marquee-track { animation: none; }
}