/* ============================================================
   WAYNENT V2 — main.css
   Shared design system: Gotham Tayyib
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Noto+Serif+Bengali:wght@400;600&family=Noto+Naskh+Arabic:wght@400;600&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES — "Gotham Tayyib" Palette
   ============================================================ */
:root {
  /* Backgrounds */
  --gotham-void: #0A0A0C;
  --gotham-shadow: #131315;
  --gotham-steel: #222226;

  /* Accents */
  --crimson-signal: #C41C1C;
  --sacred-gold: #C9A961;
  --prophetic-navy: #1E3D5C;

  /* Text */
  --ghost-white: #EFEFEF;
  --mist: #888892;
  --void-white: #FFFFFF;

  /* Glows */
  --crimson-glow: rgba(196, 28, 28, 0.35);
  --gold-glow: rgba(201, 169, 97, 0.25);

  /* Typography scale */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-bangla: 'Noto Serif Bengali', serif;
  --font-arabic: 'Noto Naskh Arabic', serif;

  /* Spacing */
  --section-pad-v: 120px;
  --section-pad-v-mobile: 72px;
  --container-max: 1280px;
  --container-pad: 48px;
  --container-pad-mobile: 20px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--gotham-void);
  color: var(--ghost-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.display-headline {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.sub-headline {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--mist);
}

.label-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.label-caps {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.arabic-text {
  font-family: var(--font-arabic);
  direction: rtl;
  unicode-bidi: embed;
}

/* Bilingual font switch */
.lang-bn .body-text,
.lang-bn p,
.lang-bn li,
.lang-bn label,
.lang-bn .form-label {
  font-family: var(--font-bangla);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad {
  padding: var(--section-pad-v) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   5. VISUAL MOTIFS
   ============================================================ */

/* W-chevron texture background */
.w-chevron-bg {
  position: relative;
}
.w-chevron-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80' viewBox='0 0 120 80'%3E%3Cpath d='M0 0 L20 60 L30 30 L40 60 L60 0 L80 60 L90 30 L100 60 L120 0' fill='none' stroke='%23EFEFEF' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 120px 80px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Rain grain overlay */
.hero-section {
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-section > * {
  position: relative;
  z-index: 2;
}

/* Isolated light pool — gold from above */
.highlight-element {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,97,0.08) 0%, transparent 70%);
}

/* Gold rule lines */
.gold-rule {
  border: none;
  border-top: 1px solid var(--sacred-gold);
  opacity: 0.4;
}
.gold-rule-full {
  border: none;
  border-top: 1px solid var(--sacred-gold);
  opacity: 0.7;
}

/* Crimson left border accent */
.crimson-left-rule {
  border-left: 3px solid var(--crimson-signal);
}

/* Navy tint overlay for sections */
.navy-tint {
  background: linear-gradient(135deg, rgba(30,61,92,0.15) 0%, transparent 60%);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--crimson-signal);
  color: var(--void-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--crimson-glow), 0 0 40px rgba(196,28,28,0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  box-shadow: 0 0 30px var(--crimson-glow), 0 0 60px rgba(196,28,28,0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--sacred-gold);
  border: 1px solid var(--sacred-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 27px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(201, 169, 97, 0.1);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ghost-white);
  border: 1px solid rgba(239,239,239,0.3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 27px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--ghost-white);
  background: rgba(239,239,239,0.05);
}

.btn-nav {
  display: inline-block;
  background: var(--crimson-signal);
  color: var(--void-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px var(--crimson-glow);
  white-space: nowrap;
}
.btn-nav:hover {
  box-shadow: 0 0 24px var(--crimson-glow);
}

.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

/* CTA group spacing */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
  gap: 24px;
}

#main-nav.scrolled {
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,97,0.25);
}

.nav-logo img {
  filter: invert(1) brightness(2);
  height: 28px;
  width: auto;
}

/* Fallback text logo if no image */
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void-white);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ghost-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sacred-gold);
}

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

/* Language toggle */
#lang-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 4px 8px;
}
#lang-toggle:hover {
  color: var(--sacred-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ghost-white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,12,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
#mobile-nav.open {
  display: flex;
}
#mobile-nav .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
#mobile-nav .mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ghost-white);
  transition: color 0.2s;
}
#mobile-nav .mobile-nav-links a:hover {
  color: var(--sacred-gold);
}
#mobile-nav .btn-nav {
  font-size: 14px;
  padding: 14px 32px;
}

/* ============================================================
   8. SECTION COMMON STYLES
   ============================================================ */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
  display: block;
}

.section-label-gold {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sacred-gold);
  margin-bottom: 20px;
  display: block;
}

.section-header {
  margin-bottom: 64px;
}

.section-header .section-headline {
  font-size: 64px;
  color: var(--ghost-white);
  margin-bottom: 20px;
}

.crimson-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--crimson-signal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 28px;
}

/* ============================================================
   9. CARDS
   ============================================================ */
.card {
  background: var(--gotham-shadow);
  border: 1px solid var(--gotham-steel);
  padding: 32px;
}

.card-crimson {
  background: var(--gotham-shadow);
  border: 1px solid var(--gotham-steel);
  border-left: 3px solid var(--crimson-signal);
  padding: 32px;
}

.card-gold {
  background: var(--gotham-shadow);
  border: 1px solid rgba(201,169,97,0.35);
  padding: 32px;
}

.card-navy {
  background: var(--gotham-shadow);
  border: 1px solid rgba(30,61,92,0.6);
  border-left: 3px solid var(--prophetic-navy);
  padding: 32px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ghost-white);
  margin-bottom: 16px;
}

/* ============================================================
   10. AYAT COMPONENT
   ============================================================ */
.ayat-block {
  text-align: center;
  padding: 48px 0 32px;
}

.ayat-arabic {
  font-family: var(--font-arabic);
  font-size: 24px;
  color: var(--sacred-gold);
  direction: rtl;
  unicode-bidi: embed;
  margin-bottom: 16px;
  display: block;
}

.ayat-translation {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mist);
  font-style: italic;
}

.ayat-card {
  border: 1px solid rgba(201,169,97,0.4);
  padding: 32px;
  text-align: center;
  background: rgba(201,169,97,0.04);
}

/* ============================================================
   11. STATUS BADGES
   ============================================================ */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.badge-active {
  color: var(--crimson-signal);
  border: 1px solid rgba(196,28,28,0.4);
  background: rgba(196,28,28,0.08);
}

.badge-next {
  color: var(--sacred-gold);
  border: 1px solid rgba(201,169,97,0.4);
  background: rgba(201,169,97,0.08);
}

.badge-planned {
  color: var(--mist);
  border: 1px solid rgba(136,136,146,0.3);
}

/* ============================================================
   12. FOOTER
   ============================================================ */
#site-footer {
  background: var(--gotham-void);
  border-top: 1px solid rgba(201,169,97,0.35);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  filter: invert(1) brightness(2);
  height: 24px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-white);
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ghost-white);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--sacred-gold);
}

.footer-ayat {
  text-align: center;
  padding: 48px var(--container-pad);
  border-top: 1px solid rgba(201,169,97,0.15);
}

.footer-bottom {
  border-top: 1px solid var(--gotham-steel);
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

/* ============================================================
   13. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   14. PULSING ANIMATIONS
   ============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson-signal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pulse-dot-gold {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sacred-gold);
  animation: pulse-dot-gold 2s ease-in-out infinite;
}

/* ============================================================
   15. PULL QUOTE
   ============================================================ */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--sacred-gold);
  text-transform: uppercase;
  border-left: 3px solid var(--sacred-gold);
  padding: 20px 32px;
  margin: 40px 0;
  background: rgba(201,169,97,0.04);
}

/* ============================================================
   16. TABLES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.data-table th {
  background: rgba(201,169,97,0.1);
  color: var(--sacred-gold);
  text-align: left;
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,97,0.3);
}

.data-table td {
  padding: 14px 16px;
  color: var(--ghost-white);
  border-bottom: 1px solid var(--gotham-steel);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr.table-total td {
  color: var(--sacred-gold);
  font-weight: 500;
  border-top: 1px solid rgba(201,169,97,0.3);
}

/* ============================================================
   17. FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--gotham-void);
  border: 1px solid var(--gotham-steel);
  color: var(--ghost-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(201,169,97,0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(136,136,146,0.5);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  accent-color: var(--sacred-gold);
  width: 16px;
  height: 16px;
}

.radio-option-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ghost-white);
}

/* ============================================================
   18. HERO SECTION BASE
   ============================================================ */
.hero-full {
  min-height: 100vh;
  background: var(--gotham-void);
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  padding: var(--section-pad-v) 0;
}

/* ============================================================
   19. PHOTO PLACEHOLDER
   ============================================================ */
.photo-placeholder {
  background: var(--gotham-shadow);
  border: 1px dashed var(--gotham-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 400px;
  aspect-ratio: 3/4;
}

/* ============================================================
   20. YE'S PHOTO
   ============================================================ */
.ye-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 480px;
}

.ye-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,97,0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.ye-photo-wrap:hover::after {
  background: rgba(201,169,97,0.06);
}

.ye-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  display: block;
  transition: filter 0.4s ease, transform 0.6s ease;
}

.ye-photo-wrap:hover .ye-photo {
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.02);
}

/* ============================================================
   21. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad-v: 88px;
    --container-pad: 32px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .section-header .section-headline {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-v: var(--section-pad-v-mobile);
    --container-pad: var(--container-pad-mobile);
  }

  #main-nav {
    padding: 16px 20px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #lang-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-header .section-headline {
    font-size: 40px;
  }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .pull-quote {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section-header .section-headline {
    font-size: 32px;
  }
}
