/* ===========================
   BEYOND NATURAL COACHING
   Indie / Personal Branding
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0A0A0A;
  --bg-warm: #111111;
  --bg-card: #141414;
  --accent: #E63946;
  --accent-dark: #c62d39;
  --accent-soft: rgba(230, 57, 70, 0.10);
  --cream: #F0EDED;
  --cream-soft: #A8A4A0;
  --muted: #5E5B57;
  --line: rgba(230, 57, 70, 0.15);
  --line-soft: rgba(240, 237, 237, 0.08);
  --font-sans: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Global noise texture ---- */

/* ---- Noise overlay ---- */

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
}

.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===========================
   Layout
   =========================== */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 140px 0;
  position: relative;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.section__intro {
  font-size: 1rem;
  color: var(--cream-soft);
  max-width: 520px;
  margin: 0 auto 72px;
  text-align: center;
  line-height: 1.8;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 85, 58, 0.2);
}

.btn--outline {
  border: 1px solid var(--muted);
  color: var(--cream);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--full {
  display: block;
  width: 100%;
}

/* ===========================
   Header
   =========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: all 0.5s var(--ease);
}

.header.scrolled {
  background: rgba(12, 11, 10, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.header__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.header__logo span {
  font-style: italic;
  color: var(--accent);
}

.header__menu {
  display: flex;
  gap: 28px;
}

.header__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header__link:hover,
.header__link.active {
  color: var(--cream);
}

.header__cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.3s ease;
}

.header__cta:hover {
  background: var(--accent);
  color: var(--cream);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===========================
   Hero
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Overlay + grille + noise */
.hero__bg-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    /* 🎞️ Noise (grain léger) */
    url("https://grainy-gradients.vercel.app/noise.svg"),

    /* 🌑 Overlay sombre */
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.65)
    ),

    /* 🔴 Ta grille existante */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(230, 57, 70, 0.06) 39px,
      rgba(230, 57, 70, 0.06) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(230, 57, 70, 0.06) 39px,
      rgba(230, 57, 70, 0.06) 40px
    );

  background-size:
    200px 200px, /* noise */
    cover,
    cover,
    cover;

  opacity: 0.9; /* ajuste global */
  pointer-events: none;
}

.hero__bg-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  opacity: 0.4;
  text-align: center;
  pointer-events: none;
}

.hero__bg-label span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero__bg-size {
  font-size: 0.55rem !important;
  letter-spacing: 2px !important;
  opacity: 0.6;
}

/* Warm radial glow */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(230, 57, 70, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__subtitle::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 800px;
  letter-spacing: -1px;
}

.hero__title span {
  font-style: italic;
  color: var(--accent);
}

.hero__tagline {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 56px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   About
   =========================== */

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

/* Grain overlay on photo */
.about__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 150px;
  mix-blend-mode: overlay;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(230, 57, 70, 0.06) 39px,
      rgba(230, 57, 70, 0.06) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(230, 57, 70, 0.06) 39px,
      rgba(230, 57, 70, 0.06) 40px
    ),
    var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(230, 57, 70, 0.25);
  position: relative;
}

.about__image-placeholder svg {
  opacity: 0.3;
}

.about__image-placeholder .placeholder-size {
  font-size: 0.55rem;
  letter-spacing: 2px;
  opacity: 0.5;
}

.about__text {
  margin-bottom: 48px;
}

.about__text p {
  color: var(--cream-soft);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.about__stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}

.about__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}

/* ===========================
   Method
   =========================== */

.method {
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.method__card {
  background: var(--bg);
  padding: 48px 28px;
  transition: all 0.5s var(--ease);
  position: relative;
}

.method__card:hover {
  background: var(--bg-card);
}

.method__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}

.method__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.method__icon svg {
  width: 100%;
  height: 100%;
}

.method__card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.method__card-text {
  color: var(--cream-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ===========================
   Offers
   =========================== */

.offers {
  text-align: center;
}

.offers__tabs {
  display: inline-flex;
  gap: 0;
  margin-bottom: 72px;
  border: 1px solid var(--line-soft);
}

.offers__tab {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.3s ease;
  color: var(--muted);
}

.offers__tab.active {
  background: var(--accent);
  color: var(--cream);
}

.offers__tab:hover:not(.active) {
  color: var(--cream);
  background: var(--bg-card);
}

.offers__panel { display: none; }
.offers__panel.active { display: block; }

.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  text-align: left;
}

.offers__card {
  background: var(--bg);
  padding: 48px 32px;
  transition: all 0.5s var(--ease);
  position: relative;
}

.offers__card:hover {
  background: var(--bg-card);
}

.offers__card--featured {
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
}

.offers__card-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
  position: static;
  background: none;
  padding: 0;
}

.offers__card-header {
  margin-bottom: 28px;
}

.offers__card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.offers__card-duration {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offers__card-price {
  margin-bottom: 36px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.offers__card-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  color: var(--cream);
}

.offers__card-currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--muted);
}

.offers__card-features {
  margin-bottom: 40px;
}

.offers__card-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream-soft);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.offers__card-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===========================
   Results
   =========================== */

.results {
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.results__card {
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  background: var(--bg);
}

.results__card:hover {
  border-color: var(--muted);
}

.results__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.results__photo-placeholder {
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(230,57,70,0.05) 29px, rgba(230,57,70,0.05) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(230,57,70,0.05) 29px, rgba(230,57,70,0.05) 30px),
    var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--muted);
}

.results__info {
  padding: 28px 24px;
  text-align: left;
}

.results__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.results__detail {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.results__quote {
  color: var(--cream-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
   Contact
   =========================== */

.contact {
  border-top: 1px solid var(--line-soft);
}

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

.contact__text {
  color: var(--cream-soft);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact__links { margin-bottom: 36px; }

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-soft);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact__link:hover { color: var(--accent); }

.contact__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}

.contact__socials {
  display: flex;
  gap: 12px;
}

.contact__social {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact__social svg { width: 20px; height: 20px; }

.contact__social:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact__field select {
  color: var(--muted);
  cursor: pointer;
}

.contact__field select option {
  background: var(--bg-card);
  color: var(--cream);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--accent);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   Footer
   =========================== */

.footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--line-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo span {
  font-style: italic;
  color: var(--accent);
}

.footer__tagline {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
}

.footer__links h4,
.footer__social h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--cream-soft);
  transition: color 0.3s ease;
}

.footer__links a:hover { color: var(--accent); }

.footer__social-icons {
  display: flex;
  gap: 8px;
}

.footer__social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__social-icons svg { width: 16px; height: 16px; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-align: center;
}

/* ===========================
   Animations
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
  .method__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    background: none;
    border: none;
    gap: 16px;
  }

  .offers__card {
    border: 1px solid var(--line-soft);
  }

  .results__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section { padding: 100px 0; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(12, 11, 10, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s var(--ease);
  }

  .header__nav.open { right: 0; }

  .header__menu {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .header__link {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .about__image-wrapper {
    max-width: 320px;
  }

  .method__grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 1px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offers__tabs {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .about__stats {
    flex-direction: column;
    gap: 20px;
  }

  .btn { padding: 12px 24px; }
}
