:root {
  --ink: #15181d;
  --ink-soft: #2a2e35;
  --ink-tint: rgba(21,24,29,0.72);
  --paper: #faf6f0;
  --paper-dim: #f1ebe1;
  --paper-line: rgba(21,24,29,0.1);
  --accent: #ff4e32;
  --accent-dark: #d63a1f;
  --accent-2: #ffd23f;
  --muted: #8a8478;
  --white-warm: #fffdf9;

  --shadow-sm: 0 1px 2px rgba(21,24,29,0.07), 0 2px 5px rgba(21,24,29,0.06);
  --shadow-md: 0 4px 10px rgba(21,24,29,0.09), 0 10px 26px rgba(21,24,29,0.10);
  --shadow-lg: 0 12px 24px rgba(21,24,29,0.14), 0 24px 56px rgba(21,24,29,0.18);
  --shadow-accent: 0 8px 20px rgba(255,78,50,0.28), 0 2px 6px rgba(255,78,50,0.24);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.25,.8,.35,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: 'Gabarito', sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.global-wrapper {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .global-wrapper { padding: 0 2.5rem; }
}

.global-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}
.global-h2 {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.1rem);
  letter-spacing: -0.01em;
}
.global-lead {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  color: var(--ink-tint);
  max-width: 62ch;
}


.global-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 48px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.global-btn-primary {
  background: var(--accent);
  color: var(--white-warm);
  box-shadow: var(--shadow-accent);
}
.global-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,78,50,0.32), 0 4px 10px rgba(255,78,50,0.26);
}
.global-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--paper-line);
}
.global-btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.global-btn-ghost-invert {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(250,246,240,0.35);
}
.global-btn-ghost-invert:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-2px);
}


.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--paper-line);
  transition: transform 0.45s var(--ease);
}
.global-header.global-header--hidden { transform: translateY(-100%); }
.global-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.global-logo { display: flex; align-items: center; gap: 0.6rem; }
.global-logo-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); }
.global-logo-text { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.global-nav-list { display: flex; gap: 2rem; }
.global-nav-link {
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.global-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.global-nav-link:hover { color: var(--accent-dark); }
.global-nav-link:hover::after { width: 100%; }
.global-header-actions { display: flex; gap: 0.8rem; }
.global-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.global-menu-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.global-menu-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.global-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.global-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


.global-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--ink);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  padding: 2rem;
}
.global-mobile-menu.is-open { transform: translateY(0); }
.global-mobile-menu-list { display: flex; flex-direction: column; gap: 1.3rem; text-align: center; margin-bottom: 2.5rem; }
.global-mobile-menu-list li {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--d) * 0.08s);
}
.global-mobile-menu.is-open .global-mobile-menu-list li { opacity: 1; transform: translateY(0); }
.global-mobile-menu-list a {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--paper);
}
.global-mobile-menu-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.5s var(--ease) 0.5s, transform 0.5s var(--ease) 0.5s;
}
.global-mobile-menu.is-open .global-mobile-menu-actions { opacity: 1; transform: translateY(0); }
.global-mobile-menu-close {
  color: var(--paper);
  border: 1px solid rgba(250,246,240,0.3);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.6rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600;
  min-height: 48px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.global-mobile-menu-close:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 900px) {
  .global-nav, .global-header-actions { display: none; }
  .global-menu-toggle { display: flex; }
}


.home-hero {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(7rem, 4rem + 8vw, 10rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.home-hero-top { text-align: center; margin-bottom: clamp(2.5rem, 2rem + 3vw, 4rem); }
.home-hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.2rem;
}
.home-hero-heading {
  font-size: clamp(2.6rem, 1.6rem + 4.5vw, 5.4rem);
  color: var(--paper);
  max-width: 18ch;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
.home-hero-strip { width: 100%; margin-bottom: clamp(2.5rem, 2rem + 3vw, 4rem); }
.home-hero-strip-img { width: 100%; height: clamp(220px, 20vw, 420px); object-fit: cover; }
.home-hero-bottom { text-align: center; max-width: 780px; margin: 0 auto; }
.home-hero-lead { color: rgba(250,246,240,0.78); font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); margin: 0 auto 2rem; }
.home-hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.3rem; }
.home-hero-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.6rem; font-size: 0.9rem; color: rgba(250,246,240,0.6); }
.home-hero-meta li { display: flex; align-items: center; gap: 0.5rem; }
.home-hero-meta i { color: var(--accent-2); }


.home-problem, .home-features, .home-modules, .about-story, .about-principles,
.about-team, .start-formats, .start-steps, .start-prepare, .start-faq,
.case-grid-section, .contact-info-strip, .contact-form-section, .contact-news,
.privacy-body, .terms-body, .cookies-body {
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
}
.home-problem { background: var(--paper-dim); }

.home-problem-head, .home-features-head, .home-modules-head,
.start-formats-head, .start-steps-head, .start-faq-head, .contact-news-head,
.about-principles-head, .about-team-head {
  max-width: 700px;
  margin-bottom: clamp(2.2rem, 1.8rem + 2vw, 3.5rem);
}


.home-problem-stack-wrap { container: problemstack / inline-size; }
.home-problem-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.home-problem-card {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--paper-line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.home-problem-card-num {
  display: inline-block;
  font-family: 'Gabarito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  background: rgba(255,78,50,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.home-problem-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.home-problem-card p { color: var(--ink-tint); font-size: 0.97rem; }

@container problemstack (min-width: 760px) {
  .home-problem-stack { flex-direction: row; align-items: stretch; }
  .home-problem-card { flex: 1; }
  .home-problem-card:nth-child(1) { transform: translateY(0) rotate(-2deg); margin-right: -2.2rem; z-index: 4; }
  .home-problem-card:nth-child(2) { transform: translateY(10px) rotate(-1deg); margin-right: -2.2rem; z-index: 3; }
  .home-problem-card:nth-child(3) { transform: translateY(0) rotate(1deg); margin-right: -2.2rem; z-index: 2; }
  .home-problem-card:nth-child(4) { transform: translateY(10px) rotate(2deg); z-index: 1; }
  .home-problem-stack-wrap:hover .home-problem-card:nth-child(1) { transform: translate(-18px,-8px) rotate(-4deg); box-shadow: var(--shadow-lg); }
  .home-problem-stack-wrap:hover .home-problem-card:nth-child(2) { transform: translate(-6px,2px) rotate(-1deg); box-shadow: var(--shadow-lg); }
  .home-problem-stack-wrap:hover .home-problem-card:nth-child(3) { transform: translate(6px,-2px) rotate(1deg); box-shadow: var(--shadow-lg); }
  .home-problem-stack-wrap:hover .home-problem-card:nth-child(4) { transform: translate(18px,8px) rotate(4deg); box-shadow: var(--shadow-lg); }
}


.home-features-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.home-features-row:last-child { margin-bottom: 0; }
.home-features-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.home-features-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--accent-2);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.home-features-text h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-bottom: 0.9rem; }
.home-features-text p { color: var(--ink-tint); max-width: 52ch; }

@media (min-width: 860px) {
  .home-features-row { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .home-features-row--reverse .home-features-media { order: 2; }
}


.home-modules-wrap { container: modulestack / inline-size; }
.home-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.home-modules-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
}
.home-modules-card:hover { transform: translateY(-6px); }
.home-modules-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.9rem;
}
.home-modules-card h3 { color: var(--paper); font-size: 1.3rem; margin-bottom: 0.7rem; }
.home-modules-card p { color: rgba(250,246,240,0.7); font-size: 0.95rem; }

@container modulestack (min-width: 780px) {
  .home-modules-grid { grid-template-columns: repeat(4, 1fr); }
}


.global-cta {
  background: var(--accent);
  color: var(--white-warm);
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
}
.global-cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.global-cta-inner h2 { color: var(--white-warm); font-size: clamp(1.9rem, 1.4rem + 2.5vw, 2.8rem); margin-bottom: 1rem; }
.global-cta-inner p { color: rgba(255,253,249,0.9); margin-bottom: 2rem; }
.global-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.global-cta .global-btn-primary { background: var(--ink); box-shadow: var(--shadow-lg); }
.global-cta .global-btn-primary:hover { background: var(--ink-soft); }


.global-footer { background: var(--ink); color: rgba(250,246,240,0.82); padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); }
.global-footer-top { display: grid; grid-template-columns: 1fr; gap: 2.4rem; padding-bottom: 2.5rem; }
.global-footer-brand .global-logo-text { color: var(--paper); }
.global-footer-tagline { margin-top: 1rem; max-width: 32ch; color: rgba(250,246,240,0.6); font-size: 0.95rem; }
.global-footer-col h3 { color: var(--paper); font-size: 1rem; margin-bottom: 1.1rem; }
.global-footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.global-footer-col a { color: rgba(250,246,240,0.68); font-size: 0.94rem; transition: color 0.3s var(--ease); }
.global-footer-col a:hover { color: var(--accent-2); }
.global-footer-contact ul { gap: 0.9rem; }
.global-footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: rgba(250,246,240,0.68); }
.global-footer-contact i { color: var(--accent-2); margin-top: 3px; }
.global-footer-divider { height: 1px; background: rgba(250,246,240,0.14); }
.global-footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; padding-block: 1.6rem; font-size: 0.85rem; color: rgba(250,246,240,0.5); }
.global-footer-legal-links { display: flex; gap: 1.4rem; }
.global-footer-legal-links a:hover { color: var(--accent-2); }

@media (min-width: 700px) {
  .global-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; }
  .global-footer-bottom { flex-direction: row; justify-content: space-between; }
}


.global-cookie-link {
  position: fixed;
  bottom: 1.2rem; left: 1.2rem;
  z-index: 400;
  background: var(--white-warm);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.45rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.global-cookie-link i { color: var(--accent); }
.global-cookie-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.global-cookie-link.is-pulsing { animation: cookiePulse 1.6s ease-in-out 3; }
@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 0 8px rgba(255,78,50,0.18), var(--shadow-md); }
}

.global-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.global-cookie-modal.is-open { display: flex; }
.global-cookie-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(21,24,29,0.6);
  backdrop-filter: blur(4px);
}
.global-cookie-modal-box {
  position: relative;
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: cookieModalIn 0.4s var(--ease);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.global-cookie-modal-box h2 { margin-bottom: 0.8rem; font-size: 1.5rem; }
.global-cookie-modal-box > p { color: var(--ink-tint); font-size: 0.94rem; margin-bottom: 1.5rem; }
.global-cookie-category { border-top: 1px solid var(--paper-line); padding-block: 1.1rem; }
.global-cookie-category-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.global-cookie-category-head label { font-weight: 700; font-family: 'Gabarito', sans-serif; }
.global-cookie-category p { font-size: 0.88rem; color: var(--ink-tint); }
.global-cookie-category input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--accent); }
.global-cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.global-cookie-modal-actions .global-btn { flex: 1; min-width: 140px; padding: 0.75rem 1rem; font-size: 0.88rem; }


.global-accordion-item {
  border-bottom: 1px solid var(--paper-line);
}
.global-accordion-item:first-child { border-top: 1px solid var(--paper-line); }
.global-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.2rem;
  text-align: left;
  font-family: 'Gabarito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.global-accordion-header:hover { color: var(--accent-dark); }
.global-accordion-header i { transition: transform 0.35s var(--ease); color: var(--accent); flex-shrink: 0; }
.global-accordion-item.is-open .global-accordion-header i { transform: rotate(180deg); }
.global-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.global-accordion-item.is-open .global-accordion-body { grid-template-rows: 1fr; }
.global-accordion-body-inner { overflow: hidden; }
.global-accordion-body-inner p { padding-bottom: 1.4rem; color: var(--ink-tint); max-width: 72ch; font-size: 0.98rem; }
.global-accordion-body-inner p + p { margin-top: 0.9rem; }


.about-hero, .start-hero, .case-hero, .contact-hero, .privacy-hero, .terms-hero, .cookies-hero {
  padding-top: clamp(7rem, 4rem + 8vw, 10rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 4rem);
  background: var(--paper-dim);
}
.about-hero-heading, .case-hero-heading, .contact-hero-heading {
  font-size: clamp(2.2rem, 1.4rem + 3.5vw, 3.6rem);
  max-width: 20ch;
  margin-bottom: 1rem;
}
.privacy-hero h1, .terms-hero h1, .cookies-hero h1 {
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.2rem);
}


.about-story-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.about-story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-text h2 { margin-bottom: 1.2rem; }
.about-story-text p { color: var(--ink-tint); margin-bottom: 1rem; max-width: 60ch; }
@media (min-width: 860px) { .about-story-grid { grid-template-columns: 1fr 1.1fr; } }

.about-principles-list { display: flex; flex-direction: column; gap: 1.4rem; }
.about-principles-item { display: flex; gap: 1.4rem; background: var(--white-warm); border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-line); transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.about-principles-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-principles-num { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.about-principles-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.about-principles-item p { color: var(--ink-tint); }

.about-team-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
.about-team-card { background: var(--white-warm); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.about-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-team-card img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-team-card h3, .about-team-card p, .about-team-role { padding-inline: 1.6rem; }
.about-team-card h3 { margin-top: 1.4rem; font-size: 1.25rem; }
.about-team-role { display: block; color: var(--accent-dark); font-weight: 700; font-size: 0.85rem; margin-top: 0.3rem; }
.about-team-card p { color: var(--ink-tint); margin-top: 0.8rem; padding-bottom: 1.6rem; }
@media (min-width: 700px) { .about-team-grid { grid-template-columns: 1fr 1fr; } }


.start-hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.start-hero-heading { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.4rem); max-width: 18ch; margin-bottom: 1rem; }
.start-hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 860px) { .start-hero-grid { grid-template-columns: 1.1fr 1fr; } }

.start-formats-wrap { container: formatgrid / inline-size; }
.start-formats-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.start-formats-card { background: var(--white-warm); border-radius: var(--radius-md); padding: 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.start-formats-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.start-formats-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.start-formats-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.start-formats-card p { color: var(--ink-tint); font-size: 0.95rem; }
@container formatgrid (min-width: 760px) { .start-formats-grid { grid-template-columns: repeat(2, 1fr); } }
@container formatgrid (min-width: 1100px) { .start-formats-grid { grid-template-columns: repeat(4, 1fr); } }

.start-steps-list { display: flex; flex-direction: column; gap: 1.3rem; }
.start-steps-item { display: flex; gap: 1.4rem; align-items: flex-start; padding: 1.4rem; background: var(--paper-dim); border-radius: var(--radius-md); }
.start-steps-num { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--accent-2); font-family: 'Gabarito', sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.start-steps-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.start-steps-item p { color: var(--ink-tint); }

.start-prepare-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.start-prepare-list { display: flex; flex-direction: column; gap: 1rem; }
.start-prepare-list li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 1rem 1.2rem; background: var(--white-warm); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.start-prepare-list i { color: var(--accent); margin-top: 3px; }
@media (min-width: 860px) { .start-prepare-grid { grid-template-columns: 1fr 1fr; } }


.case-grid-wrap { container: casegrid / inline-size; }
.case-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.case-card { background: var(--white-warm); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--paper-line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card--media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.case-card-icon { display: flex; align-items: center; justify-content: center; height: 130px; background: var(--ink); color: var(--accent-2); font-size: 2.2rem; }
.case-card-body { padding: 1.8rem; }
.case-card-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-dark); background: rgba(255,78,50,0.1); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); margin-bottom: 0.9rem; }
.case-card-body h3 { font-size: 1.25rem; margin-bottom: 0.9rem; }
.case-card-body p { color: var(--ink-tint); font-size: 0.95rem; margin-bottom: 0.7rem; }
.case-card-body p:last-child { margin-bottom: 0; }
@container casegrid (min-width: 720px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }


.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: -2.2rem; }
.contact-info-card { background: var(--white-warm); border-radius: var(--radius-md); padding: 1.7rem; box-shadow: var(--shadow-md); border: 1px solid var(--paper-line); text-align: center; transition: transform 0.35s var(--ease); }
.contact-info-card:hover { transform: translateY(-5px); }
.contact-info-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.8rem; display: block; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.contact-info-card p { color: var(--ink-tint); font-size: 0.92rem; }
.contact-info-card a { color: inherit; }
@media (min-width: 760px) { .contact-info-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-form-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 1.2rem; }
.contact-map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form { background: var(--white-warm); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); box-shadow: var(--shadow-lg); }
.contact-form h2 { margin-bottom: 1.6rem; }
.contact-form-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form-row-group { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.contact-form label { font-weight: 600; font-size: 0.9rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],
.contact-form select, .contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--paper-line);
  background: var(--paper);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 48px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,78,50,0.14);
}
.contact-form-privacy { display: flex; align-items: flex-start; gap: 0.7rem; margin: 1.4rem 0 1.6rem; font-size: 0.9rem; color: var(--ink-tint); }
.contact-form-privacy input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.contact-form-privacy a { color: var(--accent-dark); font-weight: 600; }
.contact-form-submit { width: 100%; }
@media (min-width: 860px) {
  .contact-form-grid { grid-template-columns: 1fr 1.1fr; }
  .contact-form-row-group { grid-template-columns: 1fr 1fr; }
}

.contact-news-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.contact-news-card { background: var(--paper-dim); border-radius: var(--radius-md); padding: 1.7rem; transition: transform 0.35s var(--ease); }
.contact-news-card:hover { transform: translateY(-4px); }
.contact-news-date { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.7rem; }
.contact-news-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.contact-news-card p { color: var(--ink-tint); font-size: 0.93rem; }
@media (min-width: 760px) { .contact-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-news-grid { grid-template-columns: repeat(4, 1fr); } }


.thanks-section { padding-block: clamp(6rem, 5rem + 6vw, 9rem); padding-top: clamp(9rem, 6rem + 8vw, 12rem); text-align: center; }
.thanks-inner { display: flex; flex-direction: column; align-items: center; }
.thanks-envelope { position: relative; width: 160px; height: 110px; margin-bottom: 2.5rem; }
.thanks-envelope-body {
  position: relative;
  width: 100%; height: 100%;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.thanks-envelope-body::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0; width: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 55px solid var(--ink-soft);
}
.thanks-envelope-flap {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 60px solid var(--accent);
  transform-origin: top center;
  animation: flapOpen 1.4s var(--ease) forwards;
  animation-delay: 0.3s;
  z-index: 3;
}
@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(180deg); }
}
.thanks-envelope-letter {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 108px;
  height: 70px;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, 0) scale(0.94);
  animation: letterSlide 1.4s var(--ease) forwards;
  animation-delay: 1.1s;
  z-index: 2;
}
.thanks-envelope-letter::before, .thanks-envelope-letter::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  height: 6px;
  background: var(--paper-line);
  border-radius: 3px;
}
.thanks-envelope-letter::before { top: 18px; }
.thanks-envelope-letter::after { top: 34px; }
@keyframes letterSlide {
  0% { transform: translate(-50%, 0) scale(0.94); }
  100% { transform: translate(-50%, -68px) scale(1); }
}
.thanks-heading { font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem); margin-bottom: 1rem; opacity: 0; }
.thanks-text { max-width: 56ch; margin: 0 auto 2rem; opacity: 0; }
.thanks-back { opacity: 0; }
.thanks-text a { color: var(--accent-dark); font-weight: 600; }


.privacy-body, .terms-body, .cookies-body { max-width: 900px; }
.privacy-body .global-wrapper, .terms-body .global-wrapper, .cookies-body .global-wrapper { max-width: 900px; }


@media (max-width: 480px) {
  .global-cookie-modal-box { padding: 1.5rem; }
  .home-hero-strip-img { height: 200px; }
}