/* GLOBAL */
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
}

/* HERO */
.vf-hero {
    position: relative;
    padding: 80px 20px 90px;
    text-align: center;
    color: #f9fafb;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 8%, rgba(255,210,120,0.75) 0%, rgba(255,185,60,0.55) 18%, rgba(251,191,36,0.35) 38%, transparent 70%),
        radial-gradient(circle at 10% 10%, rgba(255,180,80,0.25), transparent 65%),
        radial-gradient(circle at top left, rgba(251,191,36,0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(248,113,113,0.25), transparent 55%),
        linear-gradient(135deg, #0b3b75 0%, #1e3a8a 45%, #111827 100%);
}

.vf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}

.vf-hero-inner {
    position: relative;
    z-index: 3;
}

.vf-hero-logo {
    width: 300px;
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto 26px;
    animation: forgeGlow 2s ease-in-out infinite;
}
@keyframes forgeGlow {
    0% {
        filter:
            drop-shadow(0 6px 14px rgba(0,0,0,0.75))
            drop-shadow(0 0 16px rgba(249,115,22,0.55));
    }
    50% {
        filter:
            drop-shadow(0 10px 24px rgba(0,0,0,0.95))
            drop-shadow(0 0 34px rgba(249,115,22,0.95));
    }
    100% {
        filter:
            drop-shadow(0 6px 14px rgba(0,0,0,0.75))
            drop-shadow(0 0 16px rgba(249,115,22,0.55));
    }
}
/* ============================================================
   FLAG STRIPES LAYER
   ============================================================ */

.vf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/stripes.jpg") center/cover no-repeat;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}


.vf-hero-title {
    font-size: 2.4rem;
    margin: 0 0 16px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.vf-hero-subtitle {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e5e7eb;
}

.vf-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* IRON‑COPPER EMBER BUTTON — #7a1802 BRAND MATCHED */
.vf-btn-frutiger-red {
  cursor: pointer;
  position: relative;
  padding: 2px;
  border-radius: 8px;
  border: 0;

  /* New forged‑ember gradient */
  background: linear-gradient(#4a0f02, #7a1802);
  box-shadow: 0px 4px 6px #0005;
  transition: 0.25s all;
  text-decoration: none;
  display: inline-block;
}

.vf-btn-frutiger-red:hover {
  /* Hotter copper glow on hover */
  background: linear-gradient(#5c1203, #9c2608);
  box-shadow: 0px 7px 14px #0008;
  transform: translateY(-2px);
}

.vf-btn-frutiger-red .inner {
  position: relative;
  inset: 0;
  padding: 0.9em 1.4em;
  border-radius: 6px;

  /* Inner metallic copper panel */
  background:
    radial-gradient(circle at 50% 115%, rgba(255,120,60,0.12) 5%, rgba(255,120,60,0) 45%),
    linear-gradient(#5c1203, #7a1802);
  overflow: hidden;
  transition: inherit;
}

.vf-btn-frutiger-red .inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 2px 8px -2px #0003;
  transition: inherit;
}

.vf-btn-frutiger-red:hover .inner::after {
  box-shadow: inset 0px 2px 10px -2px #0005;
}

.vf-btn-frutiger-red .text {
  position: relative;
  z-index: 1;
  color: #f3ece7;
  font-weight: 600;
  font-size: 1rem;
}


.vf-btn-secondary-link {
	text-decoration: none;
    color: #e5e7eb;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.vf-btn-secondary-link:hover {
    color: #ffffff;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.light {
    background: #ffffff;
}

.section.dark {
    background: #1f2937;
    color: white;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtext {
    max-width: 720px;
    margin: 10px auto 40px;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.7;
}

/* FEATURE GRID */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: left;
    border: 1px solid rgba(17,24,39,0.08);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WORKFLOW */
.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: #111827;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: left;
    border: 1px solid rgba(249,250,251,0.08);
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* EVIDENCE LIST */
.why-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin: 6px 0;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
