/* ============================================================
   LION CONSULTING CANADA — LANDING PAGE STYLESHEET
   Complete CSS Design System & All Section Styles
   ============================================================ */


/* ==================== DESIGN SYSTEM: CUSTOM PROPERTIES ==================== */

:root {
  /* Colors */
  --c-dark: #0B1426;
  --c-dark-lighter: #121E33;
  --c-crimson: #C8102E;
  --c-gold: #D4A843;
  --c-gold-hover: #BF9535;
  --c-warm-bg: #F8F6F2;
  --c-white: #FFFFFF;
  --c-body: #3D4654;
  --c-muted: #8A94A3;
  --c-border: rgba(212, 168, 67, 0.2);

  /* Typography */
  --ff-heading: 'DM Serif Display', serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-label: 'Outfit', sans-serif;
  --ff-arabic: 'Noto Kufi Arabic', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --section-py-lg: 100px;

  /* Decorative */
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11, 20, 38, 0.08);
  --shadow-hover: 0 8px 32px rgba(11, 20, 38, 0.14);
}


/* ==================== RESET & BASE ==================== */

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

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

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-body);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--c-gold-hover);
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* ==================== BASE TYPOGRAPHY ==================== */

h1, h2 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-dark);
}

h3, h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-dark);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: var(--c-body);
}

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


/* ==================== REUSABLE COMPONENTS ==================== */

/* ---- Badge Gold (pill subtitle) ---- */
.badge-gold {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--c-gold);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid var(--c-border);
  margin-bottom: 16px;
}

/* ---- Button: Gold CTA ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.btn-gold:hover {
  background: var(--c-gold-hover);
  color: var(--c-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.btn-gold:active {
  transform: translateY(0);
}

/* ---- Button: WhatsApp ---- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: var(--c-white);
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* ---- Card Premium ---- */
.card-premium {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border: 1px solid rgba(11, 20, 38, 0.04);
}

.card-premium:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ---- Section Backgrounds ---- */
.bg-dark {
  background-color: var(--c-dark);
}

.bg-warm {
  background-color: var(--c-warm-bg);
}

/* ---- Dark Section Grain Texture ---- */
.bg-dark {
  position: relative;
}

.bg-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.bg-dark > * {
  position: relative;
  z-index: 1;
}

/* ---- Dark Section Text Overrides ---- */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--c-white);
}

.bg-dark p {
  color: var(--c-muted);
}

.bg-dark a {
  color: var(--c-gold);
}

.bg-dark a:hover {
  color: var(--c-gold-hover);
}

.bg-dark .badge-gold {
  background: rgba(212, 168, 67, 0.1);
}

/* ---- Section Heading (centered) ---- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 span {
  color: var(--c-crimson);
}

.section-heading p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}


/* ==================== HEADER ==================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: var(--c-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

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

.header-nav a {
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  color: var(--c-gold);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 10px 24px;
  font-size: 13px;
}

/* ---- Language Toggle ---- */
.lang-toggle {
  color: var(--c-white);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.lang-toggle-mobile {
  color: var(--c-gold) !important;
  font-weight: 700 !important;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px !important;
}

/* ---- Mobile Toggle ---- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1050;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--c-dark-lighter);
  z-index: 1040;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--c-gold);
  padding-left: 8px;
}

.mobile-menu .btn-gold {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 20, 38, 0.6);
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ==================== HERO ==================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 20, 38, 0.92) 0%,
    rgba(11, 20, 38, 0.75) 50%,
    rgba(11, 20, 38, 0.6) 100%
  );
  z-index: 1;
}

.hero > .container,
.hero > .container-fluid,
.hero > div {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--c-white);
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--c-crimson);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 540px;
}

/* ---- Hero Checklist ---- */
.hero-checklist {
  margin-bottom: 32px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
  font-size: 15px;
  padding: 6px 0;
}

.hero-checklist li i,
.hero-checklist li .check-icon {
  color: var(--c-gold);
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- Hero Form Card (Glass) ---- */
.hero-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  z-index: 2;
}

.hero-form-card h3 {
  color: var(--c-white);
  font-size: 22px;
  margin-bottom: 6px;
}

.hero-form-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-form-card .form-control,
.hero-form-card input[type="text"],
.hero-form-card input[type="email"],
.hero-form-card input[type="tel"],
.hero-form-card select,
.hero-form-card textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 14px;
  width: 100%;
  margin-bottom: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.hero-form-card .form-control::placeholder,
.hero-form-card input::placeholder,
.hero-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form-card .form-control:focus,
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.hero-form-card select {
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

.hero-form-card select:invalid {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form-card select option {
  background: var(--c-dark);
  color: var(--c-white);
}

.hero-form-card select option[disabled] {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Budget Question ---- */
.budget-question {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, rgba(212, 168, 67, 0.03) 100%);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 10px;
  padding: 18px 16px;
  margin-top: 6px;
  margin-bottom: 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.budget-question:focus-within {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15), 0 0 20px rgba(212, 168, 67, 0.08);
}

.budget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.budget-icon {
  color: var(--c-gold);
  font-size: 18px;
  flex-shrink: 0;
}

[dir="rtl"] .budget-icon {
  order: 0;
}

.budget-label {
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.budget-label strong {
  color: var(--c-gold);
  font-weight: 700;
}

.budget-options {
  display: flex;
  gap: 10px;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.radio-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-text i {
  font-size: 14px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: rgba(212, 168, 67, 0.5);
  background: rgba(212, 168, 67, 0.06);
  color: var(--c-white);
}

.radio-option:hover .radio-dot {
  border-color: rgba(212, 168, 67, 0.5);
}

/* Checked state */
.radio-option:has(input:checked) {
  border-color: var(--c-gold);
  background: rgba(212, 168, 67, 0.12);
  color: var(--c-white);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.15);
}

.radio-option:has(input:checked) .radio-dot {
  border-color: var(--c-gold);
}

.radio-option:has(input:checked) .radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input:checked) .radio-text i {
  color: var(--c-gold);
  opacity: 1;
}

.radio-option[data-choice="yes"]:has(input:checked) {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.12);
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.15);
}

.radio-option[data-choice="yes"]:has(input:checked) .radio-dot {
  border-color: #4CAF50;
}

.radio-option[data-choice="yes"]:has(input:checked) .radio-dot::after {
  background: #4CAF50;
}

.radio-option[data-choice="yes"]:has(input:checked) .radio-text i {
  color: #4CAF50;
}

.radio-option[data-choice="no"]:has(input:checked) {
  border-color: rgba(200, 16, 46, 0.6);
  background: rgba(200, 16, 46, 0.1);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.1);
}

.radio-option[data-choice="no"]:has(input:checked) .radio-dot {
  border-color: rgba(200, 16, 46, 0.6);
}

.radio-option[data-choice="no"]:has(input:checked) .radio-dot::after {
  background: #C8102E;
}

.radio-option[data-choice="no"]:has(input:checked) .radio-text i {
  color: #C8102E;
}

.hero-form-card .btn-gold {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  margin-top: 4px;
}

.hero-form-card h3 span {
  color: var(--c-crimson);
}

.form-title {
  font-family: var(--ff-heading);
  font-weight: 400;
}

.form-subtitle {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.form-trust {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

.hero-content .subtitle {
  font-family: var(--ff-body);
}

/* ---- Mobile Close Button ---- */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-close:hover {
  color: var(--c-gold);
}

.mobile-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Mobile Sticky CTA ---- */
.mobile-sticky-cta {
  display: none;
}


/* ==================== VIDEO SECTION ==================== */

.video-section {
  background: var(--c-dark);
  padding: var(--section-py) 0;
}

.reel-text {
  padding-left: 40px;
}

.reel-text h2 {
  color: var(--c-white);
  margin-bottom: 16px;
}

.reel-text p {
  color: var(--c-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(212, 168, 67, 0.1);
  position: relative;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

/* Portrait video (9:16 reel) — native aspect ratio */
.video-portrait {
  max-width: 100%;
}

.video-portrait .video-responsive {
  padding-bottom: 0;
  height: auto;
}

.video-portrait .video-responsive video {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-responsive iframe,
.video-responsive video,
.video-responsive embed,
.video-responsive object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  object-position: top;
}


/* ==================== CTA CONTACT BAR ==================== */

.cta-bar {
  background: var(--c-warm-bg);
  padding: 28px 0;
}

.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--c-dark);
  font-weight: 500;
}

.cta-bar-item i {
  color: var(--c-gold);
  font-size: 18px;
}

.cta-bar-item a {
  color: var(--c-dark);
  font-weight: 600;
}

.cta-bar-item a:hover {
  color: var(--c-gold);
}


/* ==================== ABOUT SECTION ==================== */

.about-section {
  background: var(--c-white);
  padding: var(--section-py-lg) 0;
}

.about-content {
  padding-right: 40px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--c-crimson);
}

.about-content p {
  margin-bottom: 16px;
}

.about-section .hero-checklist li {
  color: var(--c-body);
}

/* ---- About Images (overlapping) ---- */
.about-images {
  position: relative;
  min-height: 420px;
}

.about-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.about-images img:first-child {
  width: 70%;
  position: relative;
  z-index: 1;
}

.about-images img:nth-child(2) {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 55%;
  z-index: 2;
  border: 4px solid var(--c-white);
}

/* ---- About Counter Card ---- */
.about-counter {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--c-dark);
  padding: 20px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  margin-top: 24px;
}

.about-counter .counter-number {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-gold);
  line-height: 1;
}

.about-counter .counter-label {
  font-family: var(--ff-label);
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.4;
}


/* ==================== DOCUMENTS SECTION ==================== */

.documents-section {
  background: var(--c-warm-bg);
  padding: var(--section-py-lg) 0;
}

.doc-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border: 1px solid rgba(11, 20, 38, 0.04);
  text-align: center;
}

.doc-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.doc-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.doc-card-icon i {
  font-size: 24px;
  color: var(--c-gold);
}

.doc-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.doc-card p {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 0;
}


/* ==================== PROCESS / TARIFS SECTION ==================== */

.process-section {
  background: var(--c-dark);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  padding: var(--section-py-lg) 0;
  position: relative;
}

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

/* Gold connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-gold) 20%,
    var(--c-gold) 80%,
    transparent
  );
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 67, 0.12);
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
  font-family: var(--ff-label);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h4 {
  color: var(--c-white);
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step p {
  color: var(--c-muted);
  font-size: 14px;
  max-width: 280px;
  margin: 0 auto;
}


/* ==================== CTA BANNER ==================== */

.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 20, 38, 0.85);
  z-index: 1;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--c-white);
  margin-bottom: 16px;
}

.cta-banner h2 span {
  color: var(--c-crimson);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-year-badge {
  display: inline-block;
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 10px 24px;
  color: var(--c-gold);
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}


/* ==================== TESTIMONIALS SECTION ==================== */

.testimonial-section {
  background: var(--c-dark);
  padding: var(--section-py-lg) 0;
}

.testimonial-section .video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}


/* ==================== FAQ SECTION ==================== */

.faq-section {
  background: var(--c-warm-bg);
  padding: var(--section-py-lg) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-left-color: var(--c-gold);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--c-gold);
}

.faq-arrow {
  color: var(--c-gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}


/* ==================== FINAL CTA SECTION ==================== */

.final-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-py-lg) 0;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 20, 38, 0.88);
  z-index: 1;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--c-white);
  margin-bottom: 16px;
}

.final-cta h2 span {
  color: var(--c-crimson);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ==================== FOOTER ==================== */

.site-footer {
  background: var(--c-dark);
  padding: 48px 0 0;
  text-align: center;
}

.footer-logo img {
  height: 48px;
  margin: 0 auto 20px;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-info p {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--c-muted);
}

.footer-info a:hover {
  color: var(--c-gold);
}

.site-footer p {
  color: var(--c-muted);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-muted);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
  background: rgba(212, 168, 67, 0.08);
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  color: var(--c-muted);
  font-size: 13px;
}

.footer-credit a {
  color: var(--c-gold);
}


/* ==================== WHATSAPP FLOAT ==================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: background 0.2s;
}

.whatsapp-float a:hover {
  background: #1DA851;
  color: #fff;
}


/* ==================== BACK TO TOP ==================== */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  font-size: 18px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-gold-hover);
  transform: translateY(-2px);
}


/* ==================== SCROLL ANIMATIONS ==================== */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==================== RESPONSIVE: TABLET (max-width: 991px) ==================== */

@media (max-width: 991px) {

  .header-nav {
    display: none;
  }

  .header-cta.desktop-only,
  .lang-toggle.desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-form-card {
    margin-top: 40px;
  }

  /* Reel section */
  .reel-text {
    padding-left: 0;
    margin-top: 32px;
    text-align: center;
  }

  .video-section .video-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  /* About */
  .about-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-images {
    min-height: 320px;
  }

  /* Process timeline */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .process-step {
    text-align: left;
    padding-left: 72px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-step p {
    max-width: none;
  }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: var(--c-dark);
    border-top: 1px solid var(--c-border);
    z-index: 990;
    text-align: center;
  }

  .mobile-sticky-cta .btn-gold {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}


/* ==================== RESPONSIVE: MOBILE (max-width: 767px) ==================== */

@media (max-width: 767px) {

  :root {
    --section-py: 60px;
    --section-py-lg: 72px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-form-card {
    padding: 28px 20px;
  }

  /* CTA bar stacking */
  .cta-bar-inner {
    flex-direction: column;
    gap: 16px;
  }

  /* About images */
  .about-images img:first-child {
    width: 100%;
  }

  .about-images img:nth-child(2) {
    position: relative;
    bottom: auto;
    right: auto;
    width: 80%;
    margin-top: -40px;
    margin-left: auto;
  }

  /* Final CTA buttons stack */
  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta-buttons .btn-gold,
  .final-cta-buttons .btn-whatsapp {
    width: 100%;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }

  /* Doc cards */
  .doc-card {
    padding: 24px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .back-to-top {
    bottom: 144px;
    right: 16px;
  }
}


/* ==================== RESPONSIVE: SMALL MOBILE (max-width: 575px) ==================== */

@media (max-width: 575px) {

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-checklist li {
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .btn-gold {
    padding: 14px 28px;
    font-size: 14px;
  }

  .btn-whatsapp {
    padding: 14px 28px;
    font-size: 14px;
  }

  .card-premium {
    padding: 24px 20px;
  }

  .badge-gold {
    font-size: 12px;
    padding: 5px 16px;
  }

  .about-counter .counter-number {
    font-size: 28px;
  }

  .cta-year-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
