:root {
  --bg: #f5f6fb;
  --text: #404040;
  --green: #69e37f;
  --green-dark: #2dbc57;
  --green-soft: rgba(97, 227, 117, 0.16);
  --green-border: rgba(97, 227, 117, 0.35);
  --red: #e35d5d;
  --red-soft: rgba(227, 93, 93, 0.12);
  --red-border: rgba(227, 93, 93, 0.35);
  --lavender: #8f67ff;
  --white: #ffffff;
  --line: rgba(64, 64, 64, 0.08);
  --shadow: 0 28px 72px rgba(64, 64, 64, 0.16);
  --shadow-soft: 0 20px 44px rgba(64, 64, 64, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition-fast: .2s ease;
  --transition-base: .28s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 103, 255, .34), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(105, 227, 127, .24), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(143, 103, 255, .10), transparent 36%),
    linear-gradient(145deg, #fbfbff 0%, #eefbf2 38%, #f4eeff 100%);
  z-index: -2;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 245, .74);
  border-bottom: 1px solid rgba(64, 64, 64, .05);
  box-shadow: 0 8px 24px rgba(64, 64, 64, .04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  font-size: .96rem;
}

.nav-links a:not(.btn):hover { color: var(--green-dark); }

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 0 0 auto;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: .82rem 1.15rem;
  border-radius: 999px;
  background: rgba(97, 227, 117, .16);
  border: 1px solid rgba(97, 227, 117, .24);
  box-shadow: var(--shadow-soft);
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-phone:hover { transform: translateY(-2px); }

.menu-btn {
  display: none;
  border: 0;
  background: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-menu.open {
  display: grid;
  gap: .75rem;
}

.mobile-menu a {
  background: var(--white);
  border-radius: 14px;
  padding: .95rem 1rem;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: 1rem 1.4rem;
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #7adf8d, #8b67ff);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(139, 103, 255, .18);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn-primary:hover::after { transform: translateX(120%); }

.btn-secondary {
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(64, 64, 64, .08);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  padding: .8rem 1.1rem;
  border: 1px solid rgba(64, 64, 64, .1);
  background: rgba(255, 255, 255, .8);
}

.btn-sm { padding: .75rem 1rem; }
.btn-full { width: 100%; }

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(178, 158, 252, .18);
  color: #5d4faa;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.statement-card h2,
.process-copy h2,
.cta-box h2,
.contact-copy h2,
.form-top h3,
.legal-box h1,
.legal-box h2,
.cookie-copy strong {
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: -.04em;
  line-height: .98;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 3.2rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
}

.hero-grid-form {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
}

.hero h1 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
  max-width: 10ch;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
  color: rgba(64, 64, 64, .9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.7rem 0 1.45rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics div {
  padding: .95rem 1rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(64, 64, 64, .06);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  margin-bottom: .2rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.28rem;
}

.hero-metrics span {
  font-size: .92rem;
}

.hero-form-card {
  position: relative;
  align-self: start;
  padding: 1.35rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(64, 64, 64, .06);
  border-radius: 32px;
  box-shadow: 0 26px 60px rgba(64, 64, 64, .14);
  backdrop-filter: blur(16px);
}

.hero-form-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(105, 227, 127, .22), rgba(143, 103, 255, .18));
  z-index: -1;
  filter: blur(18px);
  opacity: .9;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
}

.hero-orb-1 {
  top: 40px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(178, 158, 252, .36), rgba(178, 158, 252, 0));
}

.hero-orb-2 {
  right: -90px;
  bottom: 10px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(97, 227, 117, .22), rgba(97, 227, 117, 0));
}

.hero-visual {
  position: relative;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(64, 64, 64, .14);
  border: 1px solid rgba(64, 64, 64, .06);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,246,251,.92));
}

.hero-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,.26) 45%,
    rgba(255,255,255,.72) 100%
  );
}

.hero-form-card-overlay {
  position: absolute;
  right: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(100%, 405px);
  padding: .95rem .95rem .9rem;
  background: rgba(255,255,255,.90);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(64,64,64,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.hero-form-top h3 {
  font-size: 1.28rem;
  margin-bottom: .2rem;
}

.hero-form-top p {
  font-size: .9rem;
}

.compact-form-overlay label {
  margin-bottom: .8rem;
}

.compact-form-overlay label > span {
  font-size: .84rem;
}

.compact-form-overlay input:not([type="checkbox"]),
.compact-form-overlay select {
  min-height: 46px;
  padding: .76rem .88rem;
  border-radius: 15px;
}

.field-grid-overlay {
  gap: .8rem;
}

.check-line-overlay {
  margin-top: .1rem;
}

.check-line-overlay .check-text {
  font-size: 13px;
}

.compact-footer-overlay .btn {
  min-height: 50px;
}

/* Generic sections */
.logos-strip { padding: 1rem 0 2rem; }

.strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .8rem;
}

.strip-inner span {
  padding: .95rem .8rem;
  text-align: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(64, 64, 64, .06);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.statement-section,
.benefits-section,
.process-section,
.values-section,
.contact-section {
  padding: 3rem 0 5rem;
}

.statement-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.statement-card,
.process-copy,
.contact-copy,
.benefit-card,
.cta-box,
.contact-form {
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(64, 64, 64, .06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.statement-card {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
}

.statement-card h2,
.section-heading h2,
.process-copy h2,
.contact-copy h2,
.cta-box h2 {
  margin: .9rem 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.statement-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.benefit-grid,
.image-band-grid,
.sector-grid {
  display: grid;
  gap: 1.3rem;
}

.benefit-grid { grid-template-columns: repeat(4, 1fr); }

.benefit-card {
  padding: 1.6rem;
  border-radius: 24px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(97, 227, 117, .24), rgba(178, 158, 252, .25));
  border-radius: 18px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.benefit-card h3,
.step h3,
.glass-copy strong,
.sector-copy h3 {
  margin: 0 0 .7rem;
}

.image-band { padding: 0 0 2rem; }

.image-band-grid { grid-template-columns: 1fr 1fr 1fr; }

.band-item {
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process */
.process-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: rgba(247, 245, 245, .92);
  border-radius: 20px;
}

.step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--lavender), var(--green));
  border-radius: 50%;
  color: #1f1f1f;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
}

.glass-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.glass-copy { padding: 1.35rem 1.4rem 1.6rem; }

/* Sectors */
.sector-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.sector-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(64, 64, 64, .06);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.sector-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sector-copy { padding: 1.2rem 1.3rem 1.4rem; }

/* CTA */
.cta-section { padding: 1rem 0 4rem; }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(143, 103, 255, .14), rgba(105, 227, 127, .12));
  border-radius: 34px;
}

/* Contact */
.contact-grid {
  align-items: stretch;
  gap: 2.75rem;
}

.contact-copy {
  max-width: 560px;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-points div {
  display: grid;
  gap: .2rem;
  padding: 1rem;
  background: rgba(247, 245, 245, .92);
  border-radius: 18px;
}

.contact-points div span { font-weight: 400; }

.contact-phone {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  background: rgba(97, 227, 117, .12);
  border: 1px solid rgba(97, 227, 117, .2);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.contact-phone strong {
  display: block;
  margin-bottom: .28rem;
}

.contact-phone a {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.contact-form {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  padding: 2rem;
  background: rgba(255, 255, 255, .97);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(64, 64, 64, .10);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(97, 227, 117, .32), rgba(178, 158, 252, .26));
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-top {
  margin-bottom: 1.25rem;
}

.form-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: .8rem;
  padding: .45rem .8rem;
  background: rgba(97, 227, 117, .14);
  border-radius: 999px;
  color: #238544;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.form-top h3 {
  margin: 0 0 .45rem;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.form-top p {
  margin: 0;
  color: rgba(64, 64, 64, .76);
}

.form-note {
  margin: 0 0 .95rem;
  color: rgba(64, 64, 64, .72);
  font-size: .92rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: .5rem;
  width: 100%;
  margin-bottom: 1rem;
}

.contact-form label > span {
  font-size: .92rem;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: .95rem 1rem;
  background: #fff;
  border: 1px solid rgba(64, 64, 64, .10);
  border-radius: 18px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(64, 64, 64, .18);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(97, 227, 117, .9);
  box-shadow: 0 0 0 4px rgba(97, 227, 117, .16);
  transform: translateY(-1px);
}

/* Validación */
.contact-form .is-error,
.contact-form input:not([type="checkbox"]).is-error,
.contact-form textarea.is-error,
.contact-form select.is-error {
  border-color: var(--red) !important;
  background: linear-gradient(0deg, var(--red-soft), var(--red-soft)), #fff;
  box-shadow: 0 0 0 4px rgba(227, 93, 93, .12) !important;
}

.contact-form .is-success,
.contact-form input:not([type="checkbox"]).is-success,
.contact-form textarea.is-success,
.contact-form select.is-success {
  border-color: var(--green-dark) !important;
  background: linear-gradient(0deg, var(--green-soft), var(--green-soft)), #fff;
  box-shadow: 0 0 0 4px rgba(97, 227, 117, .12) !important;
}

.contact-form .field-help,
.contact-form .field-error,
.contact-form .field-success {
  display: block;
  margin-top: .15rem;
  font-size: .82rem;
  line-height: 1.35;
}

.contact-form .field-help { color: rgba(64, 64, 64, .58); }
.contact-form .field-error { color: var(--red); }
.contact-form .field-success { color: var(--green-dark); }

.contact-form input:not([type="checkbox"]):focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible,
.contact-form button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(97, 227, 117, .14),
    0 10px 24px rgba(64, 64, 64, .08);
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin: 4px 0 0;
}

.check-line input[type="checkbox"] {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 4px 0 0;
  padding: 0;
  flex: 0 0 16px;
  accent-color: var(--green-dark);
}

.check-line .check-text {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 400;
}

.check-line .check-text a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-footer { margin-top: 1rem; }

/* Footer */
.footer {
  padding: 3.25rem 0 1.4rem;
  background: #363636;
  color: rgba(255, 255, 255, .84);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(120px, .7fr));
  gap: 2.25rem;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 34ch;
  margin: 0;
}

.footer-col {
  display: grid;
  gap: .7rem;
  align-content: start;
}

.footer-col h4 {
  margin: 0 0 .2rem;
  color: #fff;
  font-size: 1rem;
}

.footer-col a { color: rgba(255, 255, 255, .74); }
.footer-col a:hover { color: var(--green); }

.footer-phone-col {
  display: grid;
  gap: .45rem;
}

.footer-phone-col h4 { margin: 0; }

.footer-phone {
  display: block;
  margin: 0;
  color: #fff !important;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.footer-phone:hover { color: var(--green) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
}

/* Legal */
.legal-page { padding: 4rem 0; }

.legal-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(64, 64, 64, .06);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.legal-box h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-box h2 {
  margin-top: 1.8rem;
  margin-bottom: .6rem;
  font-size: 1.25rem;
}

.legal-box p,
.legal-box li { color: rgba(64, 64, 64, .9); }

.legal-box ul { padding-left: 1.2rem; }

/* Cookies */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 24px));
  z-index: 9999;
}

.cookie-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 245, 245, .94));
  border: 1px solid rgba(64, 64, 64, .08);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(64, 64, 64, .18);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cookie-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(178, 158, 252, .16), transparent 28%),
    radial-gradient(circle at right center, rgba(97, 227, 117, .14), transparent 24%);
  pointer-events: none;
}

.cookie-copy,
.cookie-actions {
  position: relative;
  z-index: 1;
}

.cookie-copy strong {
  display: inline-block;
  margin-bottom: .3rem;
  font-size: 1.05rem;
}

.cookie-copy p {
  margin: 0;
  color: rgba(64, 64, 64, .82);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}

.cookie-actions .btn { min-width: 110px; }

.cookie-link {
  color: var(--green-dark);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Effects */
.reveal,
.reveal-delay,
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

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

.floating { animation: floating 5s ease-in-out infinite; }
.floating-delayed { animation: floatingDelayed 6s ease-in-out infinite; }

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatingDelayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.shine-card {
  position: relative;
  overflow: hidden;
}

.shine-card::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 60%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: rotate(20deg);
  transition: transform .9s ease;
}

.shine-card:hover::after { transform: translateX(250%) rotate(20deg); }

.pulse-soft { animation: pulseSoft 3.2s ease-in-out infinite; }

@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 18px 38px rgba(64, 64, 64, .08); }
  50% { box-shadow: 0 24px 52px rgba(97, 227, 117, .18); }
}

.strip-inner span,
.benefit-card,
.step,
.sector-card,
.band-item,
.contact-points div,
.statement-card,
.process-copy,
.glass-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.strip-inner span:hover,
.benefit-card:hover,
.sector-card:hover,
.band-item:hover,
.contact-points div:hover,
.statement-card:hover,
.process-copy:hover,
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(64, 64, 64, .14);
}

.step:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 36px rgba(64, 64, 64, .10);
}

.statement-image img,
.band-item img,
.sector-card img,
.hero-card img,
.glass-card img {
  transition: transform .8s ease, filter .8s ease;
}

.statement-image:hover img,
.band-item:hover img,
.sector-card:hover img,
.hero-card:hover img,
.glass-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

/* ===== FIX FINAL CHECKBOX ===== */
.contact-form label.check-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
}

.contact-form label.check-line input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  flex: 0 0 16px;
}

.contact-form label.check-line .check-text {
  display: inline !important;
  margin: 0 !important;
  line-height: 1.4;
}

/* ===== RECAPTCHA ===== */
.g-recaptcha {
  margin: 10px 0 15px;
}

.contact-form .is-error,
.contact-form input:not([type="checkbox"]).is-error,
.contact-form textarea.is-error,
.contact-form select.is-error {
  border-color: #e35d5d !important;
  background: linear-gradient(0deg, rgba(227,93,93,.06), rgba(227,93,93,.06)), #fff !important;
  box-shadow: 0 0 0 4px rgba(227,93,93,.10) !important;
}

.contact-form .is-success,
.contact-form input:not([type="checkbox"]).is-success,
.contact-form textarea.is-success,
.contact-form select.is-success {
  border-color: var(--green-dark) !important;
  background: linear-gradient(0deg, rgba(97,227,117,.08), rgba(97,227,117,.08)), #fff !important;
  box-shadow: 0 0 0 4px rgba(97,227,117,.10) !important;
}

.contact-form .field-error,
.contact-form .field-success {
  display: block;
  margin-top: .15rem;
  font-size: .82rem;
  line-height: 1.35;
}

.contact-form .field-error { color: #e35d5d; }
.contact-form .field-success { color: var(--green-dark); }

.form-response {
  margin-top: .9rem;
  font-size: .9rem;
  line-height: 1.4;
  font-weight: 600;
}

.form-response.is-error { color: #e35d5d; }
.form-response.is-success { color: var(--green-dark); }

.form-top-compact h3 {
  font-size: 1.7rem;
}

.compact-form {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  backdrop-filter: none;
}

.compact-form::before {
  display: none;
}

.compact-footer {
  margin-top: .75rem;
}

.field-grid-single-mobile {
  grid-template-columns: 1fr 1fr;
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablet */
@media (max-width: 1100px) {
  .hero-grid-form {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .hero-form-card-overlay {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(calc(100% - 40px), 460px);
    max-width: 460px;
    margin: 0;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    margin-left: 0;
  }

  .statement-grid,
  .process-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-band-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .field-grid-single-mobile {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.5rem 0 2.4rem;
  }

  .hero-grid,
  .hero-grid-form {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-visual {
    min-height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .hero-visual-image,
  .hero-visual-overlay {
    position: relative;
    inset: auto;
    border-radius: 24px;
  }

  .hero-visual-image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 62%;
  }

  .hero-visual-overlay {
    display: none;
  }

  .hero-form-card-overlay {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    z-index: 3;
    width: calc(100% - 16px);
    max-width: 420px;
    margin: -72px auto 0;
    padding: 1rem;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(64, 64, 64, .16);
  }

  .compact-form-overlay input,
  .compact-form-overlay select {
    height: 46px;
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .brand img {
    width: 160px;
  }

  .nav-cta-group {
    width: 100%;
    justify-content: flex-start;
    margin-top: .35rem;
  }

  .nav-phone {
    font-size: 1rem;
    padding: .72rem 1rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-metrics,
  .field-grid,
  .benefit-grid,
  .image-band-grid,
  .strip-inner,
  .sector-grid,
  .footer-top,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .hero-orb-1,
  .hero-orb-2 {
    display: none;
  }

  .hero-form-card {
    padding: 1.1rem;
  }

  .statement-section,
  .benefits-section,
  .process-section,
  .values-section,
  .contact-section {
    padding: 2rem 0 3.2rem;
  }

  .cta-box,
  .statement-card,
  .process-copy,
  .contact-copy,
  .contact-form,
  .legal-box {
    padding: 1.3rem;
  }

  .form-top h3 {
    font-size: 1.5rem;
  }

  .contact-phone a {
    font-size: 1.25rem;
  }

  .cookie-banner {
    bottom: 14px;
    width: calc(100% - 16px);
  }

  .cookie-inner {
    grid-template-columns: 1fr;
    gap: .9rem;
    padding: 1rem;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .footer-phone {
    font-size: 1.35rem;
  }

  .footer-bottom {
    justify-content: start;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-visual-image {
    height: 220px;
    object-position: center 64%;
  }

  .hero-form-card-overlay {
    width: calc(100% - 12px);
    margin: -58px auto 0;
    padding: .9rem;
    border-radius: 18px;
  }
}