.elementor-4898 .elementor-element.elementor-element-c3caf14{--display:flex;}/* Start custom CSS for container, class: .elementor-element-c3caf14 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ─── Variables ─── */
:root {
  --navy:       #0c1b34;
  --red:        #7a0202;
  --yellow:     #f19325;
  --gray:       #534d4f;
  --light-gray: #ebeced;
  --white:      #ffffff;

  --bg:         #edeae6;
  --bg-card:    #f5f3f0;
  --border:     rgba(12, 27, 52, 0.10);
  --muted:      #7d7779;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Base ─── */
html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
}

/* ─── Dot grid ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(12, 27, 52, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Ambient blobs ─── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(241, 147, 37, 0.18) 0%, transparent 70%);
  top: -130px;
  right: -100px;
  animation: drift1 14s ease-in-out infinite;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(12, 27, 52, 0.10) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: drift2 18s ease-in-out infinite;
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 2, 2, 0.08) 0%, transparent 70%);
  top: 40%;
  left: 8%;
  animation: drift1 20s ease-in-out infinite reverse;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(18px, 16px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-14px, 12px); }
}

/* ─── Corner brackets ─── */
.corner {
  position: fixed;
  width: 52px;
  height: 52px;
  opacity: 0.13;
}

.corner-tl { top: 22px; left: 22px;   border-top: 2px solid var(--navy); border-left:  2px solid var(--navy); }
.corner-tr { top: 22px; right: 22px;  border-top: 2px solid var(--navy); border-right: 2px solid var(--navy); }
.corner-bl { bottom: 22px; left: 22px;  border-bottom: 2px solid var(--navy); border-left:  2px solid var(--navy); }
.corner-br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--navy); border-right: 2px solid var(--navy); }

/* ─── Layout ─── */
.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* ─── Yetti ─── */
.yetti-wrap {
  width: 200px;
  margin-bottom: -22px;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(12, 27, 52, 0.13));
}

.yetti-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-11px); }
}

/* ─── Card ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem 3.4rem 2.6rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow:
    0 2px 0 rgba(12, 27, 52, 0.06),
    0 10px 40px rgba(12, 27, 52, 0.08),
    0 40px 80px rgba(12, 27, 52, 0.04);
  animation: rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Red-to-yellow accent stripe */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 0 0 4px 4px;
  opacity: 0.85;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Status pill ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(122, 2, 2, 0.07);
  border: 1px solid rgba(122, 2, 2, 0.18);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink-dot 1.8s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ─── Heading ─── */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

h1 em {
  font-style: italic;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--yellow);
}

/* ─── Subtitle ─── */
.sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-icon {
  font-size: 0.6rem;
  color: var(--yellow);
  opacity: 0.75;
  letter-spacing: 4px;
}

/* ─── Back link ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  transition: all 0.25s ease;
}

.back-link:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  gap: 12px;
  box-shadow: 0 4px 18px rgba(12, 27, 52, 0.16);
}

.back-link svg {
  transition: transform 0.25s ease;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* ─── Contact Block ─── */
.contact-block {
  text-align: left;
  margin-bottom: 1.4rem;
}

.contact-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
  text-align: center;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(12, 27, 52, 0.05);
  color: var(--navy);
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-type {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.contact-value {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ─── Contact CTA Button ─── */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #a00303);
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(122, 2, 2, 0.22);
  transition:
    transform     0.22s ease,
    box-shadow    0.22s ease,
    filter        0.22s ease,
    gap           0.22s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(122, 2, 2, 0.32);
  filter: brightness(1.08);
  gap: 12px;
}

.contact-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(122, 2, 2, 0.2);
  filter: brightness(0.96);
}

/* ─── Footer ─── */
.footer {
  position: fixed;
  bottom: 1.6rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.45;
}/* End custom CSS */