/* ==========================================================================
   STARTAWAY - SIMPLIFIED STYLESHEET
   Brand: Navy (#005) & Orange (#f90)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --primary: #005;
  --primary-dark: #003;
  --secondary: #f90;
  --secondary-dark: #c70;
  --bg: #fff;
  --bg-subtle: #def;
  --text: #005;
  --text-muted: #678;
  --line: rgba(0,0,85,0.1);
  --shadow: 0 4px 16px rgba(0,0,85,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,85,0.12);
  --shadow-hover: 0 8px 24px rgba(0,0,85,0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1280px;
  --font: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base & Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 14px/1.4 var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.h1 { font-size: clamp(24px, 3vw, 43px); font-weight: 800; line-height: 1.1; margin: 0 0 24px; }
.h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.2; margin: 0 0 20px; }
.h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; line-height: 1.3; margin: 0 0 16px; }
.h4 { font-size: 20px; font-weight: 700; line-height: 1.4; margin: 0 0 12px; }
.p { font-size: 18px; line-height: 1.7; color: var(--text-muted); margin: 0 0 20px; max-width: 68ch; }
.p2 { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 16px; }
.small { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.text-center { text-align: center; }
.subhead { font-size: clamp(14px, 1.2vw, 18px); line-height: 1.6; color: var(--bg); font-weight: 400; }

/* --------------------------------------------------------------------------
   5. Components
   -------------------------------------------------------------------------- */

/* Accent Bar */
.accent-bar { width: 60px; height: 4px; background: var(--secondary); border-radius: 2px; margin-bottom: 24px; }
.accent-bar--center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font: 600 15px var(--font);
  cursor: pointer; border: none; transition: all 0.3s ease; white-space: nowrap;
}
.btn--primary { background: var(--secondary); color: var(--primary); font-weight: 700; box-shadow: 0 4px 12px rgba(255,153,0,0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,153,0,0.45); }
.btn--secondary { background: var(--primary); color: var(--bg); box-shadow: 0 4px 12px rgba(0,0,85,0.25); }
.btn--secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,85,0.35); }
.btn--ghost { background: transparent; border: 2px solid var(--primary); color: var(--primary); font-weight: 600; }
.btn--ghost:hover { background: var(--primary); color: var(--bg); transform: translateY(-2px); }
.btn--ghost-white { background: transparent; border: 2px solid var(--bg); color: var(--bg); font-weight: 600; }
.btn--ghost-white:hover { background: var(--bg); color: var(--secondary); transform: translateY(-2px); }
.btn--white { background: var(--bg); border: 2px solid var(--secondary); color: var(--secondary); font-weight: 600; }
.btn--white:hover { background: var(--bg); color: var(--bg); transform: translateY(-2px); }
.btn--large { padding: 18px 36px; font-size: 16px; min-height: 56px; }

/* Cards */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(20px, 3vw, 32px); transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.card--highlight { border: 2px solid var(--secondary); box-shadow: 0 4px 20px rgba(255,153,0,0.15); }
.card-id {
  position: absolute; top: 16px; left: 16px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--secondary); color: #000;
  display: flex; align-items: center; justify-content: center; font: 900 14px var(--font);
}

/* Chips & Badges */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; padding: 10px 16px;
  border-radius: 999px; border: 1px solid var(--line); color: var(--text-muted);
  font: 500 14px var(--font); background: var(--bg-subtle); transition: all 0.2s;
}
.chip:hover { border-color: var(--secondary); background: rgba(255,153,0,0.08); color: var(--secondary-dark); }
.badge {
  display: inline-flex; align-items: center; padding: 6px 12px;
  border-radius: 999px; background: var(--secondary); color: #000; font: 700 13px var(--font);
}

/* Icon Box */
.icon-box {
  width: 64px; height: 64px; border-radius: var(--radius); background: var(--secondary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255,153,0,0.3);
}

/* Step Number */
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); color: var(--text);
  font: 800 20px var(--font); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 4px 12px rgba(255,153,0,0.35);
}

/* Lists */
.list { margin: 0; padding-left: 24px; color: var(--text-muted); line-height: 1.8; }
.list li { margin: 8px 0; padding-left: 8px; }
.list li::marker { color: var(--secondary); }

/* Forms */
input, textarea, select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--line); border-radius: var(--radius);
  font: 15px var(--font); color: var(--text); background: white; transition: all 0.3s ease; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(255,153,0,0.1); }
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000055' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 16px center; padding-right: 40px; cursor: pointer; }
label { display: block; font: 600 14px var(--font); margin-bottom: 8px; color: var(--text); }
.form-group { margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px dotted var(--secondary); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  background: var(--primary-dark);
}
body.page-index .header, body.page-article .header {
  background: rgba(0,0,32,0.7); backdrop-filter: blur(5px) saturate(50%);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.logo { font: 800 24px var(--font); letter-spacing: -0.01em; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); z-index: 101; }
.logo:hover { transform: scale(1.02); }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: white; font: 500 15px var(--font); position: relative; padding: 4px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--secondary); transition: width 0.3s; }
.nav a:hover { color: var(--secondary); }
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 16px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.mobile-menu-toggle span { width: 25px; height: 2px; background: white; transition: all 0.3s; display: block; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* Language Selector */
.language-selector { position: relative; display: inline-block; z-index: 101; }
.language-selector__toggle {
  display: flex; align-items: center; gap: 8px; padding: 14px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.3s ease; user-select: none;
}
.language-selector__toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.language-selector__flag { width: 24px; height: 18px; object-fit: cover; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.language-selector__menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: linear-gradient(135deg, rgba(0,0,32,0.98) 0%, rgba(0,0,48,0.98) 100%);
  backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px;
  min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.95);
  transition: all 0.3s ease; box-shadow: 0 25px 60px rgba(0,0,0,0.5); overflow: hidden; z-index: 1000;
}
.language-selector:hover .language-selector__menu, .language-selector.active .language-selector__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.language-selector__item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: rgba(255,255,255,0.9); font: 500 14px var(--font); transition: all 0.2s ease; }
.language-selector__item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
.language-selector__item:hover { background: rgba(255,255,255,0.1); color: white; transform: translateX(2px); }
.language-selector__item--active { background: rgba(59,130,246,0.15); color: white; }

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.section--hero { padding: 0; position: relative; overflow: hidden; min-height: 118svh; display: flex; align-items: center; justify-content: center; z-index: 1; }
.hero-container { display: flex; align-items: center; justify-content: center; min-height: 118svh; padding: 0 clamp(20px, 5vw, 80px); }
.hero-container .grid { width: 100%; }
.section--hero .hero-container .grid { transform: translateY(-6vh); }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%,-50%); z-index: 0; object-fit: cover; pointer-events: none; }
.hero-logo { max-width: 320px; width: 100%; height: auto; display: block; }
.hero-logoLink { display: inline-block; transition: transform 0.3s ease; }
.hero-logoLink:hover { transform: scale(1.1) translateY(-12px); }

/* Image Background Sections */
.section--image { position: relative; background-size: cover; background-position: center; color: white; }
.section--image::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 1; }
.section--image .container { position: relative; z-index: 2; }
.section--image .h1, .section--image .h2, .section--image .h3 { color: white; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.section--image .p, .section--image .small { color: rgba(255,255,255,0.98); font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* --------------------------------------------------------------------------
   8. Trust Band
   -------------------------------------------------------------------------- */
.section--trust-band {
  background: rgba(0,0,32,0.7); backdrop-filter: blur(4px) saturate(45%);
  border-top: 1px dotted var(--secondary); border-bottom: 3px solid var(--secondary);
  padding: clamp(18px, 3.75vw, 30px) 0; position: relative; margin-top: -200px; padding-top: 30px; z-index: 5;
}
.trust-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); max-width: 1200px; margin: 0 auto; }
.trust-band-item { text-align: center; padding: 20px; }
.trust-band-number { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1; background: var(--secondary); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.trust-band-label { margin-top: 4px; font: 600 clamp(12px, 1.6vw, 15px) var(--font); color: white; text-transform: uppercase; letter-spacing: 0.05em; }

/* --------------------------------------------------------------------------
   9. Overview Section
   -------------------------------------------------------------------------- */
.section--overview { position: relative; background: url("/assets/images/overviewbg.png") center/cover no-repeat; }
.section--overview::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95)); pointer-events: none; }
.section--overview > .container { position: relative; z-index: 1; }
.section--overview .grid-4 .card { backdrop-filter: blur(6px); background: rgba(255,255,255,0.88); }
.section--overview .h1 { color: var(--primary); }
.section--overview .subhead { color: var(--primary); }
.overview-mediaLink { margin-top: 25px; display: block; width: 100%; max-width: 560px; border: 1px solid var(--primary); overflow: hidden; box-shadow: var(--shadow-lg); }
.overview-video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.overview-cards { margin-top: 72px; }
.overview-card { text-align: center; position: relative; }
.overview-card .icon-box { margin: 0 auto 16px; width: 48px; height: 48px; }
.overview-card__title { font: 800 16px var(--font); margin-bottom: 8px; color: var(--primary); }

/* --------------------------------------------------------------------------
   10. How It Works / CTA Section
   -------------------------------------------------------------------------- */
.section--how-it-works { background: #eee; }
.cta-panel { background: var(--primary-dark); border: 1px dotted var(--secondary); border-radius: 30px; padding: 80px; margin-top: -200px; }
.section--how-it-works .h1, .section--how-it-works .h2, .section--how-it-works .h3, .section--how-it-works .h4 { color: #fff; font-weight: 800; }
.section--how-it-works .p, .section--how-it-works .small { color: #fff; font-weight: 400; }
.how-it-works-content { display: grid; grid-template-columns: 1fr 45%; gap: 40px; margin: 32px 0; }
.how-it-works-list { display: flex; flex-direction: column; gap: 20px; }
.how-it-works-item { display: flex; gap: 16px; align-items: flex-start; }
.how-it-works-item__number { flex-shrink: 0; width: 36px; height: 36px; background: rgba(255,255,255,0.2); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font: 800 18px var(--font); }
.how-it-works-item__content { color: white; line-height: 1.6; }
.pricing-table { padding: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; border: 3px dotted #fff; align-self: start; color: var(--secondary); font: 800 24px var(--font); }
.pricing-row { display: flex; justify-content: space-between; padding: 8px 0; color: white; font: 15px var(--font); }
.pricing-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
.button-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* --------------------------------------------------------------------------
   11. Logo Marquee
   -------------------------------------------------------------------------- */
.logo-marquee { padding: 0; border-top: 3px solid var(--secondary); border-bottom: 3px solid var(--secondary); }
.logo-marquee__viewport { height: 200px; display: flex; align-items: center; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); }
.logo-marquee__track { display: flex; flex-wrap: nowrap; align-items: center; gap: 120px; width: max-content; }
.logo-marquee__track img { display: block; max-height: 250px; max-width: 200px; opacity: 0.85; transition: all 0.2s ease; }
.logo-marquee__track img:hover { opacity: 1; transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   12. Includes Section
   -------------------------------------------------------------------------- */
.section--includes { position: relative; overflow: hidden; background: var(--primary-dark); color: white; }
.section--includes::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/worldbg2.png') center/cover no-repeat; opacity: 0.05; z-index: 0; pointer-events: none; }
.section--includes .container { position: relative; z-index: 1; }
.section--includes .h1, .section--includes .h2, .section--includes .h3 { color: white; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.section--includes .p, .section--includes .small { color: rgba(255,255,255,0.98); font-weight: 500; }

/* Includes Slider */
.includes-slider { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.includes-slider-track { display: flex; transition: transform 0.5s ease-in-out; }
.includes-slide { min-width: 100%; flex-shrink: 0; }
.includes-card { border-radius: var(--radius-lg); padding: 48px; }
.includes-card--light { background: #f8f8f8; border: 1px solid var(--secondary); }
.includes-content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; justify-items: center; justify-content: center; }
.includes-heading { font-size: clamp(28px, 4vw, 40px); font-weight: 400; line-height: 1.2; margin-bottom: 24px; color: #fff; }
.includes-heading--dark { color: var(--text); }
.includes-divider { width: 120px; height: 4px; background: var(--secondary); margin-bottom: 24px; }
.includes-category { font: 700 13px var(--font); letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary); margin-bottom: 20px; text-align: left; }
.includes-description { font: 16px/1.7 var(--font); color: rgba(255,255,255,0.9); margin-bottom: 24px; text-align: left; line-height: 1.6; }
.includes-description--dark { color: var(--text); text-align: left; }
.includes-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; justify-content: center; align-items: center; width: 100%; max-width: 500px; height: 300px; }
.includes-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; display: block; border-radius: var(--radius-lg); object-fit: contain; object-position: center; }
.includes-text { max-width: 425px; width: 100%; display: flex; flex-direction: column; justify-content: center; }
.includes-text--dark { color: var(--text); width: 100%; }
.includes-nav { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 40px; padding: 10px; }
.includes-nav-btn { width: 48px; height: 48px; border: 2px solid #fff; background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: #fff; }
.includes-nav-btn:hover { background: #fff; color: var(--primary); transform: scale(1.1); }
.includes-nav-btn--dark { border-color: var(--primary); color: var(--primary); }
.includes-nav-btn--dark:hover { background: var(--primary); color: #fff; }
.includes-counter { font: 600 16px var(--font); color: #fff; min-width: 60px; text-align: center; }
.includes-counter--dark { color: var(--primary); }

/* --------------------------------------------------------------------------
   13. Partners Section
   -------------------------------------------------------------------------- */
.section--partners { position: relative; overflow: hidden; background: #fff; border-top: 5px solid var(--secondary); }
.section--partners::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/usabg.jpg') center/cover no-repeat; opacity: 0.1; z-index: 0; pointer-events: none; }
.section--partners .container { position: relative; z-index: 1; }
.partners-description { color: var(--primary); text-align: center; margin-top: 16px; }
.partners-slider-wrapper { margin-top: 48px; }
.partner-image { width: 400px; }

/* Partners Carousel */
.partners-carousel { position: relative; max-width: 800px; margin: 0 auto; padding: 0 60px; }
.partners-carousel-track { display: flex; transition: transform 0.5s ease-in-out; gap: 24px; touch-action: pan-y; user-select: none; }
.partner-slide { min-width: 100%; flex-shrink: 0; }
.carousel-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px; }
.carousel-btn { width: 48px; height: 48px; border: 2px solid var(--primary); background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: var(--primary); }
.carousel-btn:hover { background: var(--primary); color: #fff; transform: scale(1.1); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); opacity: 0.3; cursor: pointer; transition: all 0.3s ease; }
.carousel-dot.active { opacity: 1; transform: scale(1.3); background: var(--secondary); }

/* --------------------------------------------------------------------------
   14. FAQ Section
   -------------------------------------------------------------------------- */
#faq { background: var(--secondary); border-top: 5px solid var(--primary-dark); border-bottom: 5px solid var(--primary-dark); }
#faq .card { padding: clamp(5px, 1vw, 8px); }
.section--faq { position: relative; overflow: hidden; }
.section--faq::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/worldbg2.png') center/cover no-repeat; opacity: 0.15; z-index: 0; pointer-events: none; }
.section--faq .container, .section--faq .faq-accordion { position: relative; z-index: 2; }
.faq-accordion { margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-accordion .card { padding: 8px; cursor: pointer; transition: all 0.3s ease; margin-bottom: 16px; overflow: hidden; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.faq-accordion .card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,153,0,0.2); }
.faq-question-wrapper { display: flex; align-items: center; gap: 16px; padding: 10px 24px; position: relative; }
.faq-question-wrapper .card-id { position: static; margin: 0; flex-shrink: 0; }
.faq-question-text { font: 800 13.5px var(--font); color: var(--primary); flex: 1; }
.faq-toggle { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--secondary); border-radius: 50%; transition: transform 0.3s ease; }
.faq-toggle svg { color: #fff; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-answer-content { padding-bottom: 10px; padding-left: 48px; color: var(--text); line-height: 1.7; font-size: 12px; }
.faq-item.active .faq-answer { max-height: 2000px; padding: 0 24px 4px; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-item.active .card { background: rgba(255,255,255,1); border-color: var(--secondary); }

/* --------------------------------------------------------------------------
   15. Contact Section
   -------------------------------------------------------------------------- */
#contact { position: relative; background: url('/assets/images/contact-bg.jpg') center/cover no-repeat; border-top: 5px solid var(--secondary); border-bottom: 5px solid var(--secondary); color: white; }
#contact::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,55,0.9); z-index: 1; pointer-events: none; }
#contact .container { position: relative; z-index: 2; }
#contact p, #contact .h2 { color: #fff !important; }
#contact .card { background: rgba(255,255,255,0.9) !important; transition: all 0.3s ease; }
#contact .card:hover { background: rgba(255,255,255,1) !important; box-shadow: 0 8px 32px rgba(0,0,85,0.15); }
#contact .card, #contact .card input, #contact .card textarea, #contact .card label { color: var(--primary) !important; }
#contact .card input, #contact .card textarea { border-color: var(--primary) !important; }
.contact-form-container { max-width: 800px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   16. About Section
   -------------------------------------------------------------------------- */
#about { background: var(--bg); }
.section--about { position: relative; overflow: hidden; }
.section--about::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/worldbg.png') center/cover no-repeat; opacity: 0.1; z-index: 0; }
.section--about .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   17. Blog Section
   -------------------------------------------------------------------------- */
.blog-cards-grid { margin-top: 24px; }
.blog-card { position: relative; }
.blog-card__image { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.blog-card__genre { margin-bottom: 8px; }
.blog-card__title { font-weight: 800; }
.blog-card__abstract { margin-top: 8px; }
.blog-view-all { margin-top: 24px; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer { padding: 60px 0 0; background: var(--primary-dark); border-top: 3px solid var(--secondary); color: white; }
.footer__inner { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; margin-bottom: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer__logo { max-width: 100%; height: auto; width: 280px; object-fit: contain; }
.footer__tagline { color: rgba(255,255,255,0.9); font: 14px/1.5 var(--font); max-width: 250px; }
.footer__section-title { color: white; font: 600 16px var(--font); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer__legal-text { color: rgba(255,255,255,0.85); font: 13px/1.6 var(--font); margin-bottom: 12px; }
.footer__legal-text strong { color: white; font-weight: 600; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 12px; }
.footer__nav a { color: rgba(255,255,255,0.9); font: 500 14px var(--font); transition: all 0.2s; }
.footer__nav a:hover { color: var(--secondary); transform: translateX(2px); }
.footer__social { display: flex; gap: 16px; }
.footer__social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary-dark); color: white; transition: all 0.3s ease; }
.footer__social-link:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); }
.footer__bottom { border-top: 2px dotted rgba(255,153,0,0.5); padding: 20px 0; background: var(--secondary); }
.footer__copyright { text-align: center; font: 500 13px var(--font); color: var(--primary); margin: 0; }
.footer__regulatory-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 0; border-top: 1px dotted var(--secondary); padding-top: 20px; place-items: center; }
.footer__regulatory-logos img { width: 100%; max-width: 100px; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; transition: all 0.2s ease; }
.footer__regulatory-logos img:hover { opacity: 1; transform: translateY(-2px); }
.footer__bottom-content { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer__bottom .footer__social-link { color: var(--secondary); background: var(--primary-dark); border-radius: 8px; }
.footer__bottom .footer__social-link:hover { color: white; transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   19. Article Styles
   -------------------------------------------------------------------------- */
.article-hero { min-height: 90svh; display: flex; align-items: center; justify-content: center; position: relative; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.85); z-index: 1; }
.article-hero .container { position: relative; z-index: 2; }
.article-hero .h1 { color: var(--bg); }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; font: 15px var(--font); color: rgba(255,255,255,0.9); flex-wrap: wrap; }
.article-meta__author { font-weight: 600; }
.article-meta__separator { color: rgba(255,255,255,0.5); }
.article-content-section { padding: 40px 0; }
.article-content-section:first-of-type { padding-top: 80px; }
.article-text-columns { max-width: 1200px; margin: 0 auto; }
.article-text-columns p { column-count: 2; column-gap: 40px; text-align: left; font-size: 1.25em; line-height: 1.9; }
.article-text-columns p strong { font-weight: 700; color: var(--primary); }
.reading-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: var(--secondary); z-index: 9999; transition: width 0.1s ease, opacity 0.3s ease; }
.social-share { max-width: 800px; margin: 0 auto; text-align: center; padding: 32px 0; border-top: 2px solid rgba(0,0,85,0.1); border-bottom: 2px solid rgba(0,0,85,0.1); }
.social-share__title { font: 600 18px var(--font); color: var(--primary); margin-bottom: 20px; }
.social-share__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-share__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 2px solid var(--primary); border-radius: var(--radius); background: white; color: var(--primary); font: 600 15px var(--font); cursor: pointer; transition: all 0.3s ease; }
.social-share__btn:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,85,0.2); }
.article-cta-box { max-width: 800px; margin: 48px auto; padding: 32px; background: linear-gradient(135deg, #000033 0%, #000055 100%); border: 2px solid var(--secondary); border-radius: var(--radius-lg); text-align: center; }
.article-cta-box__title { font: 700 24px var(--font); color: var(--bg); margin-bottom: 16px; }
.article-cta-box__text { font: 16px/1.6 var(--font); color: var(--bg); margin-bottom: 24px; }
.related-articles { margin-top: 64px; }
.related-articles__title { font: 700 32px var(--font); color: var(--primary); text-align: center; margin-bottom: 40px; }
.related-articles__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.related-article-card { position: relative; display: block; transition: transform 0.2s ease; }
.related-article-card:hover { transform: translateY(-4px); }
.related-article-card__image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.related-article-card__genre { font: 700 12px var(--font); text-transform: uppercase; letter-spacing: 0.05em; color: var(--secondary); margin-bottom: 8px; }
.related-article-card__title { font: 700 20px var(--font); color: var(--primary); margin-bottom: 12px; line-height: 1.3; transition: color 0.2s ease; }
.related-article-card:hover .related-article-card__title { color: var(--secondary); }
.related-article-card__abstract { font: 15px/1.6 var(--font); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   20. Builder Page
   -------------------------------------------------------------------------- */
.section--builder { background: #fff; }
.builder { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: start; }
.sticky { position: sticky; top: 110px; align-self: start; }
.option { cursor: pointer; transition: all 0.3s ease; border: 2px solid var(--line); }
.option:hover { transform: translateY(-2px); border-color: var(--secondary); box-shadow: 0 8px 20px rgba(255,153,0,0.15); }
.option--selected { border-color: var(--secondary); background: rgba(255,153,0,0.05); box-shadow: 0 4px 16px rgba(255,153,0,0.2); }
.option__top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.builder-results { margin-top: 48px; padding-top: 48px; border-top: 2px solid rgba(0,0,0,0.1); }
.builder-area { max-width: 1000px; margin: 0 auto; }
.builder-step { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.builder-step:last-child { border-bottom: none; }
.builder-option { background: rgba(255,255,255,0.95); border: 2px solid rgba(0,0,85,0.15); border-radius: 12px; padding: 24px; cursor: pointer; transition: all 0.3s ease; position: relative; }
.builder-option:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,85,0.15); }
.builder-option--selected { border-color: var(--primary); border-width: 3px; background: rgba(255,153,0,0.05); box-shadow: 0 4px 16px rgba(255,153,0,0.2); }
.builder-option--selected::before { content: '✓'; position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font: 800 18px var(--font); }
.builder-option__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.builder-option__header strong { font: 700 18px var(--font); color: #000; }
.chip--price { background: var(--secondary); color: white; padding: 6px 16px; border-radius: 20px; font: 700 14px var(--font); white-space: nowrap; }
.list-bullets { list-style: none; padding: 0; margin: 0; }
.list-bullets li { padding-left: 24px; position: relative; margin: 8px 0; font: 14px var(--font); color: #333; }
.list-bullets li::before { content: '•'; position: absolute; left: 8px; color: var(--secondary); font-weight: 700; }

/* --------------------------------------------------------------------------
   21. Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .builder { grid-template-columns: 1fr; }
  .hero-logo-container { display: none; }
  .header__inner { height: 70px; }
  .nav { display: none; }
  .h1 { font-size: 36px; }
  .h2 { font-size: 28px; }
  .section { padding: 60px 0; }
  .section--hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; }
  .section--hero.section--image { border-bottom: 3px solid var(--secondary); }
  .hero-container { min-height: 100svh; padding: 80px clamp(20px, 5vw, 80px); display: flex; align-items: center; justify-content: center; }
  .section--hero .hero-container .grid { transform: translateY(0); display: flex; flex-direction: column; align-items: center; text-align: center; }
  .section--hero .accent-bar { display: none; }
  .section--hero .button-group { justify-content: center; }
  .section--hero .btn--ghost-white { display: none; }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .sticky { position: relative; top: 0; }
  .how-it-works-content { grid-template-columns: 1fr; gap: 24px; }
  .cta-panel { padding: 48px; }
  .includes-content-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .includes-card { padding: 32px 24px; }
  .includes-image { order: -1; margin: 0 auto; max-width: 350px; height: 250px; }
  .includes-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
  .includes-text { max-width: 100%; text-align: center; padding: 0 16px; display: block; }
  .includes-category { text-align: center; }
  .includes-description { text-align: center; }
  .article-hero { min-height: 100svh; }
}

@media (max-width: 968px) {
  .nav { gap: 24px; }
  .nav a { font-size: 14px; }
  .header__cta .btn { padding: 10px 16px; font-size: 14px; }
}

@media (max-width: 768px) {
  .header__inner { height: 64px; }
  .logo { font-size: 20px; }
  .mobile-menu-toggle { display: flex; }
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(0,0,32,0.98); flex-direction: column; padding: 24px; gap: 0; border-bottom: 1px solid var(--secondary); box-shadow: 0 8px 16px rgba(0,0,0,0.3); max-height: calc(100vh - 64px); overflow-y: auto; }
  .nav.active { display: flex; }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 16px; }
  .nav a::after { display: none; }
  .header__cta { gap: 8px; }
  .header__cta .btn { padding: 8px 16px; font-size: 13px; white-space: nowrap; }
  .language-selector__toggle { padding: 6px 10px; border-radius: 10px; }
  .language-selector__flag { width: 20px; height: 15px; }
  .language-selector__menu { right: auto; left: 50%; transform: translateX(-50%) translateY(-8px) scale(0.95); min-width: 160px; }
  .language-selector:hover .language-selector__menu, .language-selector.active .language-selector__menu { transform: translateX(-50%) translateY(0) scale(1); }
  .language-selector__item { padding: 10px 12px; font-size: 13px; }
  .hero-video { display: block; }
  .section--hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; }
  .section--hero.section--image { border-bottom: 3px solid var(--secondary); }
  .hero-container { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 40px clamp(20px, 5vw, 40px); }
  .section--hero .hero-container .grid { transform: translateY(0); display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
  .hero-logo { display: none; }
  .hero-logo-container { display: none; }
  .section--hero .accent-bar { display: none; }
  .section--hero .button-group { justify-content: center; }
  .section--hero .btn--ghost-white { display: none; }
  .trust-band-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-hero { min-height: 100svh; }
  .footer { padding: 40px 0 0; }
  .footer__logo { width: 180px; }
  .footer__nav { flex-direction: column; gap: 12px; }
  .footer__regulatory-logos { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__regulatory-logos img { max-width: 80px; }
  .footer__bottom-content { flex-direction: column; text-align: center; gap: 16px; }
  .faq-question-text { font-size: 12px; }
  .faq-answer-content { padding-left: 32px; font-size: 11px; padding-bottom: 8px; }
  .faq-question-wrapper { padding: 8px 20px; }
  .partners-carousel { padding: 0 20px; }
  .carousel-btn { width: 40px; height: 40px; }
  .includes-nav-btn { width: 40px; height: 40px; }
  .includes-block { padding: 32px 20px; }
  .includes-content-wrapper { gap: 32px; align-items: center; }
  .includes-card { padding: 32px 24px; }
  .includes-image { height: 220px; max-width: 300px; }
  .includes-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
  input, textarea, select { padding: 12px 16px; font-size: 16px; }
  .article-text-columns p { column-count: 1; }
  .how-it-works-item__number { width: 32px; height: 32px; font-size: 16px; }
  .pricing-table { padding: 16px; }
  .button-group { flex-direction: column; gap: 12px; }
  .button-group .btn { width: 100%; }
  .overview-cards { margin-top: 48px; }
  .builder-teaser-card { margin: 32px auto; }
  .builder-stat { font-size: 20px; }
  .partner-image { width: 100%; max-width: 400px; }
  .blog-card__image { height: 180px; }
}

@media (max-width: 640px) {
  :root { font-size: 15px; }
  .h1 { font-size: 32px; }
  .h2 { font-size: 24px; }
  .btn { width: 100%; }
  .trust-band-number { font-size: clamp(48px, 12vw, 72px); }
  .section--trust-band { display: none; }
}

@media (max-width: 480px) {
  .header__inner { height: 56px; gap: 12px; }
  .logo { font-size: 18px; }
  .nav { top: 56px; max-height: calc(100vh - 56px); }
  .header__cta .btn { padding: 6px 12px; font-size: 12px; }
  .language-selector__menu { min-width: 140px; }
  .footer { padding: 32px 0 0; }
  .footer__logo { width: 140px; max-width: 90%; }
  .footer__col--brand { padding: 0 16px; }
  .footer__legal-text { font-size: 12px; }
  .footer__section-title { font-size: 15px; }
  .footer__regulatory-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px 0; }
  .footer__regulatory-logos img { max-width: 60px; }
  .footer__bottom { padding: 16px 0; }
  .footer__copyright { font-size: 11px; padding: 0 16px; }
  .footer__social { gap: 12px; }
  .footer__bottom .footer__social-link { width: 36px; height: 36px; }
  .footer__bottom .footer__social-link svg { width: 20px; height: 20px; }
  .cta-panel { padding: 32px 24px; }
  .includes-content-wrapper { gap: 24px; }
  .includes-card { padding: 24px 20px; }
  .includes-image { height: 200px; max-width: 280px; }
  .includes-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
  .section--hero { min-height: 100vh; }
  .section--hero.section--image { border-bottom: 3px solid var(--secondary); }
  .hero-container { padding: 30px clamp(16px, 4vw, 30px); }
  .h1 { font-size: 28px; line-height: 1.2; }
  .subhead { font-size: 16px; line-height: 1.4; }
  .button-group { flex-direction: column; gap: 12px; width: 100%; justify-content: center; }
  .button-group .btn { width: 100%; max-width: 280px; }
  .section--hero .accent-bar { display: none; }
  .section--hero .btn--ghost-white { display: none; }
}

/* --------------------------------------------------------------------------
   22. Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .logo-marquee__track { transform: none !important; }
}
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   23. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.2s; }
.reveal:nth-child(3) { animation-delay: 0.3s; }
.reveal:nth-child(4) { animation-delay: 0.4s; }
