@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Nunito:wght@600;700;800&display=swap');

:root {
  --bg: #f7f3ee;
  --bg-card: #fffcf9;
  --text: #3d342c;
  --text-muted: #6b6258;
  --primary: #c06d2a;
  --primary-dark: #a05a22;
  --primary-light: #fdf3ea;
  --border: #e8dfd4;
  --shadow: 0 8px 30px -8px rgba(133, 100, 71, 0.12);
  --shadow-hover: 0 16px 40px -8px rgba(133, 100, 71, 0.18);
  --radius: 16px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: Nunito, sans-serif; line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-card); }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); text-align: center; margin-bottom: .75rem; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; min-height: 68px;
}
.logo { display: flex; align-items: center; gap: .65rem; font-weight: 700; font-family: Nunito, sans-serif; font-size: 1.1rem; }
.logo img { width: 40px; height: 40px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-size: .925rem; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--primary); }
.header-phone { font-weight: 700; color: var(--primary); white-space: nowrap; font-size: .95rem; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; transition: all .25s; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(192, 109, 42, 0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* Hero */
.hero {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .4rem 1rem; font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem;
}
.hero-badge strong { color: var(--primary); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.hero-lead { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.75rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--text-muted); }
.hero-trust-item svg { flex-shrink: 0; color: var(--primary); }
.hero-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Benefits strip */
.benefits-strip { padding: 2rem 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.benefit-item { text-align: center; padding: .5rem; }
.benefit-icon {
  width: 52px; height: 52px; margin: 0 auto .75rem;
  background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.benefit-item h3 { font-size: .95rem; margin-bottom: .25rem; }
.benefit-item p { font-size: .825rem; color: var(--text-muted); margin: 0; }

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: all .3s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-image { aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.35rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card-body p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-price { font-weight: 700; color: var(--primary); font-size: .95rem; margin-bottom: 1rem; }
.card-link { font-weight: 600; color: var(--primary); font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; position: relative;
}
.step-num {
  width: 36px; height: 36px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.review {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: .85rem;
}
.review-meta { font-size: .825rem; color: var(--text-muted); }
.review-stars { color: #e8a317; font-size: .9rem; margin-bottom: .5rem; }
.review p { font-size: .9rem; color: var(--text-muted); margin: 0; font-style: italic; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--primary-light);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
}
.team-card h3 { font-size: 1rem; }
.team-role { color: var(--primary); font-size: .825rem; font-weight: 600; margin-bottom: .5rem; }
.team-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* Pricing */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
}
.price-card.featured { border-color: var(--primary); background: var(--primary-light); }
.price-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.price-card .price { font-size: 1.35rem; font-weight: 800; color: var(--primary); }
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); }
.price-table { width: 100%; border-collapse: collapse; font-size: .875rem; min-width: 560px; }
.price-table th, .price-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--primary-light); font-weight: 600; font-size: .8rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:not(:first-child) { text-align: center; font-weight: 600; color: var(--primary); }
.price-note { text-align: center; font-size: .875rem; color: var(--text-muted); margin-top: 1.25rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.25rem 2rem 1.25rem 0; font-family: Nunito, sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer; color: var(--text);
  position: relative;
}
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.25rem; color: var(--primary); transition: transform .3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 1.25rem; font-size: .925rem; color: var(--text-muted); }

/* Form */
.form-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; }
.form-section .section-title, .form-section .section-subtitle { color: #fff; }
.form-section .section-subtitle { opacity: .9; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; max-width: 900px; margin: 0 auto; }
.form-box { background: #fff; border-radius: var(--radius); padding: 1.75rem; color: var(--text); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: .95rem; background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-consent { font-size: .75rem; color: var(--text-muted); margin-top: .75rem; }
.form-message { padding: .75rem 1rem; border-radius: 10px; font-size: .875rem; margin-top: 1rem; display: none; }
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-message.error { display: block; background: #fdecea; color: #c62828; }
.form-benefits { padding: 1rem 0; }
.form-benefits li {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem; font-size: .95rem;
}
.form-benefits svg { flex-shrink: 0; margin-top: 2px; }

/* CTA band */
.cta-band {
  background: var(--primary-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center; margin: 2rem 0;
}
.cta-band h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Service page */
.service-hero { padding: 3rem 0; }
.service-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.service-content { max-width: 760px; }
.service-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.service-content p, .service-content li { color: var(--text-muted); font-size: .95rem; }
.service-list { padding-left: 1.25rem; list-style: disc; margin-bottom: 1.5rem; }
.service-list li { margin-bottom: .5rem; }
.fears-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
.fear-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem;
}
.fear-card h4 { font-size: .95rem; margin-bottom: .35rem; color: var(--primary); }
.fear-card p { font-size: .85rem; margin: 0; color: var(--text-muted); }

/* Footer */
.footer { background: #2e2720; color: rgba(255,255,255,.75); padding: 3rem 0 1.5rem; font-size: .875rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-links li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-phone { font-size: 1.15rem; font-weight: 700; color: #fff; display: block; margin-top: .5rem; }

/* Floating call */
.float-call {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 90;
  display: flex; flex-direction: column; gap: .5rem; align-items: flex-end;
}
.float-call a {
  display: flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff; padding: .85rem 1.25rem;
  border-radius: 999px; font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(192,109,42,.4);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem; gap: .75rem; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .service-hero-grid, .form-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fears-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
}
@media (max-width: 560px) {
  .benefits-grid, .price-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .bento-grid { grid-template-columns: 1fr; }
  .card--featured { grid-column: span 1; }
  .hero-stats { flex-direction: column; gap: .75rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== CREATIVE SECTIONS ===== */
.section-label {
  display: block; text-align: center;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: .75rem;
}
.section-label--light { color: rgba(255,255,255,.85); }
.section-head { margin-bottom: 2.5rem; }
.section-head .section-title { margin-bottom: .5rem; }
.section-head .section-subtitle { margin-bottom: 0; }

/* Hero creative */
.hero--creative { position: relative; overflow: hidden; padding: 4rem 0 5rem; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(192,109,42,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(192,109,42,.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}
.hero--creative .container { position: relative; z-index: 1; }
.hero-visual { position: relative; }
.hero-image--frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-image--frame::before {
  content: ''; position: absolute; inset: -8px -8px 8px 8px;
  border: 2px solid rgba(192,109,42,.25); border-radius: calc(var(--radius) + 4px);
  z-index: -1;
}
.hero-float-card {
  position: absolute; bottom: -1rem; left: -1rem;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: .75rem 1.1rem; display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 600; box-shadow: var(--shadow);
  color: var(--text);
}
.hero-float-card svg { color: var(--primary); }
.hero-stats {
  display: flex; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
}
.hero-stat-num {
  display: block; font-family: Nunito, sans-serif;
  font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: var(--text-muted); }

/* Benefits creative */
.benefits-strip--creative {
  background: linear-gradient(90deg, var(--bg-card) 0%, #fff 50%, var(--bg-card) 100%);
}
.benefit-item {
  position: relative; padding: 1.25rem .75rem;
  border-radius: var(--radius); transition: background .3s;
}
.benefit-item:hover { background: rgba(192,109,42,.06); }
.benefit-icon {
  border-radius: 50%; transform: rotate(-3deg);
  box-shadow: 0 4px 12px rgba(192,109,42,.15);
}

/* Bento services grid */
.section--services {
  background:
    radial-gradient(circle at 100% 0%, rgba(192,109,42,.06) 0%, transparent 40%),
    var(--bg);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card--featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.card--featured .card-image { aspect-ratio: auto; min-height: 220px; }
.card--featured .card-body { display: flex; flex-direction: column; justify-content: center; }
.card-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px;
}
.card { position: relative; }
.card--support {
  grid-column: span 3;
  display: grid; grid-template-columns: 260px 1fr;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  border-color: rgba(192,109,42,.2);
}
.card-support-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.25rem; min-height: 160px;
}
.support-path {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .85rem;
  width: 100%; max-width: 220px;
}
.support-path-item {
  display: flex; align-items: flex-start; gap: .75rem;
  position: relative;
}
.support-path-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px; bottom: -10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(192,109,42,.35) 0%, rgba(192,109,42,.08) 100%);
}
.support-path-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(192,109,42,.12);
  border: 1px solid rgba(192,109,42,.22);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.support-path-text {
  display: flex; flex-direction: column; gap: .15rem;
  padding-top: .15rem;
}
.support-path-text strong {
  font-family: Nunito, sans-serif;
  font-size: .95rem;
  line-height: 1.2;
  color: var(--text);
}
.support-path-text small {
  font-size: .72rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.support-hero-panel {
  background:
    linear-gradient(145deg, rgba(255,253,248,.98) 0%, rgba(252,242,228,.96) 100%);
  border: 1px solid rgba(192,109,42,.18);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-hero-panel__title {
  margin: 0 0 1.25rem;
  font-family: Nunito, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.support-path--hero {
  max-width: none;
  gap: 1rem;
}

.support-path--hero .support-path-text strong {
  font-size: 1rem;
}

.support-path--hero .support-path-text small {
  font-size: .8rem;
}

.support-path--hero .support-path-item:not(:last-child)::after {
  top: 46px;
  bottom: -6px;
}

/* Timeline */
.section--timeline { position: relative; }
.timeline {
  max-width: 720px; margin: 0 auto; position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--primary) 0%, rgba(192,109,42,.2) 100%);
}
.timeline-item {
  position: relative; margin-bottom: 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.timeline-dot {
  position: absolute; left: -2.5rem; top: .15rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  box-shadow: 0 0 0 4px var(--bg-card);
}
.timeline-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  flex: 1; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.timeline-content:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.timeline-content h3 { font-size: 1rem; margin-bottom: .35rem; }
.timeline-content p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* Reviews creative */
.section--reviews {
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-light) 50%, var(--bg) 100%);
}
.review { position: relative; overflow: hidden; transition: transform .3s; }
.review:hover { transform: translateY(-4px); }
.review--featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, #fff 0%, var(--primary-light) 100%);
  transform: scale(1.03); z-index: 1;
}
.review--featured:hover { transform: scale(1.03) translateY(-4px); }
.review-quote {
  position: absolute; top: .5rem; right: 1rem;
  font-size: 4rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(192,109,42,.15); pointer-events: none;
}

/* Team creative */
.team-card {
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), #e8a317);
}
.team-avatar {
  border: 3px solid #fff; box-shadow: 0 4px 14px rgba(192,109,42,.2);
}

/* Pricing creative */
.section--pricing { background: var(--bg-card); }
.price-card--ribbon { position: relative; overflow: visible; }
.price-ribbon {
  position: absolute; top: -10px; right: 1rem;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .3rem .65rem; border-radius: 6px;
}
.price-table-wrap {
  box-shadow: var(--shadow);
  border: none;
}
.price-table tbody tr:hover td { background: rgba(192,109,42,.04); }

/* FAQ grid */
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; max-width: 960px; margin: 0 auto;
}
.faq-grid .faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 1.25rem;
  border-bottom: 1px solid var(--border);
}
.faq-grid .faq-question { padding-right: 2rem; }

/* Form creative */
.form-section--creative { position: relative; overflow: hidden; }
.form-section-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, #8b4513 100%);
}
.form-section--creative .container { position: relative; z-index: 1; }
.form-grid--creative { max-width: 960px; }
.form-box {
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 3px solid rgba(255,255,255,.3);
}

/* CTA wave */
.cta-band--wave {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}
.cta-band--wave::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), #e8a317, var(--primary));
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .card--featured, .card--support { grid-column: span 2; display: block; }
  .card--support { grid-template-columns: 1fr; }
  .card-support-visual { min-height: 100px; padding: 1rem; }
  .support-hero-panel { min-height: 0; padding: 1.25rem; }
  .review--featured { transform: none; }
  .hero-float-card { left: .5rem; bottom: .5rem; }
}

/* ===== PREMIUM LAYER ===== */
:root {
  --cream: #fbf7f0;
  --ivory: #fffdf8;
  --ink: #2f2923;
  --gold-soft: #d6a65a;
  --gold-deep: #9a6a2f;
  --premium-line: rgba(154, 106, 47, .18);
  --premium-shadow: 0 24px 70px rgba(65, 47, 31, .12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(214,166,90,.12), transparent 34rem),
    linear-gradient(180deg, #fbf7f0 0%, #f6efe5 45%, #fbf7f0 100%);
}

.header {
  background: rgba(251, 247, 240, .82);
  border-bottom-color: var(--premium-line);
  box-shadow: 0 8px 30px rgba(65,47,31,.04);
}

.logo {
  color: var(--ink);
  letter-spacing: -.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold-deep) 100%);
  box-shadow: 0 12px 28px rgba(160, 90, 34, .24);
}

.btn-outline {
  background: rgba(255,255,255,.55);
  border-color: rgba(154,106,47,.36);
  color: var(--gold-deep);
}

.btn-outline:hover {
  background: var(--ivory);
  border-color: var(--gold-deep);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-title {
  color: var(--ink);
  letter-spacing: -.035em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtitle {
  max-width: 760px;
  line-height: 1.75;
}

.section-label {
  color: var(--gold-deep);
  letter-spacing: .18em;
}

.hero--creative,
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(214,166,90,.2), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(192,109,42,.12), transparent 30rem),
    linear-gradient(180deg, #fff9f0 0%, #f6efe5 100%);
}

.hero--creative::after,
.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(251,247,240,.88));
  pointer-events: none;
}

.hero-content,
.service-hero-grid > div:first-child {
  position: relative;
  z-index: 1;
}

.hero h1,
.service-hero h1 {
  max-width: 820px;
  color: var(--ink);
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 660px;
  color: #65584d;
}

.hero-image,
.card,
.step,
.timeline-content,
.review,
.team-card,
.price-card,
.faq-grid .faq-item,
.fear-card,
.form-box,
.service-panel,
.premium-card {
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow);
}

.hero-image--frame {
  border: 8px solid rgba(255,255,255,.72);
}

.hero-float-card,
.hero-badge {
  background: rgba(255,253,248,.86);
  backdrop-filter: blur(14px);
  border-color: var(--premium-line);
}

.hero-stats {
  border-top-color: var(--premium-line);
}

.hero-stat-num,
.card-price,
.price-card .price {
  color: var(--gold-deep);
}

.benefits-strip--creative {
  background: rgba(255,253,248,.78);
  backdrop-filter: blur(16px);
}

.benefit-item {
  border: 1px solid transparent;
}

.benefit-item:hover {
  background: var(--ivory);
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow);
}

.bento-grid .card {
  background: rgba(255,253,248,.9);
}

.card--featured,
.card--support {
  background:
    linear-gradient(135deg, rgba(255,253,248,.96), rgba(252,242,228,.96));
}

.card-tag,
.price-ribbon {
  background: linear-gradient(135deg, var(--gold-deep), var(--primary));
}

.timeline-content {
  background: rgba(255,253,248,.92);
}

.timeline-dot,
.step-num {
  background: linear-gradient(135deg, var(--gold-deep), var(--primary));
}

.section--reviews {
  background:
    radial-gradient(circle at 50% 0%, rgba(214,166,90,.16), transparent 26rem),
    linear-gradient(180deg, var(--cream) 0%, #fff8ec 55%, var(--cream) 100%);
}

.review--featured {
  background: linear-gradient(145deg, var(--ivory) 0%, #fff3df 100%);
}

.form-section--creative,
.form-section {
  background:
    radial-gradient(circle at 16% 28%, rgba(255,255,255,.14), transparent 20rem),
    linear-gradient(135deg, #8b5425 0%, #3c2a1d 100%);
}

.form-box {
  background: rgba(255,253,248,.98);
}

/* Premium service pages */
.service-hero {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

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

.service-hero .hero-badge {
  width: fit-content;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border: 1px solid var(--premium-line);
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  color: var(--gold-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 1.75rem;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--premium-line);
  font-size: .86rem;
  color: #5f5146;
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  margin-top: .5rem;
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 1.35rem;
}

.service-price small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .82rem;
}

.service-panel {
  background: rgba(255,253,248,.92);
  border: 1px solid var(--premium-line);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.service-panel h2,
.service-panel h3 {
  letter-spacing: -.02em;
}

.service-panel p {
  color: var(--text-muted);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.premium-card {
  background: rgba(255,253,248,.92);
  border: 1px solid var(--premium-line);
  border-radius: 22px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.premium-card h3,
.premium-card h4 {
  font-size: 1.05rem;
  margin-bottom: .45rem;
}

.premium-card p,
.premium-card li {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
}

.service-copy {
  max-width: 860px;
  margin: 0 auto;
}

.service-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.service-list--premium {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .8rem;
}

.service-list--premium li {
  position: relative;
  padding-left: 1.75rem;
}

.service-list--premium li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--primary));
  box-shadow: 0 0 0 4px rgba(214,166,90,.14);
}

.service-note {
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--gold-soft);
  border-radius: 18px;
  background: rgba(255,253,248,.78);
  color: var(--text-muted);
}

.service-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
}

.service-seo-links a {
  padding: .55rem .9rem;
  border: 1px solid var(--premium-line);
  border-radius: 999px;
  background: rgba(255,253,248,.78);
  color: var(--gold-deep);
  font-size: .88rem;
  font-weight: 600;
}

.service-faq {
  max-width: 900px;
  margin: 0 auto;
}

.service-faq .faq-list {
  max-width: none;
}

@media (max-width: 900px) {
  .service-meta {
    gap: .5rem;
  }
  .service-meta span {
    width: 100%;
  }
}

/* Final mobile adaptation */
@media (max-width: 900px) {
  .header {
    position: sticky;
  }

  .header-inner {
    min-height: 62px;
    padding: .65rem 0;
  }

  .logo {
    font-size: 1rem;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .nav.open {
    box-shadow: 0 18px 36px rgba(65,47,31,.12);
    background: rgba(255,253,248,.98);
  }

  .nav.open a {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 12px;
    background: rgba(154,106,47,.06);
  }

  .hero--creative,
  .service-hero {
    padding: 2.75rem 0 3.25rem;
  }

  .hero-grid,
  .service-hero-grid {
    gap: 2rem;
  }

  .hero h1,
  .service-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .hero-stat {
    padding: .85rem;
    border: 1px solid var(--premium-line);
    border-radius: 16px;
    background: rgba(255,253,248,.72);
  }

  .benefits-grid {
    gap: .75rem;
  }

  .benefit-item {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: .9rem;
    align-items: center;
  }

  .benefit-icon {
    margin: 0;
  }

  .benefit-item h3,
  .benefit-item p {
    grid-column: 2;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .card--featured,
  .card--support {
    grid-column: span 1;
  }

  .card--featured {
    display: block;
  }

  .card--featured .card-image,
  .card-image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-dot {
    left: -2rem;
  }

  .reviews-grid,
  .team-grid,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .review--featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .form-grid--creative {
    grid-template-columns: 1fr !important;
    max-width: 560px !important;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .section-subtitle {
    font-size: .96rem;
  }

  .hero-actions,
  .service-hero .hero-actions {
    flex-direction: column;
    gap: .7rem;
  }

  .hero-actions .btn,
  .service-hero .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    position: static;
    margin-top: .75rem;
    width: 100%;
    justify-content: center;
  }

  .benefits-grid,
  .price-cards,
  .fears-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .card-body,
  .premium-card,
  .service-panel,
  .form-box {
    padding: 1.1rem;
  }

  .price-table {
    min-width: 620px;
  }

  .price-table th,
  .price-table td {
    padding: .75rem .7rem;
  }

  .float-call {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    align-items: stretch;
  }

  .float-call a {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-bottom: 5rem;
  }
}
