:root {
  --accent: #E74C3C;
  --accent-dark: #C0392B;
  --accent-light: #F5B7B1;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-tint: #FDF2F1;
  --text: #2C3E50;
  --text-soft: #5D6D7E;
  --text-muted: #95A5A6;
  --border: #ECF0F1;
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.06);
  --shadow-md: 0 6px 24px rgba(44, 62, 80, 0.10);
  --shadow-lg: 0 16px 48px rgba(44, 62, 80, 0.14);
  --shadow-accent: 0 8px 24px rgba(231, 76, 60, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
  --header-h-sm: 64px;
  --container: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--accent-dark); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); }
.section--accent { background: var(--accent); color: #fff; }
.section--accent h1,
.section--accent h2,
.section--accent h3 { color: #fff; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 40px 0;
  background: var(--bg);
}

.divider::before,
.divider::after {
  content: '';
  flex: 0 1 120px;
  height: 1px;
  background: var(--border);
}

.divider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.divider__icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: height 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: var(--header-h-sm);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.site-header__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo:hover { color: var(--text); }

.logo__mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.4s var(--ease);
}

.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }

.logo__text span { color: var(--accent); }

.site-header.is-scrolled .logo { font-size: 1.3rem; }
.site-header.is-scrolled .logo__mark { width: 30px; height: 30px; font-size: 0.95rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--accent);
  background: var(--bg-tint);
}

.nav__link.active,
.nav__link[aria-current="page"] {
  color: var(--accent);
  font-weight: 500;
}

.nav__link.active::after,
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle__bar {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    linear-gradient(135deg, rgba(231, 76, 60, 0.88) 0%, rgba(192, 57, 43, 0.82) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg) 0 0 0;
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__title em {
  color: var(--accent);
  font-style: normal;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn::after {
  content: '→';
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-accent);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn:hover::after { transform: translateX(6px); }

.btn:active { transform: translateY(-1px) scale(1); }

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: #fff;
}

.btn--dark {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.btn--dark:hover {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.3);
}

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
}

.btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

.btn--block {