/* Guwati — editorial finance design */

:root {
  --forest: #13201c;
  --forest-mid: #1e3d34;
  --forest-light: #2d6a4f;
  --sage: #52b788;
  --sage-soft: #d8f3dc;
  --gold: #d4a853;
  --gold-soft: #f5e6c8;
  --terracotta: #e07a5f;
  --cream: #f7f4ef;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text: #1a2420;
  --text-muted: #5c6b65;
  --border: #ddd6cb;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(19, 32, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(19, 32, 28, 0.12);
  --header-h: 76px;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--forest-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.logo svg { width: 38px; height: 38px; }

.nav { display: flex; align-items: center; gap: 36px; }

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--forest-light);
  transition: width 0.25s;
}

.nav a:not(.btn):hover::after,
.nav a.active::after { width: 100%; }

.nav a.active { color: var(--forest); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--forest-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--accent {
  background: var(--terracotta);
  color: var(--white);
}

.btn--accent:hover {
  background: #c96a52;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--sm { padding: 9px 20px; font-size: 0.8125rem; }

/* Hero */
.hero {
  padding: calc(var(--header-h) + 48px) 0 0;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(82, 183, 136, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212, 168, 83, 0.12) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  flex: 1;
  padding-bottom: 80px;
}

.hero__content { padding-top: 40px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--sage);
}

.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-avatars {
  display: flex;
}

.hero__trust-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.hero__trust-avatars span:first-child { margin-left: 0; }
.hero__trust-avatars span:nth-child(1) { background: #2d6a4f; }
.hero__trust-avatars span:nth-child(2) { background: #52796f; }
.hero__trust-avatars span:nth-child(3) { background: #40916c; }
.hero__trust-avatars span:nth-child(4) { background: #52b788; }

.hero__trust p { font-size: 0.875rem; opacity: 0.75; }
.hero__trust strong { color: var(--gold); }

/* Dashboard mockup */
.hero__visual { position: relative; padding: 20px 0; }

.dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--text);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s;
}

.dashboard:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }

.dashboard__bar {
  background: var(--cream);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dashboard__dot { width: 10px; height: 10px; border-radius: 50%; }
.dashboard__dot--r { background: #e07a5f; }
.dashboard__dot--y { background: #d4a853; }
.dashboard__dot--g { background: #52b788; }

.dashboard__body { padding: 28px; }

.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.dashboard__header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
}

.dashboard__header span { font-size: 0.75rem; color: var(--text-muted); }

.dashboard__balance {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.dashboard__balance small { font-size: 0.875rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin: 24px 0;
  padding: 0 4px;
}

.dashboard__bar-col {
  flex: 1;
  background: linear-gradient(to top, var(--forest-light), var(--sage));
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.dashboard__bar-col:hover { opacity: 1; }

.dashboard__rows { display: flex; flex-direction: column; gap: 12px; }

.dashboard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.dashboard__row-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 12px;
}

.dashboard__row-left { display: flex; align-items: center; }
.dashboard__row-amount { font-weight: 600; color: var(--forest); }
.dashboard__row-amount--neg { color: var(--terracotta); }

.dashboard__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  animation: float 4s ease-in-out infinite;
}

.dashboard__float--1 { top: 0; right: -20px; }
.dashboard__float--2 { bottom: 40px; left: -30px; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dashboard__float strong { display: block; color: var(--forest-light); font-size: 1.1rem; }

/* Marquee */
.marquee {
  background: var(--forest-mid);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee__track span::before { content: '◆ '; color: var(--gold); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 100px 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--forest); color: var(--white); }
.section--sage { background: var(--sage-soft); }

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest-light);
  margin-bottom: 14px;
}

.section--dark .section__eyebrow { color: var(--sage); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 18px;
}

.section--dark .section__title { color: var(--white); }

.section__desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 560px;
}

.section--dark .section__desc { color: rgba(255,255,255,0.7); }

.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bento__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bento__item--lg { grid-column: span 7; }
.bento__item--sm { grid-column: span 5; }
.bento__item--md { grid-column: span 6; }
.bento__item--full { grid-column: span 12; }

.bento__icon {
  width: 48px; height: 48px;
  background: var(--sage-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.bento__item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.bento__item p { color: var(--text-muted); font-size: 0.9375rem; }

.bento__tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--gold-soft);
  color: #8a6d2b;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bento__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--forest-light);
  line-height: 1;
  margin-bottom: 8px;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process__num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.process__step:hover .process__num {
  background: var(--forest);
  color: var(--white);
  transform: scale(1.08);
}

.process__step h4 {
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  font-size: 1rem;
}

.process__step p { font-size: 0.875rem; color: var(--text-muted); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.testimonial__stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author { display: flex; align-items: center; gap: 14px; }

.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.testimonial__role { font-size: 0.8125rem; color: var(--text-muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq__item.open .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq__item.open .faq__answer { max-height: 300px; padding-bottom: 24px; }

.faq__answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}

.blog-card__img--1 { background: linear-gradient(135deg, #1e3d34, #52b788); }
.blog-card__img--2 { background: linear-gradient(135deg, #3d2c1e, #d4a853); }
.blog-card__img--3 { background: linear-gradient(135deg, #2c1e3d, #9b72aa); }

.blog-card__cat {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.blog-card__body { padding: 24px; }

.blog-card__date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-light);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card { text-align: center; }

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.team-card__photo--1 { background: linear-gradient(160deg, #1e3d34, #40916c); }
.team-card__photo--2 { background: linear-gradient(160deg, #3d2c1e, #d4a853); }
.team-card__photo--3 { background: linear-gradient(160deg, #1e2e3d, #52796f); }
.team-card__photo--4 { background: linear-gradient(160deg, #3d1e2e, #e07a5f); }

.team-card h4 { font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.team-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stats-strip__item {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
}

.stats-strip__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--forest-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip__label { font-size: 0.875rem; color: var(--text-muted); }

/* Disclaimer */
.disclaimer {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 0.875rem;
  color: #5c4a1a;
  line-height: 1.75;
}

.disclaimer strong { color: #3d3010; }

/* CTA */
.cta-block {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.2), transparent 70%);
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-block p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; position: relative; }

.cta-block__form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.cta-block__form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.cta-block__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-block__form input:focus { outline: none; border-color: var(--sage); background: rgba(255,255,255,0.15); }

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(82,183,136,0.15), transparent);
}

.page-hero .container { position: relative; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero p { opacity: 0.8; max-width: 560px; font-size: 1.0625rem; }

/* Content */
.content { padding: 72px 0 96px; }
.content__inner { max-width: 800px; margin: 0 auto; }

.content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin: 40px 0 14px;
}

.content h2:first-child { margin-top: 0; }
.content p, .content li { color: var(--text-muted); margin-bottom: 12px; }
.content ul, .content ol { padding-left: 24px; margin-bottom: 16px; }

/* Cards (services) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-light), var(--sage));
  opacity: 0;
  transition: opacity 0.25s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px; height: 52px;
  background: var(--sage-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.card p { color: var(--text-muted); font-size: 0.9375rem; }
.card__price { margin-top: 20px; font-weight: 700; font-size: 1.125rem; color: var(--forest-light); }
.card__price--free { color: var(--sage); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }

.contact-info__item { display: flex; gap: 16px; margin-bottom: 28px; }

.contact-info__icon {
  width: 48px; height: 48px;
  background: var(--sage-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}

.contact-info h4 { font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.contact-info p { color: var(--text-muted); font-size: 0.9375rem; }

.form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form__group { margin-bottom: 20px; }
.form label { display: block; font-weight: 500; font-size: 0.875rem; margin-bottom: 6px; color: var(--text); }

.form input, .form textarea, .form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}

.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--forest-light);
  background: var(--white);
}

.form textarea { resize: vertical; min-height: 120px; }

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.form__checkbox input { width: auto; margin-top: 3px; }
.form__note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline__item { position: relative; margin-bottom: 36px; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 14px; height: 14px;
  background: var(--forest-light);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.timeline__item p { color: var(--text-muted); font-size: 0.9375rem; }

/* Article */
.article { max-width: 720px; margin: 0 auto; }

.article__meta {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--forest);
  margin: 36px 0 14px;
}

.article p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.article ul { padding-left: 24px; margin-bottom: 16px; }
.article li { color: var(--text-muted); margin-bottom: 8px; }

/* Footer */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo { color: var(--white); margin-bottom: 18px; }
.footer__desc { font-size: 0.875rem; line-height: 1.75; margin-bottom: 24px; }

.footer__social { display: flex; gap: 12px; }

.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
}

.footer__social a:hover { background: var(--forest-light); color: var(--white); }

.footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer a:hover { color: var(--gold); }

.footer__bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer__legal { display: flex; gap: 24px; }

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.35s;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p { font-size: 0.875rem; color: var(--text-muted); flex: 1; min-width: 280px; }
.cookie-banner__actions { display: flex; gap: 12px; }

/* About page grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 520px; margin: 0 auto; }
  .dashboard { transform: none; }
  .dashboard__float { display: none; }
  .bento__item--lg, .bento__item--sm, .bento__item--md { grid-column: span 12; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process::before { display: none; }
  .testimonials, .blog-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-block { grid-template-columns: 1fr; padding: 48px 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__toggle { display: block; }

  .process, .testimonials, .blog-grid, .team-grid, .cards { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .section { padding: 72px 0; }
}
