/* =============================================
   OPTIMOOJI — Landing Page Styles
   ============================================= */

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

:root {
  --green-main:  #2EAD5B;
  --green-dark:  #1E7A3F;
  --green-light: #E8F7EE;
  --green-mid:   #4DC977;
  --cream:       #FAFFF8;
  --dark:        #0E1C14;
  --dark-2:      #1A2E20;
  --gray-text:   #4A5E50;
  --gray-light:  #8FA895;
  --border:      rgba(46, 173, 91, 0.18);
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 255, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 38px; height: 38px;
  object-fit: contain; border-radius: 8px;
}
.nav-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 20px;
  color: var(--dark); letter-spacing: -0.3px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--gray-text);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-main); }

.nav-cta {
  background: var(--green-main);
  color: white;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ---- LANGUAGE SWITCHER (desktop) ---- */
.lang-switcher { position: relative; margin-left: 4px; }
.lang-current {
  display: flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--gray-text);
  transition: border-color 0.2s, background 0.2s;
}
.lang-current:hover { border-color: var(--green-main); background: var(--green-light); }
.lang-flag {
  width: 18px; height: 13px; object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  display: block;
}
.lang-code { letter-spacing: 0.3px; }
.lang-caret { color: var(--gray-light); transition: transform 0.2s; flex-shrink: 0; }
.lang-current[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(14,28,20,0.14);
  list-style: none;
  min-width: 152px;
  padding: 6px;
  margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px; color: var(--dark);
  transition: background 0.15s;
}
.lang-menu li:hover { background: var(--green-light); }
.lang-menu li.active { background: var(--green-light); color: var(--green-dark); font-weight: 600; }
.lang-menu li img {
  width: 20px; height: 15px; object-fit: cover;
  border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* ---- LANGUAGE SWITCHER (mobile menu) ---- */
.mobile-lang-switcher {
  display: flex; gap: 8px;
  padding-top: 4px;
}
.mobile-lang-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--green-light);
  border: 1px solid transparent;
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--gray-text);
}
.mobile-lang-btn img {
  width: 18px; height: 13px; object-fit: cover;
  border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.mobile-lang-btn.active { background: var(--green-main); color: white; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(250,255,248,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  flex-direction: column; gap: 16px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  text-decoration: none; color: var(--gray-text);
  font-size: 16px; font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-cta { margin-top: 8px; text-align: center; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--green-main); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: none;
  font-family: inherit;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent; color: var(--dark);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--green-main); color: var(--green-main); }

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(46,173,91,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-dark);
  border: 1px solid rgba(46,173,91,0.3);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green-main); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--dark);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green-main); }

.hero p {
  font-size: 17px; color: var(--gray-text);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(46,173,91,0.12);
  animation: ringpulse 4s ease-in-out infinite;
}
.hero-ring:nth-child(1){width:320px;height:320px;animation-delay:0s}
.hero-ring:nth-child(2){width:420px;height:420px;animation-delay:0.8s}
.hero-ring:nth-child(3){width:520px;height:520px;animation-delay:1.6s}
@keyframes ringpulse {
  0%,100%{opacity:0.7;transform:scale(1)}
  50%{opacity:0.2;transform:scale(1.02)}
}
.hero-logo-wrap {
  position: relative; z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-img {
  width: 260px; height: 260px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 24px 48px rgba(46,173,91,0.3));
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ---- STATS ---- */
.stats-bar { background: var(--dark); padding: 48px 5%; }
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  text-align: center;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 42px; font-weight: 700;
  color: var(--green-mid); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.45); }

/* ---- SHARED SECTION ---- */
section { padding: 96px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 12px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-main);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; letter-spacing: -1px;
  color: var(--dark); line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--gray-text);
  line-height: 1.7; max-width: 580px;
  margin-bottom: 56px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto 56px; }

/* ---- NOSOTROS ---- */
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-intro {
  font-size: 17px; color: var(--gray-text);
  line-height: 1.7; margin-bottom: 32px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: rgba(46,173,91,0.5); }
.about-card-icon {
  width: 44px; height: 44px;
  background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.about-card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--green-main); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.about-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 10px; color: var(--dark);
}
.about-card p { font-size: 15px; color: var(--gray-text); line-height: 1.7; }

.about-right { padding-top: 60px; }
.dark-card { background: var(--dark) !important; border-color: transparent !important; }
.dark-card h3 { color: white; }
.dark-card p { color: rgba(255,255,255,0.5) !important; }
.green-icon { background: rgba(46,173,91,0.15) !important; }
.green-icon svg { stroke: var(--green-mid) !important; }
.green-card { background: var(--green-main) !important; border-color: transparent !important; }
.green-card h3 { color: white; margin-bottom: 8px; }
.green-card p { color: rgba(255,255,255,0.85) !important; }

/* ---- SERVICIOS ---- */
.services { background: var(--dark); }
.services .section-title { color: white; }
.services .section-sub { color: rgba(255,255,255,0.5); }
.services .section-label { color: var(--green-mid); }

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 28px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top:0; left:0; right:0; height: 3px;
  background: var(--green-main); opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  background: rgba(46,173,91,0.08);
  border-color: rgba(46,173,91,0.3);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--green-mid);
  margin-bottom: 20px; display: block;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(46,173,91,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--green-mid); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 600;
  color: white; margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ---- PRODUCTOS ---- */
.products-wrap { max-width: 1100px; margin: 0 auto; }
.products-wrap .center { margin-bottom: 56px; }

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 8px 40px rgba(46,173,91,0.12); }

.product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-dark); background: var(--green-light);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.product-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--dark); letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.product-card p {
  font-size: 15px; color: var(--gray-text);
  line-height: 1.7; margin-bottom: 28px;
}
.product-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-text);
}
.product-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%232EAD5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  border-radius: 50%;
}
.product-action { margin-top: 28px; }

.vitalia-visual {
  background: radial-gradient(ellipse 90% 75% at 50% 35%, #ffffff 0%, #f4f2ee 100%);
  border-radius: 20px;
  padding: 48px 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 280px; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(209, 8, 8, 0.05);
}
.vitalia-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 38%, rgba(45,168,214,0.10) 0%, rgba(168,85,214,0.08) 45%, transparent 75%);
}
.vitalia-logo-img {
  width: 560px; max-width: 80%; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 14px 30px rgba(20,20,20,0.14));
}
.vitalia-tags {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px; position: relative; z-index: 1;
}
.vitalia-tag {
  background: white;
  border: 1px solid rgba(46,173,91,0.25);
  color: var(--green-dark); font-size: 11px;
  font-weight: 600; padding: 5px 13px;
  border-radius: 100px; letter-spacing: 0.5px;
}

.coming-soon {
  background: var(--green-light);
  border: 1px dashed rgba(46,173,91,0.4);
  border-radius: 20px; padding: 48px;
  text-align: center;
}
.coming-soon-icon { font-size: 32px; margin-bottom: 12px; }
.coming-soon h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px; color: var(--dark); margin-bottom: 10px;
}
.coming-soon p {
  font-size: 15px; color: var(--gray-text);
  max-width: 500px; margin: 0 auto 24px;
}

/* ---- VALORES ---- */
.values { background: var(--green-light); }
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.value-card {
  background: white; border-radius: 14px;
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(46,173,91,0.12);
  transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.value-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--dark); margin-bottom: 10px;
}
.value-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ---- CTA / CONTACTO ---- */
.cta-section {
  background: var(--dark); text-align: center;
  padding: 96px 5%;
}
.cta-section .section-label { color: var(--green-mid); }
.cta-section .section-title { color: white; max-width: 600px; margin: 0 auto 16px; }
.cta-section .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 40px; }

.contact-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 12px 14px;
  font-size: 14px; color: white;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-main); }
.form-group textarea { resize: vertical; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px;
}
.form-check input { width: auto; margin-top: 2px; accent-color: var(--green-main); }
.form-check label { font-size: 13px; color: rgba(255,255,255,0.5); cursor: pointer; }

.contact-success { text-align: center; padding: 40px 0; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--green-main); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white; margin: 0 auto 16px;
}
.contact-success h3 { font-family: 'Sora', sans-serif; color: white; font-size: 22px; margin-bottom: 8px; }
.contact-success p { color: rgba(255,255,255,0.5); font-size: 15px; }

/* ---- FOOTER ---- */
footer {
  background: #070E09; padding: 48px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 20px; color: white;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-mid); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.25); font-style: italic; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-cta, .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 280px; }
  .hero-logo-img { width: 200px; height: 200px; }
  .hero-ring:nth-child(1){width:240px;height:240px}
  .hero-ring:nth-child(2){width:310px;height:310px}
  .hero-ring:nth-child(3){width:380px;height:380px}
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 32px; }
  .stat-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-right { padding-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  section { padding: 64px 5%; }
  .hero { padding: 90px 5% 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
}
