:root {
  --primary: #2d5a3d;
  --primary-dark: #1e3d2a;
  --primary-light: #3d7a52;
  --accent: #c4783a;
  --accent-hover: #a8642f;
  --accent-soft: #f4e4d4;
  --warm: #faf6f0;
  --cream: #f5efe6;
  --text: #2c2c2c;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --border: #e8dfd4;
  --success: #2d6a4f;
  --whatsapp: #25d366;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.08);
  --shadow-md: 0 8px 30px rgba(45, 90, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 90, 61, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--warm); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600; line-height: 1.2; color: var(--primary-dark); margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(196, 120, 58, 0.35); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: var(--transition); }
.header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 0.75rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img {
  display: block; height: 56px; width: auto; max-width: 180px; object-fit: contain;
  border-radius: 8px; background: var(--white); padding: 0.2rem 0.35rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: var(--transition);
}
.header.scrolled .logo-img { height: 50px; }
.logo-img--footer { height: 72px; max-width: 200px; }
.nav-desktop { display: none; gap: 2rem; }
.nav-desktop a { font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.header.scrolled .nav-desktop a { color: var(--text); }
.header:not(.scrolled) .nav-desktop a { color: rgba(255,255,255,0.9); }
.nav-desktop a:hover { color: var(--accent); }
.header-cta { display: none; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.header.scrolled .menu-toggle span { background: var(--primary); }
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--primary-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.active { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.nav-mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,61,42,0.88) 0%, rgba(45,90,61,0.75) 50%, rgba(30,61,42,0.6) 100%);
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-text .section-label { color: var(--accent-soft); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.form-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background: var(--warm);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-option {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: 0.9rem; transition: var(--transition);
}
.radio-option:hover, .radio-option:has(input:checked) { border-color: var(--primary); background: rgba(45,90,61,0.05); }
.radio-option input { accent-color: var(--primary); }
.form-message { padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.9rem; margin-top: 1rem; display: none; }
.form-message.success { display: block; background: #d8f3dc; color: var(--success); }
.form-message.error { display: block; background: #fde8e8; color: #c0392b; }

section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

.why-us { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.benefit-card {
  padding: 2rem; background: var(--warm); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.benefit-icon {
  width: 52px; height: 52px; background: var(--accent-soft); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.solutions-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.solution-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end;
}
.solution-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.solution-card:hover img { transform: scale(1.05); }
.solution-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,61,42,0.95) 0%, rgba(30,61,42,0.3) 60%, transparent 100%); }
.solution-content { position: relative; z-index: 1; padding: 2rem; color: var(--white); }
.solution-number { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; }
.solution-content h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.75rem; }
.solution-content p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.25rem; max-width: 400px; }

.emotional { background: var(--primary-dark); color: var(--white); position: relative; overflow: hidden; }
.emotional::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,120,58,0.15) 0%, transparent 70%); pointer-events: none;
}
.emotional .section-title { color: var(--white); }
.emotional .section-label { color: var(--accent); }
.dreams-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.dream-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); transition: var(--transition);
}
.dream-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.dream-icon {
  width: 40px; height: 40px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dream-icon svg { width: 20px; height: 20px; }

.fears { background: var(--cream); }
.fears-wrapper { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.fears-question { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--primary-dark); margin-bottom: 2rem; }
.objection-list { display: flex; flex-direction: column; gap: 1rem; }
.objection-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.objection-item:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.objection-worry { font-weight: 600; color: var(--text-muted); min-width: 180px; font-size: 0.95rem; }
.objection-arrow { color: var(--accent); font-size: 1.25rem; }
.objection-answer { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.fears-message { background: var(--primary); color: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); text-align: center; }
.fears-message svg { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--accent); }
.fears-message h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; }
.fears-message p { opacity: 0.9; margin-bottom: 1.5rem; }

.gallery { background: var(--white); }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border: 1.5px solid var(--border); background: transparent; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,61,42,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.gallery-delete {
  position: absolute; top: 0.5rem; right: 0.5rem; width: 28px; height: 28px;
  border: none; border-radius: 50%; background: rgba(0,0,0,0.65); color: white;
  font-size: 1.25rem; line-height: 1; cursor: pointer; opacity: 0; transition: var(--transition); z-index: 2;
}
.gallery-item:hover .gallery-delete { opacity: 1; }
.gallery-delete:hover { background: #c0392b; }

.gallery-upload-panel {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 2.5rem;
}
.gallery-upload-header h3 { font-family: var(--font-display); color: var(--primary-dark); margin-bottom: 0.5rem; }
.gallery-upload-header p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.upload-dropzone {
  border: 2px dashed var(--primary-light); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem;
  text-align: center; background: var(--white); transition: var(--transition); cursor: pointer;
}
.upload-dropzone.dragover { border-color: var(--accent); background: var(--accent-soft); }
.upload-dropzone svg { color: var(--primary); margin: 0 auto 1rem; }
.upload-dropzone-text { font-weight: 600; color: var(--primary-dark); margin-bottom: 0.5rem; }
.upload-or { display: block; color: var(--text-muted); font-size: 0.85rem; margin: 0.75rem 0; }
.upload-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }
.upload-controls {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-top: 1.25rem;
}
.upload-label { font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.upload-label select {
  padding: 0.5rem 0.75rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); background: var(--white);
}
.upload-toggle { font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.upload-status { font-size: 0.9rem; margin-top: 1rem; min-height: 1.4rem; }
.upload-status.success { color: var(--success); font-weight: 600; }
.upload-status.error { color: #c0392b; font-weight: 600; }
.upload-status.loading { color: var(--primary); }
.upload-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; }
.upload-note code { background: var(--white); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.8rem; }

.testimonials { background: var(--warm); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.testimonial-quote { font-size: 3rem; font-family: var(--font-display); color: var(--accent-soft); line-height: 1; margin-bottom: -0.5rem; }
.testimonial-text { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700;
}
.testimonial-name { font-weight: 600; color: var(--primary-dark); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-placeholder {
  border: 2px dashed var(--border); background: transparent; display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 200px; color: var(--text-muted); text-align: center; padding: 2rem;
}
.testimonial-placeholder svg { width: 40px; height: 40px; margin-bottom: 1rem; opacity: 0.5; }

.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; background: none; border: none; font-family: var(--font-body); font-size: 1.05rem;
  font-weight: 600; color: var(--primary-dark); cursor: pointer; text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.visit-media { background: var(--warm); }
.visit-media-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.media-window {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.media-window-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.25rem; background: var(--cream); border-bottom: 1px solid var(--border);
}
.media-window-header h3 {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--primary-dark); margin: 0;
}
.media-window-header p { margin: 0.25rem 0 0; font-size: 0.88rem; color: var(--text-muted); }
.media-window-body {
  position: relative; width: 100%; aspect-ratio: 16 / 10; background: #1a2e24;
}
.media-window-body iframe,
.media-window-body video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.media-window-body video { object-fit: contain; background: #000; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem; padding: 2rem; text-align: center; color: rgba(255,255,255,0.9);
}
.video-placeholder svg { width: 56px; height: 56px; opacity: 0.85; }
.video-placeholder p { margin: 0; font-size: 0.95rem; line-height: 1.5; max-width: 300px; color: rgba(255,255,255,0.82); }
.media-window-footer {
  padding: 1rem 1.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  justify-content: space-between; border-top: 1px solid var(--border);
}
.media-window-footer span { font-size: 0.88rem; color: var(--text-muted); }

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.final-cta::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
.final-cta .section-title { color: var(--white); }
.final-cta .section-subtitle { color: rgba(255,255,255,0.85); margin: 0 auto 2.5rem; }
.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }

.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; }
.footer h4 { font-family: var(--font-display); color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1001; width: 60px; height: 60px;
  background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--transition); animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; color: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero-content { grid-template-columns: 1.1fr 0.9fr; }
  .visit-media-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-wrapper { grid-template-columns: 1.2fr 0.8fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) { section { padding: 6rem 0; } }
@media (max-width: 767px) {
  .objection-item { flex-direction: column; align-items: flex-start; }
  .objection-worry { min-width: auto; }
  .objection-arrow { display: none; }
  .hero-buttons .btn, .final-cta-buttons .btn { width: 100%; }
}