/* ==========================================================================
   StoraTax - Canada Employee Landing Page Design System
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Brand colors sampled from original StoraTax header reference */
  --primary-navy: #0a2d8b;
  --primary-navy-dark: #072065;
  --accent-orange: #FF5A0A;
  --accent-orange-hover: rgba(255, 90, 10, 0.85);
  --accent-orange-light: #fff2ee;
  
  --text-main: #0a2d8b;
  --text-body: #486284;
  --text-light: #6a82a0;
  
  --bg-light-blue: #f2f7fe;
  --bg-feature-bar: #edf5ff;
  --bg-card-hover: #e8f2fe;
  
  --border-light: #e1edfc;
  --border-subtle: #d0e3f9;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-hero-title: 'Antre Narrow Extra Bold', 'Antre Narrow', sans-serif;
  
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 2px 8px rgba(10, 45, 139, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 45, 139, 0.08);
  --shadow-orange: 0 8px 22px rgba(255, 78, 8, 0.28);
  
  --transition: all 0.25s ease-in-out;
}

/* Antre Narrow Extra Bold â€” place font file in /fonts */
@font-face {
  font-family: 'Antre Narrow Extra Bold';
  src:
    local('Antre Narrow Extra Bold'),
    local('AntreNarrow-ExtraBold'),
    local('Antre Narrow ExtBd'),
    url('fonts/AntreNarrow-ExtraBold.woff2') format('woff2'),
    url('fonts/AntreNarrow-ExtraBold.woff') format('woff'),
    url('fonts/AntreNarrow-ExtraBold.ttf') format('truetype'),
    url('fonts/AntreNarrow-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antre Narrow';
  src:
    local('Antre Narrow Extra Bold'),
    local('AntreNarrow-ExtraBold'),
    url('fonts/AntreNarrow-ExtraBold.woff2') format('woff2'),
    url('fonts/AntreNarrow-ExtraBold.woff') format('woff'),
    url('fonts/AntreNarrow-ExtraBold.ttf') format('truetype'),
    url('fonts/AntreNarrow-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- Base Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- Layout Utility Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons & Inputs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

/* Thin line arrow â€” matches original StoraTax CTA */
.btn-arrow {
  flex-shrink: 0;
  display: block;
}

.btn-primary {
  background: var(--accent-orange);
  color: #ffffff;
  padding: 12px 26px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 78, 8, 0.38);
  filter: brightness(1.05);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --- Check Icons Utility --- */
.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(240, 79, 28, 0.25);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(11, 59, 140, 0.04);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  height: 66px;
}

/* Logo */
.logo-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  height: 66px;
}

.logo-img {
  display: block;
  height: 66px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-stora {
  color: var(--primary-navy);
}

.logo-tax {
  color: var(--accent-orange);
}

.logo-tagline {
  font-size: 0.8rem;
  color: #153EB2;
  font-weight: 500;
  margin-top: 1px;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: #153EB2;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-orange);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Selector Dropdown */
.lang-selector-wrapper {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 4px 0;
  border-radius: 0;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
}

.lang-dropdown-btn:hover {
  background: transparent;
  opacity: 0.85;
}

.flag-icon {
  display: block;
  width: 22px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-option .flag-icon,
.footer-region-select .flag-icon {
  width: 20px;
  height: 14px;
}

.chevron-icon {
  color: var(--primary-navy);
  transition: transform 0.2s ease;
}

/* Header CTA â€” match original square/soft-rectangle button */
.header-cta {
  border-radius: 6px;
  background: var(--accent-orange);
  box-shadow: none;
  padding: 11px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 78, 8, 0.38);
  filter: brightness(1.05);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 150px;
  padding: 6px;
  display: none;
  flex-direction: column;
  z-index: 1050;
}

.lang-dropdown-menu.show {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.lang-option:hover, .lang-option.active {
  background: var(--bg-light-blue);
  color: var(--accent-orange);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background-image: url('images/employee.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: clamp(500px, 50vw, 680px);
  display: flex;
  align-items: center;
  padding: 36px 0 8px;
  overflow: hidden;
}

/* Left white gradient overlay matching Image 1 to hide city background behind text & provide clean white backdrop */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 60%, rgba(255, 255, 255, 0.85) 78%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 510px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 18px;
}

.hero-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

html[lang="fr"] .hero-badge-icon {
  background-color: var(--accent-orange);
}

.hero-badge-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-badge-text strong {
  color: var(--primary-navy);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-badge-text span {
  color: #153EB2;
  font-size: 0.82rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: none;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-desc {
  font-size: 1.05rem;
  color: #153EB2;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: none;
  font-weight: 500;
}

.hero-desc-line {
  display: block;
  white-space: nowrap;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 400;
  color: #153EB2;
}

.hero-cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-cta-btn {
  border-radius: 12px;
  box-shadow: none;
  padding: 14px 28px;
}

.hero-cta-btn:hover {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 78, 8, 0.38);
  filter: brightness(1.05);
}

.sub-cta-text {
  font-size: 0.82rem;
  color: #153EB2;
  font-weight: 400;
  margin-left: 0;
  text-align: center;
  width: 100%;
}

.sub-cta-text.light {
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0;
  text-align: center;
}

.hero-media {
  display: none;
}

/* ==========================================================================
   4-ITEM FEATURE STRIP BAR
   ========================================================================== */
.features-bar-section {
  padding: 40px 0 40px;
  background: #ffffff;
}

.features-bar-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
  align-items: start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.feature-icon-circle {
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 50%;
  background: #dceefd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.feature-icon-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
}

.feature-text p {
  font-size: 1rem;
  color: #153EB2;
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   DESIGNED FOR YOUR WORK LIFE & TESTIMONIAL
   ========================================================================== */
.designed-section {
  padding: 48px 0 56px;
  background: linear-gradient(
    180deg,
    var(--bg-feature-bar) 0%,
    var(--bg-feature-bar) 42%,
    #ffffff 100%
  );
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid #ffffff;
}

.designed-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.checklist-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 600;
  color: #153EB2;
  line-height: 1.35;
}

/* Testimonial Card â€” reference: photo flush left, border top+right only */
.testimonial-card {
  --testimonial-blue: #e0f0fc;
  background: var(--testimonial-blue);
  border: none;
  border-top: 1.5px solid var(--testimonial-blue);
  border-right: 1.5px solid var(--testimonial-blue);
  border-radius: 20px;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.testimonial-img-wrapper {
  width: 44%;
  min-width: 180px;
  max-width: 240px;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  flex-shrink: 0;
  position: relative;
}

.testimonial-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--testimonial-blue));
  pointer-events: none;
  z-index: 1;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  justify-content: center;
  padding: 28px 26px 28px 20px;
  background: var(--testimonial-blue);
}

.quote-mark {
  position: absolute;
  top: 8%;
  right: 10%;
  z-index: 2;
  font-size: 5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--accent-orange);
  opacity: 1;
  line-height: 0.8;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 14px;
  padding-right: 8px;
}

.star-rating {
  color: #ffb400;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.author-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.author-role {
  font-size: 0.82rem;
  color: #153EB2;
  font-weight: 500;
}

/* ==========================================================================
   4 WHITE/BLUE CARDS GRID
   ========================================================================== */
.cards-grid-section {
  padding: 10px 0 50px;
  background: #ffffff;
}

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

.info-card {
  background: #EEF6FD;
  border: 1px solid #e1edfc;
  border-radius: 16px;
  padding: 36px 22px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  cursor: default;
}

.info-card:hover {
  background: #EEF6FD;
  border-color: #e1edfc;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 50%;
  background: #dceefd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: none;
}

.card-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.card-desc {
  font-size: 0.85rem;
  color: #153EB2;
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
  padding: 56px 0 64px;
  background: #f7f9fc;
}

.pricing-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 10px;
}

.pricing-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
}

.billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8e4f5;
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.billing-btn {
  border: none;
  background: transparent;
  color: #7a8aa3;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.billing-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
}

.billing-yearly-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--accent-orange);
  color: var(--accent-orange);
  background: #fff7f2;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 320px;
  line-height: 1.3;
}

.billing-yearly-note[hidden] {
  display: none;
}

.billing-yearly-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e4ecf7;
  border-radius: 18px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(10, 45, 139, 0.06);
  min-height: 100%;
}

.pricing-card-featured {
  border-color: #f0b35a;
  box-shadow: 0 10px 28px rgba(240, 179, 90, 0.18);
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--primary-navy);
  max-width: 100%;
}

.pricing-badge-lavender { background: #ebe7ff; }
.pricing-badge-blue { background: #dcecff; }
.pricing-badge-peach { background: #ffe4d4; }
.pricing-badge-grey { background: #eef1f6; }
.pricing-badge-orange { background: #ffe8d6; color: #b45309; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #0A2D8B;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.45;
  margin-bottom: 18px;
  min-height: 2.6em;
}

.pricing-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}

.pricing-features li.is-excluded {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.7);
}

.pricing-check,
.pricing-x {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-check {
  background: var(--accent-orange);
}

.pricing-check::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.pricing-x {
  background: #fb923c;
}

.pricing-x::before,
.pricing-x::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #fff;
}

.pricing-x {
  position: relative;
}

.pricing-x::before { transform: rotate(45deg); }
.pricing-x::after { transform: rotate(-45deg); }

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.pricing-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 2.1rem;
  }

  .billing-toggle-wrap {
    align-items: center;
  }
}

.faq-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #EDF5FF 100%);
}

.faq-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 32px;
}

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

.faq-item {
  background: linear-gradient(90deg, #faf8f5 0%, #f3ebe3 100%);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(26, 45, 90, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  background: linear-gradient(90deg, #faf8f5 0%, #efe6dc 100%);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.faq-brand {
  color: #c45a1a;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #5b7fd4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26, 45, 90, 0.12);
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--primary-navy);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 480px;
}

.faq-answer p {
  margin: 0 20px 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.55;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 20px 0 24px;
}

.cta-banner-bg {
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  position: relative;
  box-shadow: none;
}

.cta-banner-overlay {
  background: radial-gradient(
    ellipse 52% 95% at 50% 42%,
    rgba(7, 32, 100, 0.75) 0%,
    rgba(10, 45, 139, 0.58) 38%,
    rgba(10, 45, 139, 0.28) 68%,
    rgba(10, 45, 139, 0) 100%
  );
  padding: 72px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
}

.cta-title {
  font-family: var(--font-main);
  font-size: 1.45rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 28px;
  text-shadow: none;
  letter-spacing: 0;
}

.cta-title-line {
  display: block;
}

.cta-title strong {
  font-weight: 700;
}

.cta-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-btn-wrapper .btn {
  border-radius: 8px;
  box-shadow: none;
  padding: 14px 28px;
  font-size: 0.95rem;
}

.cta-btn-wrapper .btn:hover {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 78, 8, 0.38);
  filter: brightness(1.05);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #ffffff;
  border-top: none;
  padding: 18px 0 30px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px 28px;
}

.footer-logo {
  flex: 0 1 260px;
  min-width: 160px;
  display: flex;
  align-items: center;
  height: 66px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #dbe8ff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  stroke: #3b6fd4;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #8a94a6;
  line-height: 1.2;
}

.footer-contact-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #153EB2;
  line-height: 1.4;
  text-decoration: none;
}

a.footer-contact-value:hover {
  color: var(--accent-orange);
}

.footer-contact-item:last-child .footer-contact-value {
  max-width: none;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* App Store & Google Play Badges */
.app-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.store-badge:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

img.badge-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.badge-icon-apple {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.badge-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  color: #cccccc;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
}

html[lang="fr"] .footer-contact {
  gap: clamp(14px, 2vw, 28px);
}

html[lang="fr"] .footer-contact-label {
  font-size: 0.74rem;
}

html[lang="fr"] .footer-contact-value {
  font-size: 0.84rem;
}

html[lang="fr"] .footer-contact-item:last-child .footer-contact-value {
  font-size: 0.72rem;
}

.footer-divider {
  width: 100vw;
  max-width: 100vw;
  height: 1px;
  background-color: var(--border-light);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.85rem;
  color: #153EB2;
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}

.footer-selectors {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-lang-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-lang-wrapper + .footer-region-wrapper {
  border-left: 1px solid #c5d4e8;
  padding-left: 16px;
}

.footer-region-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-select-btn, .footer-region-select {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
}

.footer-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  width: auto;
  padding: 4px;
  display: none;
  flex-direction: column;
  z-index: 1050;
}

.footer-dropdown.show {
  display: flex;
}

.footer-lang-opt,
.footer-region-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.footer-lang-opt:hover,
.footer-region-opt:hover,
.footer-lang-opt.active,
.footer-region-opt.active {
  background: var(--bg-light-blue);
  color: var(--accent-orange);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Laptop & Large Tablets (1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .features-bar-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .logo-img {
    height: 54px;
    max-width: 210px;
  }

  .header-container,
  .logo-group {
    height: 54px;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 20px;
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-section {
    background-image: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    padding: 36px 0;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .hero-media {
    display: block;
    margin-top: 28px;
    width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-desc-line {
    white-space: normal;
  }

  .hero-checklist li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-cta-box {
    align-items: center;
    width: 100%;
  }

  .hero-cta-box .btn {
    width: 100%;
    max-width: 380px;
  }

  .sub-cta-text {
    margin-left: 0;
  }

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

  .testimonial-card {
    flex-direction: column;
    text-align: left;
    border-top: 1.5px solid var(--testimonial-blue, #c8dff8);
    border-right: 1.5px solid var(--testimonial-blue, #c8dff8);
    border-left: none;
    border-bottom: none;
  }

  .testimonial-img-wrapper {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 220px;
  }

  .testimonial-img-wrapper::after {
    width: 100%;
    height: 56px;
    top: auto;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, var(--testimonial-blue, #c8dff8));
  }

  .testimonial-body {
    padding: 24px 22px 26px;
  }

  .quote-mark {
    display: block;
    top: 10%;
    right: 12%;
    left: auto;
    font-size: 4.5rem;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
    flex: none;
    min-width: 0;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-contact-item {
    flex: none;
    width: 100%;
    justify-content: flex-start;
  }

  .footer-contact-item:last-child .footer-contact-value {
    max-width: none;
    white-space: normal;
    font-size: 0.85rem;
  }

  .app-badges {
    justify-content: center;
    justify-self: auto;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .copyright {
    white-space: normal;
    text-align: center;
  }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .features-bar-card {
    grid-template-columns: 1fr;
  }

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

  .cta-title {
    font-size: 1.35rem;
  }

  .cta-banner-overlay {
    padding: 44px 16px;
  }

  .app-badges {
    flex-direction: column;
    width: 100%;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }
}
