/* ================================
   RESET & TOKENS
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:          #1A1410;
  --paper:        #F5F1EC;
  --accent:       #C8501A;
  --accent-light: #F5E4DB;
  --muted:        #5C5450;
  --white:        #FFFFFF;
  --border:       #E5DDD7;
  --card:         #FFFFFF;

  --r:    20px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================
   TYPOGRAPHY HELPERS
   ================================ */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.section-h em {
  font-style: italic;
  font-weight: 700;
  color: var(--muted);
}

/* ================================
   BUTTONS
   ================================ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.2s var(--ease);
  border: 2px solid var(--ink);
}
.btn-main:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: all 0.2s var(--ease);
}
.btn-outline:hover { border-color: var(--ink); }

/* ================================
   NAV
   ================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.solid {
  background: rgba(245, 241, 236, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 28px;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-btn:hover { opacity: 0.75; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-mobile a {
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* ================================
   HERO
   ================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 28px 80px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{ opacity:1; } 50%{ opacity:0.4; }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
  hyphens: none;
  -webkit-hyphens: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-nums {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.num-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
}
.num-item strong span {
  font-size: 26px;
  color: var(--accent);
}
.num-item small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}


/* ================================
   MARQUEE
   ================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--ink);
  color: var(--accent-light);
  padding: 16px 0;
  border-top: 1px solid #2a1e18;
  border-bottom: 1px solid #2a1e18;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track .sep {
  color: rgba(245, 228, 219, 0.3);
  font-size: 18px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================
   BENTO SERVICES
   ================================ */
.bento-section { padding: 120px 0; }

.bento-section .wrap { margin-bottom: 52px; }

.bento {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07);
}

.bento-big  { grid-column: span 2; }
.bento-wide { grid-column: span 3; }

.bento-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.bento-accent p   { color: var(--white) !important; }
.bento-accent .bento-num { color: var(--white); opacity: 0.5; }
.bento-accent .bento-link { color: var(--white); }
.bento-accent .bento-icon { background: rgba(255,255,255,0.18); color: var(--white); }

.bento-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.bento-dark p         { color: rgba(255,255,255,0.9) !important; }
.bento-dark .bento-link { color: var(--accent-light); }

.bento-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.3;
}

.bento-icon {
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-dark .bento-icon { background: rgba(255,255,255,0.08); }

.bento-icon-lg {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.bento-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.bento-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.bento-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
  transition: opacity 0.2s;
}
.bento-link:hover { opacity: 0.7; }

/* CTA card */
.bento-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  padding: 36px 40px;
}
.bento-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.bento-cta h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}
.bento-cta p {
  color: rgba(255,255,255,0.9);
  max-width: 440px;
}

.bento-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.btn-cta:hover {
  background: #b84616;
  transform: scale(1.03);
}

/* ================================
   ABOUT
   ================================ */
.about-section {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .section-h { margin-bottom: 20px; }

.about-lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.about-list strong { color: var(--ink); font-weight: 600; }

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Team cards */
.about-right { display: flex; flex-direction: column; gap: 20px; }

.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--paper);
}

.team-photo {
  aspect-ratio: 4/5;
  background: #C8BEB8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.team-card--alt .team-photo {
  background: #A89890;
}

.team-info {
  padding: 16px 18px;
}
.team-info strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 3px;
}
.team-info span {
  font-size: 13px;
  color: var(--muted);
}

.about-quote {
  background: var(--accent-light);
  border: 1px solid rgba(200, 80, 26, 0.15);
  border-radius: var(--r);
  padding: 24px 28px;
}
.about-quote p {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.7;
}

/* ================================
   PRICING
   ================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--paper);
}

.pricing-note {
  font-size: 16px;
  color: var(--muted);
  margin-top: -32px;
  margin-bottom: 52px;
  max-width: 520px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07);
}

.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-card--featured .pricing-tier { color: rgba(255,255,255,0.45); }

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-price span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card--featured .pricing-price { color: var(--white); }
.pricing-card--featured .pricing-price span { color: rgba(255,255,255,0.45); }

.pricing-who {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-who {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.65); }

.feat-check {
  width: 18px; height: 18px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--featured .feat-check {
  background: rgba(200, 80, 26, 0.25);
  color: #f5a080;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  transition: all 0.2s var(--ease);
  text-align: center;
}
.pricing-btn--outline {
  border: 2px solid var(--border);
  color: var(--ink);
}
.pricing-btn--outline:hover { border-color: var(--ink); }
.pricing-btn--main {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.pricing-btn--main:hover {
  background: #b84616;
  border-color: #b84616;
}

/* Extras table */
.extras-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
}

.extras-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
}
.extras-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.extras-header p {
  font-size: 14px;
  color: var(--muted);
}

.extras-table { padding: 0 36px 20px; }

.extras-row {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 14px;
}
.extras-row:last-child { border-bottom: none; }

.extras-row--head {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 14px 0 10px;
}

.extras-row strong { font-weight: 600; color: var(--ink); }
.extras-row span   { color: var(--muted); }

.extras-price {
  font-weight: 600 !important;
  color: var(--accent) !important;
  white-space: nowrap;
}

/* ================================
   HOW IT WORKS
   ================================ */
.how-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid #2a1e18;
}

.how-section .section-label { color: rgba(255,255,255,0.6); }
.how-section .section-h     { color: var(--white); }
.how-section .section-h em  { color: rgba(255,255,255,0.55); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 52px;
}

.how-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: background 0.2s;
}
.how-card:hover { background: rgba(255,255,255,0.07); }

.how-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.how-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.how-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  padding: 0 16px;
  margin-top: 60px;
}

.how-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.how-example {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 28px;
}

.example-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 10px;
}

.how-example p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.how-example strong { color: var(--white); }

/* ================================
   CONTACT
   ================================ */
.contact-section { padding: 120px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-h { margin-bottom: 16px; }
.contact-left > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 340px;
  line-height: 1.7;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
a.c-info-item:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}

.c-info-icon {
  width: 40px; height: 40px;
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}

.c-info-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.c-info-item span {
  font-size: 13px;
  color: var(--muted);
}

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A706A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-field textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  margin-top: 4px;
}
.btn-submit:hover {
  background: #b84616;
  transform: translateY(-1px);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 28px;
  border-top: 1px solid #2a1e18;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.footer .logo { color: var(--white); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal {
  margin-top: 6px;
  font-size: 12px !important;
  color: rgba(255,255,255,0.35) !important;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  max-width: 600px;
  width: calc(100% - 48px);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}
.cookie-banner a { color: var(--accent); }
.cookie-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-btn:hover { opacity: 0.88; }

/* ================================
   ANIMATIONS
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-big  { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }

  .about-inner { grid-template-columns: 1fr; gap: 52px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how-divider {
    display: none;
  }
  .how-examples { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .bento-cta-inner { flex-direction: column; align-items: flex-start; }

  .extras-row { grid-template-columns: 160px 1fr; }
  .extras-col-mid { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }

  .bento { grid-template-columns: 1fr; }
  .bento-big, .bento-wide { grid-column: span 1; }

  .hero-nums { gap: 24px; }

  .about-team { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .extras-table { padding: 0 20px 16px; }
  .extras-header { padding: 24px 20px 16px; }
  .extras-row { grid-template-columns: 1fr auto; }
  .extras-col-mid { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav   { gap: 20px; }
}
