.elementor-694 .elementor-element.elementor-element-3a53362{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-694 .elementor-element.elementor-element-3a53362:not(.elementor-motion-effects-element-type-background), .elementor-694 .elementor-element.elementor-element-3a53362 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FF0000;}/* Start custom CSS for html, class: .elementor-element-cbd5c03 *//* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS VARIABLES ── */
:root {
  --red:    #e30006;
  --dark:   #c80005;
  --card:   rgba(255,255,255,0.12);
  --border: rgba(255,255,255,0.25);
  --white:  #ffffff;
  --grey:   rgba(255,255,255,0.7);
  --light:  rgba(255,255,255,0.88);
}

/* ── BASE ── */
html, body {
  height: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── WHITE GLOW BLOB ── */
.glow-blob {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}

nav img {
  height: 40px;
  filter: brightness(0) invert(1);
}

/* ── MAIN ── */
main {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

/* ── ICON CIRCLE ── */
.icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.icon-wrap svg {
  width: 42px;
  height: 42px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  animation: fadeUp 0.5s 0.2s ease both;
}

/* ── HEADLINE ── */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.3s ease both;
}

h1 span {
  color: #ffffff;
  opacity: 0.9;
}

/* ── SUBTEXT ── */
.sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--light);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 48px;
  animation: fadeUp 0.5s 0.4s ease both;
}

.sub strong {
  color: #fff;
  font-weight: 700;
}

/* ── WHAT HAPPENS NEXT GRID ── */
.next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 780px;
  width: 100%;
  margin: 0 auto 48px;
  animation: fadeUp 0.5s 0.5s ease both;
}

.next-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(6px);
}

.next-card:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.next-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.next-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── CTA BUTTONS ── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.5s 0.6s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--red);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.12);
}

/* ── DIVIDER ── */
.divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  margin: 48px auto;
}

/* ── CONTACT ROW ── */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.5s 0.7s ease both;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #ffffff;
}

.contact-item .icon-sm {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon-sm svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  nav { padding: 18px 20px; }
  .next-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
}/* End custom CSS */