/* ============================================================
   SISTEMA 01 — EDITORIAL EUROPEU
   Identidade Visual e Layout para Dra. Sônia Maria Andrade
   ============================================================ */

/* --- VARIÁVEIS DO SISTEMA VISUAL --- */
:root {
  --color-bg: #F5F0E8;          /* Fundo off-white quente */
  --color-text: #1A1A1A;        /* Texto cinza quase preto */
  --color-primary: #8B6914;     /* Primária - Dourado oliva/bronze */
  --color-primary-rgb: 139, 105, 20;
  --color-secondary: #D4B896;   /* Secundária - Creme bronzeado */
  --color-white: #FFFFFF;
  --color-dark: #1E2820;        /* Cor escura para CTA final - Verde Oliva Escuro */
  --color-border: rgba(0, 0, 0, 0.08); /* Hairline border */
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & PADRÕES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 1;
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 2rem;
  max-width: 800px;
}

.paragraph {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: 1.8rem;
  color: rgba(26, 26, 26, 0.85);
}

/* --- BOTÕES --- */
.btn-primary, .btn-secondary, .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: #725610;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-primary);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background-color: rgba(139, 105, 20, 0.06);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.btn-cta:hover {
  background-color: #c7a780;
  transform: translateY(-2px);
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(245, 240, 232, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(245, 240, 232, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.7);
}

.nav-menu a:hover,
.nav-menu li.active a {
  color: var(--color-primary);
}

.nav-cta .btn-primary {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Menu Toggle (Hamburguer) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
}

/* --- HERO (HERO 01-B) --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
  align-items: center;
  max-width: 100%;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: clamp(20px, 5vw, 40px);
}

.hero-content {
  padding-right: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker-wrapper {
  margin-bottom: 2rem;
  border-left: 1px solid var(--color-primary);
  padding-left: 1rem;
}

.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vw, 650px);
  overflow: hidden;
  background-color: #E2DBD0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-position: center;
  border-left: 1px solid var(--color-border);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background-color: var(--color-white);
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  z-index: 10;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 2px;
}

.badge-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.6);
}

/* --- SOBRE NÓS --- */
.about-section {
  border-top: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10%;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.about-image-shape {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 70%;
  height: 70%;
  background-color: var(--color-secondary);
  opacity: 0.15;
  border-radius: 4px;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-quote {
  border-left: 2px solid var(--color-primary);
  padding-left: 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-primary);
}

/* --- SERVIÇOS (EDITORIAL NUMERADO — SISTEMA 01) --- */
.services-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-inner {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 5%;
}

.services-header {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.service-row:first-child {
  padding-top: 0;
}

.service-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(139, 105, 20, 0.2);
  line-height: 1;
  font-weight: 300;
  width: 60px;
}

.service-content-wrapper {
  flex: 1;
}

.service-item-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-weight: 500;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.75);
}

/* --- COMO FUNCIONA (TIMELINE VERTICAL COM GHOST NUMBERS) --- */
.process-section {
  background-color: var(--color-bg);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  width: 1px;
  height: 100%;
  background-color: rgba(139, 105, 20, 0.15);
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-badge {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.step-ghost-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(139, 105, 20, 0.12);
  line-height: 0.8;
  font-weight: 300;
  user-select: none;
}

.step-content {
  flex: 1;
  padding-left: 2rem;
  padding-top: 10px;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.step-text {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.75);
}

/* --- DEPOIMENTOS (SISTEMA 01 EDITORIAL) --- */
.testimonials-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-bg);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0;
  color: rgba(139, 105, 20, 0.12);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
}

.author-location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 2px;
}

/* --- FAQ (ACORDEÃO EDITORIAL) --- */
.faq-section {
  background-color: var(--color-bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 5%;
}

.faq-header {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.4);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding-top: 1rem;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.7;
}

/* Estado Aberto do FAQ */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

/* --- CTA FINAL (SEÇÃO ESCURA) --- */
.cta-final-section {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cta-final-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final-section .cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-bg);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

/* --- CONTATO E LOCALIZAÇÃO --- */
.contact-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-lead {
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 2.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: rgba(139, 105, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-list p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.75);
}

.contact-list a:hover {
  color: var(--color-primary);
}

/* Formulário */
.contact-form-wrapper {
  background-color: var(--color-bg);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(26, 26, 26, 0.6);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.w-full {
  width: 100%;
}

.map-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--color-bg);
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 26, 0.6);
}

.footer-social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.5);
}

.footer-legal a {
  color: rgba(26, 26, 26, 0.5);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

/* --- ELEMENTOS FLUTUANTES --- */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: var(--transition);
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 90;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-bg);
  transform: translateY(-2px);
}

/* --- MODAL POLÍTICA DE PRIVACIDADE --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--color-bg);
  width: 90%;
  max-width: 500px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modal-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
  max-height: 350px;
  overflow-y: auto;
}

.modal-body p {
  margin-bottom: 1rem;
}

/* --- RESPONSIVIDADE --- */

/* Desktop Médio */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 45% 51%;
    gap: 4%;
  }
}

/* Tablet / Notebook Pequeno */
@media (max-width: 991px) {
  section {
    padding: clamp(60px, 8vw, 100px) 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-header {
    position: static;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-header {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Mobile Customizado */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 100;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-cta .btn-primary {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-right: clamp(20px, 5vw, 40px);
  }

  .hero-content {
    order: 2;
  }

  .hero-image-wrapper {
    order: 1;
    height: 380px;
  }

  .hero-badge {
    bottom: 20px;
    left: 20px;
  }

  .process-steps::before {
    left: 30px;
  }

  .step-badge {
    width: 60px;
  }

  .step-ghost-number {
    font-size: 2.5rem;
  }

  .step-content {
    padding-left: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
