/* =========================================
   RANGER MARKETING — Shared Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple:        #8B2FBE;
  --purple-dark:   #6B1F9E;
  --purple-light:  #A94FD8;
  --purple-pale:   #F3E8FD;
  --black:         #1A1A1A;
  --dark-gray:     #4A4A4A;
  --mid-gray:      #9A9A9A;
  --light-gray:    #F5F5F5;
  --border:        #E0E0E0;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --shadow-purple: 0 4px 20px rgba(139,47,190,0.25);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
  --font-heading:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--dark-gray); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--mid-gray); }
.section--gray { background: var(--light-gray); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: var(--dark-gray); }
.section--dark .section-header p { color: var(--mid-gray); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.text-purple { color: var(--purple); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-family: var(--font-heading); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: var(--transition); min-height: 48px; white-space: nowrap;
}
.btn-primary { background: var(--purple); color: var(--white); box-shadow: var(--shadow-purple); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(139,47,190,0.35); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline-purple { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline-purple:hover { background: var(--purple); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--dark-gray); transform: translateY(-2px); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: var(--black); transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: none; align-items: center; gap: 0.25rem; }
.nav__links a {
  color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); background: rgba(139,47,190,0.2); }
.nav__cta { margin-left: 0.5rem; }
.nav__hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer;
  min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--black);
  padding: 1.5rem; transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: var(--transition); border-top: 1px solid rgba(255,255,255,0.1); z-index: 999;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav__mobile a {
  display: block; color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.875rem 1rem; border-radius: var(--radius-sm); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a:hover { color: var(--white); background: rgba(139,47,190,0.15); }
.nav__mobile a.btn-primary { border-bottom: none; margin-top: 0.5rem; text-align: center; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__mobile { display: none; }
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; background: var(--black);
  position: relative; overflow: hidden; padding-top: var(--nav-height);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,47,190,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(139,47,190,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; padding: 4rem 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 1.25rem;
}
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--purple); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; line-height: 1.1; }
.hero h1 span { color: var(--purple); }
.hero__sub { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; font-family: var(--font-heading);
  letter-spacing: 0.1em; text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-arrow { width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Stats Bar */
.stats { background: #111; border-top: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__number { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--purple); line-height: 1; margin-bottom: 0.4rem; }
.stat__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); }

/* About */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about__text h2 { margin-bottom: 1.25rem; }
.about__pullquote {
  border-left: 3px solid var(--purple); padding: 1rem 1.5rem; margin: 1.75rem 0;
  background: var(--purple-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__pullquote p { font-size: 1.05rem; font-style: italic; color: var(--dark-gray); margin: 0; font-weight: 500; }
.about__visual { display: flex; align-items: center; justify-content: center; }
.about__shield-bg {
  width: 280px; height: 280px; background: var(--light-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.about__shield-bg::before {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(var(--purple) 0deg 90deg, transparent 90deg 360deg); z-index: 0;
}
.about__shield-bg::after { content: ''; position: absolute; inset: 2px; border-radius: 50%; background: var(--light-gray); z-index: 0; }
.about__shield-bg img { position: relative; z-index: 1; width: 200px; height: auto; }
.about__badge {
  position: absolute; bottom: 0; right: -20px; background: var(--purple); color: var(--white);
  border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.65rem; text-align: center; letter-spacing: 0.03em; line-height: 1.3; box-shadow: var(--shadow-purple);
}
.about__badge strong { font-size: 1.4rem; display: block; }
.about__visual-wrap { position: relative; display: inline-block; }

/* Services */
.service-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--purple); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; background: var(--purple-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; margin: 0; }

/* Why Us */
.why-card { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); }
.why-card__icon { flex-shrink: 0; width: 46px; height: 46px; background: var(--purple); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.why-card__icon svg { width: 22px; height: 22px; color: var(--white); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-card__text h4 { margin-bottom: 0.4rem; }
.why-card__text p { font-size: 0.9rem; margin: 0; }

/* Audience */
.audience__card { background: var(--white); border-radius: var(--radius-lg); padding: 3rem 2.5rem; border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.audience__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience__card--dark { background: var(--black); border-color: rgba(255,255,255,0.1); }
.audience__card--dark h3 { color: var(--white); }
.audience__card--dark p { color: var(--mid-gray); }
.audience__icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; background: var(--purple-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.audience__card--dark .audience__icon { background: rgba(139,47,190,0.2); }
.audience__icon svg { width: 30px; height: 30px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.audience__card h3 { margin-bottom: 1rem; }
.audience__list { text-align: left; margin: 1.25rem 0 1.75rem; }
.audience__list li { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.95rem; color: var(--dark-gray); }
.audience__card--dark .audience__list li { color: var(--mid-gray); }
.audience__list li::before { content: ''; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; flex-shrink: 0; }

/* Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card__quote { font-size: 3.5rem; color: var(--purple); font-family: Georgia, serif; line-height: 1; opacity: 0.25; margin-bottom: -0.5rem; }
.testimonial-card__text { font-size: 0.95rem; font-style: italic; color: var(--dark-gray); margin-bottom: 1.25rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--mid-gray); flex-shrink: 0; }
.testimonial-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--black); }
.testimonial-card__role { font-size: 0.8rem; color: var(--mid-gray); }
.testimonials__note { text-align: center; margin-top: 2.5rem; padding: 1rem 1.5rem; background: var(--purple-pale); border-radius: var(--radius-sm); color: var(--purple-dark); font-size: 0.875rem; font-weight: 500; display: inline-block; }
.testimonials__note-wrap { text-align: center; margin-top: 2rem; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; } }
.contact__info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact__detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact__detail-icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(139,47,190,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact__detail-icon svg { width: 18px; height: 18px; color: var(--purple-light); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact__detail-text { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.5; }
.contact__detail-text strong { display: block; color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; font-family: var(--font-heading); }
.contact__social { display: flex; gap: 0.75rem; margin-top: 2rem; }
.contact__social a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--mid-gray); transition: var(--transition); }
.contact__social a:hover { background: var(--purple); color: var(--white); }
.contact__social svg { width: 18px; height: 18px; fill: currentColor; }

/* Forms */
.form__group { margin-bottom: 1.25rem; }
.form__group label { display: block; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark-gray); margin-bottom: 0.5rem; }
.form__group label .req { color: var(--purple); margin-left: 2px; }
.form__group input, .form__group textarea, .form__group select {
  width: 100%; padding: 0.875rem 1rem; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--black); transition: var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form__group input:focus, .form__group textarea:focus, .form__group select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,47,190,0.12); }
.form__group textarea { min-height: 120px; resize: vertical; }
.form__group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; cursor: pointer; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .form__row--2 { grid-template-columns: 1fr 1fr; } .form__row--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .form__row--4 { grid-template-columns: repeat(4, 1fr); } }
.form__checkbox { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; margin-top: 0.5rem; }
.form__checkbox input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--purple); }
.form__checkbox span { font-size: 0.875rem; color: var(--dark-gray); line-height: 1.5; }
.form__hint { font-size: 0.78rem; color: var(--mid-gray); margin-top: 0.4rem; }

.contact__form .form__group label { color: rgba(255,255,255,0.7); }
.contact__form .form__group input, .contact__form .form__group textarea, .contact__form .form__group select { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: var(--white); }
.contact__form .form__group input::placeholder, .contact__form .form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact__form .form__group input:focus, .contact__form .form__group textarea:focus, .contact__form .form__group select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,47,190,0.2); background: rgba(255,255,255,0.1); }
.contact__form .form__group select option { background: var(--black); color: var(--white); }
.contact__form .form__checkbox span { color: rgba(255,255,255,0.6); }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; display: none; margin-top: 1rem; }
.alert.show { display: block; }
.alert--success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert--error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.alert--success-dark { background: rgba(72,187,120,0.15); color: #68D391; border: 1px solid rgba(72,187,120,0.2); }
.alert--error-dark { background: rgba(245,101,101,0.15); color: #FC8181; border: 1px solid rgba(245,101,101,0.2); }

/* Footer */
.footer { background: var(--black); padding: 4rem 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; } }
.footer__brand img { height: 44px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--mid-gray); transition: var(--transition); }
.footer__social a:hover { background: var(--purple); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.875rem; color: var(--mid-gray); transition: var(--transition); }
.footer__links a:hover { color: var(--purple-light); padding-left: 4px; }
.footer__contact-item { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--purple); flex-shrink: 0; margin-top: 3px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer__contact-item span { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.5; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer__legal a:hover { color: var(--purple-light); }

/* Page Header */
.page-hero { background: var(--black); padding: calc(var(--nav-height) + 3rem) 0 3rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(139,47,190,0.15) 0%, transparent 60%); }
.page-hero__content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--mid-gray); margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--purple-light); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; font-size: 1.05rem; }

/* Policy */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--black); }
.policy-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content h3 { font-size: 1.05rem; margin: 1.5rem 0 0.75rem; color: var(--black); }
.policy-content p { font-size: 0.975rem; line-height: 1.8; color: var(--dark-gray); margin-bottom: 1.25rem; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-content ul li { font-size: 0.975rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 0.4rem; }
.policy-content .last-updated { display: inline-block; background: var(--purple-pale); color: var(--purple-dark); font-size: 0.85rem; font-weight: 600; padding: 0.4rem 0.875rem; border-radius: var(--radius-sm); margin-bottom: 2rem; font-family: var(--font-heading); }

/* Apply Page */
.apply-hero { background: var(--black); padding: calc(var(--nav-height) + 4rem) 0 4rem; text-align: center; position: relative; overflow: hidden; }
.apply-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(139,47,190,0.2) 0%, transparent 65%); }
.apply-hero__content { position: relative; z-index: 1; }
.apply-hero h1 { color: var(--white); margin-bottom: 1rem; }
.apply-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.apply__wrapper { max-width: 820px; margin: 0 auto; }
.apply__intro { text-align: center; margin-bottom: 3rem; }
.apply__intro h2 { margin-bottom: 0.75rem; }
.apply__form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
@media (min-width: 768px) { .apply__form-card { padding: 3rem 3.5rem; } }
.form-section-title { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple); margin: 2rem 0 1.25rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--purple-pale); }
.form-section-title:first-child { margin-top: 0; }
.form__file-wrap { position: relative; }
.form__file-label { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1rem; background: var(--light-gray); border: 1.5px dashed var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); font-size: 0.9rem; color: var(--dark-gray); }
.form__file-label:hover { border-color: var(--purple); background: var(--purple-pale); }
.form__file-label svg { width: 20px; height: 20px; color: var(--purple); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form__file-name { font-weight: 500; }

.benefit-card { text-align: center; padding: 2rem 1.5rem; }
.benefit-card__icon { width: 56px; height: 56px; background: var(--purple-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.benefit-card__icon svg { width: 26px; height: 26px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* Loading */
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: var(--white); border-radius: 50%; animation: spin 0.6s linear infinite; display: none; }
.btn.loading .spinner { display: block; }
.btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Accessibility */
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; background: var(--purple); color: var(--white); padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; }
.skip-link:focus { top: 1rem; }

@media print { .nav, .hero, .stats, .footer { display: none; } body { font-size: 12pt; color: #000; } a { color: #000; text-decoration: underline; } }
