/* ══ VARIABLES ══ */
:root {
  --bg: #04060f;
  --bg2: #080d1c;
  --bg3: #0c1225;
  --card: #0e1530;
  --border: #1a2545;
  --cyan: #00e5ff;
  --cyan2: #00b8d9;
  --lime: #a8ff3e;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --accent: #ff4d6d;
  --gold: #ffc947;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ BACKGROUND ══ */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.12) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: -100px;
}
.bg-glow-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.09) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main {
  position: relative;
  z-index: 1;
}

/* ==========================================================
/* ══ HERO ══ */
.hero {
  padding: 130px 24px 70px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--cyan);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 26px;
  animation: fadeDown 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s ease infinite;
}

.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 38px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeDown 0.6s 0.3s ease both;
}
.btn-hero-primary {
  padding: 14px 30px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.55);
}
.btn-hero-outline {
  padding: 14px 30px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hero-outline:hover {
  background: rgba(26, 37, 69, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* ══ SECTION WRAPPERS ══ */
.section {
  padding: 70px 24px;
}
.section-narrow {
  padding: 70px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.container-lg {
  max-width: 1100px;
  margin: 0 auto;
}
.container-md {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.eyebrow {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* ══ FORM SECTION ══ */
.form-section {
  padding: 70px 24px;
}
.form-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form-intro {
  padding-top: 8px;
}
.form-intro h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.form-intro h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-intro p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.form-trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-trust-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.04);
}
.fti-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.fti-text strong {
  display: block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.fti-text span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── The Form ── */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan), var(--cyan2));
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-family: "Poiret One", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.form-label .req {
  color: var(--cyan);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%238892b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-select option {
  background: #000d6b;
  color: var(--text);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-divider {
  height: 1px;
  background: rgba(0, 229, 255, 0.05);
  margin: 20px 0;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: "Poiret One", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  box-shadow: 0 8px 28px rgba(0, 229, 255, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.5);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.05);
}
.form-privacy .priv-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-privacy p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.form-privacy a {
  color: var(--cyan2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 91, 0.4);
}

/* ══ ASESORÍA ══ */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.advisory-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.advisory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}
.adv-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.adv-content h3 {
  font-family: "Poiret One", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.adv-content p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ ATENCIÓN RÁPIDA ══ */
.attention-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .attention-layout {
    grid-template-columns: 1fr;
  }
}

.attention-text h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.attention-text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.attention-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.attention-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.att-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.att-item:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.05);
}
.att-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--cyan);
}
.att-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* ══ CANALES DE CONTACTO ══ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.channel-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}
.ch-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.ch-label {
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.ch-value {
  font-family: "Poiret One", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}
.ch-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.ch-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  font-size: 0.7rem;
  color: var(--cyan2);
  font-weight: 600;
}

/* Horario especial */
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}
.schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.schedule-row .day {
  color: var(--muted);
}
.schedule-row .hours {
  color: var(--text);
  font-weight: 600;
  font-family: "Poiret One", sans-serif;
  font-size: 0.82rem;
}
.schedule-row .hours.active {
  color: var(--cyan);
}

/* ══ CONFIANZA ══ */
.trust-section {
  padding: 70px 24px;
}
.trust-layout {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.07),
    rgba(0, 229, 255, 0.02)
  );
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.trust-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}
@media (max-width: 768px) {
  .trust-layout {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }
}
.trust-layout h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.trust-layout p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.trust-cta-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 229, 255, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
}
.trust-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.5);
}
.trust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.trust-pillar {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.trust-pillar:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.06);
}
.tp-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.tp-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.tp-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  padding: 0 24px 70px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

/* ══ SUCCESS TOAST ══ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  background: linear-gradient(135deg, #1a4a1a, #2d7a2d);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(80px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  max-width: 340px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.toast-text strong {
  display: block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 2px;
}
.toast-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
  }
  .trust-pillars {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }
}
