/* ==========================================================================
   StoraTax - Design System & Stylesheet
   Brand Colors:
   - Primary Orange: #F5711D
   - Primary Blue: #1B3A6B
   - Light Blue Bg: #EAF2FB
   - Content Bg: #FFFFFF
   - Text Gray: #4A4A4A
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  /* Brand Palette */
  --color-primary-orange: #FC7309;
  --color-primary-orange-hover: #E56708;
  --color-primary-orange-light: #FFF2EA;
  --color-primary-orange-glow: rgba(252, 115, 9, 0.28);
  
  --color-primary-blue: #1B3A6B;
  --color-primary-blue-dark: #0F2243;
  --color-primary-blue-light: #2A5699;
  --color-primary-blue-soft: #234B88;
  
  --color-bg-light-blue: #EAF2FB;
  --color-bg-light-blue-subtle: #F3F8FE;
  --color-bg-white: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-alt: #F8FAFD;

  --color-text-main: #1E293B;
  --color-text-body: #4A4A4A;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;

  --color-border: #E2E8F0;
  --color-border-subtle: #EDF2F7;
  --color-border-blue: #D0E1F5;

  --color-success: #10B981;
  --color-success-bg: #ECFDF5;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-handwriting: 'Caveat', cursive, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(27, 58, 107, 0.08), 0 4px 10px -4px rgba(27, 58, 107, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(27, 58, 107, 0.12), 0 8px 16px -6px rgba(27, 58, 107, 0.06);
  --shadow-orange: 0 10px 25px -3px rgba(252, 115, 9, 0.35);
  --shadow-phone: 0 25px 60px -15px rgba(15, 34, 67, 0.35);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container-max: 1240px;
}

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

html {
  font-family: var(--font-sans);
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-weight: 900;
}

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

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.section-sm {
  padding: 64px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background-color: #FC7309;
  background-image: linear-gradient(#1B3A6B, #1B3A6B);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  color: var(--color-text-white);
  box-shadow: var(--shadow-orange);
  transition: background-size 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-size: 100% 100%;
  background-color: #FC7309;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(27, 58, 107, 0.4);
}

.btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.btn-arrow {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-inner {
  transform: scale(1.07);
}

.btn-primary:hover .btn-arrow {
  transform: scale(1.12);
}

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

.btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--color-primary-blue);
  border: 2px solid var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-bg-light-blue);
  border-color: var(--color-primary-blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Checkmarks */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-primary-orange);
  color: #FFFFFF;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-pill-orange {
  background-color: var(--color-primary-orange-light);
  color: var(--color-primary-orange);
  border: 1px solid rgba(245, 113, 29, 0.2);
}

.badge-pill-blue {
  background-color: #E2EDFA;
  color: var(--color-primary-blue);
  border: 1px solid rgba(27, 58, 107, 0.15);
}

/* ==========================================================================
   1. NAVBAR (Exact Match to Reference Design)
   ========================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: all var(--transition-normal);
}

.navbar-wrapper.scrolled {
  box-shadow: 0 4px 20px -2px rgba(11, 42, 120, 0.06);
}

.navbar-container {
  max-width: 1380px;
  width: 100%;
  padding-left: 36px;
  padding-right: 36px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

/* Logo - Exact StoraTax Match */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  display: flex;
  align-items: center;
}

.brand-title .brand-stora {
  color: #0B2A78;
}

.brand-title .brand-tax {
  color: #FF4D00;
}

.brand-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  color: #0B2A78;
  letter-spacing: -0.01em;
  margin-top: 3px;
  line-height: 1.2;
}

/* Nav Links - Exact Blue Typography */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 1.02rem;
  font-weight: 500;
  color: #2752D8;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: #0B2A78;
}

.nav-link::after {
  display: none;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 34, 67, 0.12);
}

.nav-lang-code {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B2A78;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Header CTA Button - Rounded Rectangle Match */
.btn-header-cta {
  background-color: #FC7309;
  background-image: linear-gradient(#1B3A6B, #1B3A6B);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 13px 26px;
  border-radius: 10px;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition: background-size 0.4s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.navbar-wrapper .btn.btn-primary.btn-header-cta,
.navbar-wrapper #navCtaBtn {
  background-color: #FC7309;
}

.btn-header-cta:hover,
.navbar-wrapper .btn.btn-primary.btn-header-cta:hover,
.navbar-wrapper #navCtaBtn:hover {
  background-size: 100% 100%;
  background-color: #FC7309;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(27, 58, 107, 0.28);
}

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

/* Mobile Nav Toggle */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  padding: 8px;
  background-color: var(--color-bg-light-blue);
  color: var(--color-primary-blue);
}

.mobile-toggle-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-primary-blue);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.mobile-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 2px solid var(--color-border-blue);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: flex;
  animation: slideDown 0.3s ease;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

/* ==========================================================================
   2. HERO SECTION (Track Every Business Mile)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #EAF4FC;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  min-height: 680px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 46%;
  display: block;
}

.hero-section::after {
  display: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 56%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 251, 255, 0.98) 0%,
    rgba(243, 249, 255, 0.95) 48%,
    rgba(232, 244, 255, 0.7) 74%,
    rgba(255, 255, 255, 0.2) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 68%, transparent 100%);
}

.hero-copy::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 520px) 1fr;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 680px;
}

.hero-copy {
  padding: 40px 32px 48px 28px;
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-product-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: #FC7309;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(252, 115, 9, 0.28);
}

.hero-product-icon svg {
  width: 26px;
  height: 26px;
}

.hero-product-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0B2A78;
  line-height: 1.15;
}

.hero-product-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2752D8;
  line-height: 1.3;
  margin-top: 2px;
}

.hero-kicker {
  display: inline-block;
  background: rgba(226, 239, 255, 0.95);
  color: #1E4BB8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 900;
  color: #0B2A78;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: #123A8C;
  line-height: 1.42;
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0B2A78;
  line-height: 1.35;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.hero-cta-wrap::before {
  display: none;
}

.hero-cta {
  background-color: #FC7309;
  background-image: linear-gradient(#1B3A6B, #1B3A6B);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(252, 115, 9, 0.32);
  text-decoration: none;
  overflow: hidden;
  transition: background-size 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  background-size: 100% 100%;
  background-color: #FC7309;
  color: #FFFFFF;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #1E3A8A;
  padding-left: 0;
  text-align: center;
}

.hero-cta-hotspot {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   3. FEATURE ICONS ROW (Exact 1:1 Match to Screenshot)
   ========================================================================== */
.section-features-strip {
  background-color: #FFFFFF;
  position: relative;
  z-index: 10;
  padding: 46px 0 50px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.feature-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 12px;
  transition: transform 0.2s ease;
}

.feature-strip-item:hover {
  transform: translateY(-3px);
}

.feature-strip-icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #DBEAFE;
  color: #002B82;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.feature-strip-item:hover .feature-strip-icon-circle {
  transform: scale(1.06);
  background-color: #CEE2FE;
}

.feature-strip-title {
  font-size: 1.28rem;
  font-weight: 900;
  color: #0B2A78;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-strip-subtitle {
  font-size: 1.0rem;
  color: #2752D8;
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   PRICING PLANS
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 100%);
  padding: 72px 0 80px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B2A78;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 1.02rem;
  color: #4B6CB3;
  font-weight: 500;
  margin-bottom: 22px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #D7E3F5;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(11, 42, 120, 0.06);
}

.pricing-toggle-btn {
  border: 0;
  background: transparent;
  color: #1B3A6B;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pricing-toggle-btn.is-active {
  background: #2563EB;
  color: #FFFFFF;
}

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

.plan-card {
  background: #FFFFFF;
  border: 1px solid #E6EEF8;
  border-radius: 22px;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px -12px rgba(11, 42, 120, 0.12);
  min-height: 100%;
}

.plan-card--gold {
  border: 1.5px solid #E8B56A;
  box-shadow: 0 12px 30px -10px rgba(232, 181, 106, 0.28);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.35;
}

.plan-badge--gray {
  background: #EEF2F7;
  color: #5B6B82;
}

.plan-badge--blue {
  background: #DCEBFF;
  color: #1E4BB8;
}

.plan-badge--sand {
  background: #F6EADF;
  color: #8A5A32;
}

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

.plan-amount {
  font-size: 2.55rem;
  font-weight: 900;
  color: #0B2A78;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-period {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
}

.plan-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 16px;
}

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

.plan-features--caps li {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1E3A8A;
  line-height: 1.35;
}

.plan-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: #F5C14D url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}

.pricing-section.is-yearly .plan-feature-yearly-off {
  color: #94A3B8;
  text-decoration: line-through;
}

.pricing-section.is-yearly .plan-feature-yearly-off::before {
  background: #F97316 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  background: #FC7309;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(252, 115, 9, 0.32);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.plan-cta:hover {
  background: #E56708;
  transform: translateY(-2px);
}

/* ==========================================================================
   4. "A COMPLETE SOLUTION FOR YOUR TAX NEEDS" SECTION
   ========================================================================== */
.complete-solution-section {
  background: linear-gradient(135deg, #EAF3FD 0%, #F5F9FE 50%, #E8F2FC 100%);
  padding: 50px 0 54px;
  position: relative;
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

/* Solution Left Column */
.solution-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0B2A78;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.solution-checklist-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  flex-grow: 1;
}

.solution-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.solution-check-circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: #FC7309;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 5px rgba(252, 115, 9, 0.25);
  flex-shrink: 0;
}

.solution-check-circle svg {
  width: 12px;
  height: 12px;
  stroke: #FFFFFF;
}

.solution-item-text {
  font-size: 0.91rem;
  font-weight: 600;
  color: #0B2A78;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Solution Right Column: HTML testimonial card */
.solution-right {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
}

.testimonial-card {
  width: 100%;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: 318px;
  background: #EEF5FC;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(11, 42, 120, 0.14);
}

.testimonial-photo-wrap {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  background: #D7E6F6;
}

.testimonial-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(238, 245, 252, 0) 38%,
    rgba(238, 245, 252, 0.2) 58%,
    rgba(238, 245, 252, 0.62) 80%,
    #EEF5FC 100%
  );
  pointer-events: none;
  z-index: 2;
}

.testimonial-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 6% 12%;
  display: block;
}

.testimonial-content {
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 28px 26px 26px 8px;
  margin-left: -52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: start;
}

.testimonial-quote-mark {
  color: #FF4D00;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.62;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: 2px;
  margin-left: -4px;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #1A2F8A;
  line-height: 1.38;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin: 14px 0 12px 42px;
}

.testimonial-stars svg {
  width: 22px;
  height: 22px;
  fill: #F5C518;
}

.testimonial-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1A2F8A;
  line-height: 1.2;
  margin: 0 0 0 42px;
}

.testimonial-role {
  margin: 3px 0 0 42px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #4B6CB3;
  line-height: 1.3;
}

/* ==========================================================================
   5. INTERACTIVE MILEAGE DEDUCTION CALCULATOR
   ========================================================================== */
.calc-section {
  background-color: var(--color-bg-white);
  padding: 80px 0;
}

.calc-box {
  background: linear-gradient(135deg, #F0F6FC 0%, #FFFFFF 100%);
  border: 2px solid var(--color-border-blue);
  border-radius: var(--radius-2xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-input-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.slider-title {
  font-weight: 700;
  color: var(--color-primary-blue);
  font-size: 1.05rem;
}

.slider-value-display {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-orange);
  background: var(--color-primary-orange-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #CBD5E1;
  outline: none;
  transition: opacity .2s;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary-orange);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 113, 29, 0.4);
  border: 3px solid #FFFFFF;
  transition: transform 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-helper {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.calc-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-btn {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
  background: var(--color-primary-blue);
  color: #FFFFFF;
  border-color: var(--color-primary-blue);
}

/* Calc Results Panel */
.calc-results-card {
  background: linear-gradient(145deg, var(--color-primary-blue), var(--color-primary-blue-dark));
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.calc-results-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245, 113, 29, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.calc-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-stat-label {
  font-size: 0.9rem;
  color: #CBD5E1;
}

.calc-stat-num {
  font-size: 1.15rem;
  font-weight: 700;
}

.calc-highlight-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 113, 29, 0.3);
  text-align: center;
}

.calc-highlight-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FDBA74;
  font-weight: 700;
}

.calc-highlight-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 6px 0;
}

.calc-highlight-amount span {
  color: var(--color-primary-orange);
}

.calc-irs-note {
  font-size: 0.72rem;
  color: #94A3B8;
  text-align: center;
}

/* ==========================================================================
   6. TRUST & SECURITY CARDS (Exact Match to Screenshot)
   ========================================================================== */
.trust-badges-section {
  background-color: #CFE5F7;
  padding: 56px 0 64px;
  position: relative;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.trust-feature-card {
  background-color: #FFFFFF;
  border: none;
  border-radius: 18px;
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: none;
}

.trust-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -6px rgba(11, 42, 120, 0.1);
}

.trust-feature-icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #DBEAFE;
  color: #002B82;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-feature-icon-circle svg {
  width: 56px;
  height: 56px;
}

.trust-feature-card:hover .trust-feature-icon-circle {
  transform: none;
  background-color: #DBEAFE;
}

.trust-feature-title {
  font-size: 1.28rem;
  font-weight: 900;
  color: #0B2A78;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.trust-feature-subtitle {
  font-size: 1.0rem;
  color: #2752D8;
  font-weight: 500;
  line-height: 1.35;
  max-width: 230px;
}

/* ==========================================================================
   7. BOTTOM CTA BANNER (BRIGHT PANORAMIC HIGHWAY BANNER)
   ========================================================================== */
.cta-banner-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.cta-banner-panoramic-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.cta-banner-clickable {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.cta-banner-panoramic-img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.35s ease;
}

.cta-banner-hotspot {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 30%;
  height: 16%;
  transform: translateX(-50%);
  border-radius: 999px;
  color: transparent;
  font-size: 0;
  z-index: 2;
}

.cta-banner-clickable:hover .cta-banner-panoramic-img {
  transform: scale(1.006);
}

/* ==========================================================================
   8. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
  padding: 72px 0 88px;
}

.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B2A78;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 1.02rem;
  color: #4B6CB3;
  font-weight: 500;
}

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

.faq-item {
  border: 1.5px solid #EDD7A8;
  border-radius: 22px;
  overflow: hidden;
  background: #FFF8EC;
  box-shadow: 0 8px 22px -16px rgba(160, 110, 40, 0.28);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  background: #FFF6E6;
  border-color: #E8C98A;
  box-shadow: 0 10px 24px -14px rgba(160, 110, 40, 0.32);
}

.faq-question {
  width: 100%;
  padding: 22px 22px 18px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 800;
  color: #1A1A1A;
  background: transparent;
  border: 0;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.faq-toggle-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6B63F7 0%, #5346EE 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(83, 70, 238, 0.32);
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.faq-toggle-icon svg {
  width: 18px;
  height: 18px;
}

.faq-item:not(.active) .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  padding: 0 28px;
  color: #4A4A4A;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p + p {
  margin-top: 6px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.footer-section {
  background-color: #FFFFFF;
  padding-top: 28px;
  padding-bottom: 22px;
  width: 100%;
  border-top: 1px solid #EEF2F8;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 28px;
  padding-bottom: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

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

.footer-nav-link {
  color: #2752D8;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav-link:hover {
  text-decoration: underline;
}

.footer-app-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-app-badges .app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 5px 12px 5px 10px;
  border-radius: 8px;
  text-decoration: none;
  height: 42px;
  box-sizing: border-box;
}

.footer-app-badges .app-badge-btn:hover {
  background-color: #111111;
}

.footer-app-badges .app-badge-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-app-badges .badge-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.05;
}

.footer-app-badges .badge-sub {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #D4D4D8;
}

.footer-app-badges .badge-main {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  width: 100%;
  padding: 14px 0 16px;
  border-top: 1px solid #EEF2F8;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #EEF4FF;
  color: #2752D8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
}

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

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748B;
}

.footer-contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #15357A;
  line-height: 1.3;
}

.footer-contact-item:hover .footer-contact-value {
  color: #FC7309;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid #EEF2F8;
}

.footer-copyright {
  color: #2752D8;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-locales {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #2752D8;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 2px 4px;
  font-family: inherit;
}

.footer-locale-btn:hover {
  opacity: 0.8;
}

.footer-locale-btn .chevron-icon {
  stroke: #2752D8;
  stroke-width: 2.2;
}

.footer-pipe-divider {
  color: #94A3B8;
  font-size: 0.95rem;
  user-select: none;
}

.country-flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 34, 67, 0.12);
  display: inline-block;
  object-fit: cover;
  flex-shrink: 0;
}

/* ==========================================================================
   MODAL / SIGNUP DIALOG (Exact Match to Screenshot 2)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 34, 67, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-box {
  background: #FFFFFF;
  border-radius: 28px;
  max-width: 480px;
  width: 100%;
  padding: 36px 36px 32px;
  box-shadow: 0 25px 50px -12px rgba(15, 34, 67, 0.25);
  position: relative;
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EF4444;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: #DC2626;
  transform: scale(1.08);
}

.modal-box .badge-pill-orange {
  background-color: #FFF3EA;
  color: #EA580C;
  border: 1px solid #FED7AA;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 14px;
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0F2243;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.modal-sub {
  font-size: 0.92rem;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E293B;
}

.form-input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background-color: #F8FAFC;
  font-size: 0.95rem;
  color: #0F172A;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus {
  border-color: #FA6614;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(250, 102, 20, 0.15);
  outline: none;
}

.modal-box .btn-primary {
  background-color: #FC7309;
  background-image: linear-gradient(#1B3A6B, #1B3A6B);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 24px;
  box-shadow: 0 4px 14px rgba(245, 106, 30, 0.35);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-size 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-box .btn-primary:hover {
  background-size: 100% 100%;
  background-color: #FC7309;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 58, 107, 0.4);
}

/* Toast notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-primary-blue);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  border-left: 4px solid var(--color-primary-orange);
}

.toast-notice.show {
  display: flex;
  animation: slideInRight 0.3s ease;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes floatSlow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(3deg); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-section {
    min-height: 0;
    padding: 0;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-section::before {
    width: 72%;
  }

  .hero-copy {
    padding: 36px 24px 40px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

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

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

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

  .footer-top-row {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .footer-nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 28px;
  }

  .footer-contact {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-features-strip {
    padding: 48px 0;
  }

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

  .mobile-toggle-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
    max-width: 100%;
    padding: 6px 12px;
  }

  .hero-copy {
    padding: 28px 20px 36px;
    max-width: 100%;
  }

  .hero-section::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(247, 251, 255, 0.96) 0%,
      rgba(241, 248, 255, 0.9) 70%,
      rgba(241, 248, 255, 0.78) 100%
    );
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-banner-img {
    object-position: 82% 50%;
  }

  .hero-section {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
  }

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

  .pricing-title,
  .faq-title {
    font-size: 1.9rem;
  }

  .faq-section {
    padding: 56px 0 68px;
  }

  .faq-question {
    font-size: 0.98rem;
    padding: 16px 14px 14px 18px;
  }

  .faq-toggle-icon {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding: 0 18px;
  }

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

  .testimonial-card {
    grid-template-columns: 1.1fr 1fr;
    min-height: 280px;
  }

  .testimonial-photo-wrap {
    min-height: 280px;
    height: auto;
  }

  .testimonial-photo-wrap::after {
    background: linear-gradient(
      90deg,
      rgba(238, 245, 252, 0) 36%,
      rgba(238, 245, 252, 0.22) 58%,
      rgba(238, 245, 252, 0.65) 82%,
      #EEF5FC 100%
    );
  }

  .testimonial-photo {
    object-position: 6% 12%;
  }

  .testimonial-content {
    margin-left: -40px;
    background: transparent;
    padding: 22px 18px 20px 6px;
  }

  .testimonial-stars,
  .testimonial-name,
  .testimonial-role {
    margin-left: 36px;
  }

  .features-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .footer-nav-links {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .footer-app-badges {
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .testimonial-photo-wrap {
    min-height: 220px;
    height: 220px;
  }

  .testimonial-photo-wrap::after {
    background: linear-gradient(
      to bottom,
      rgba(238, 245, 252, 0) 45%,
      rgba(238, 245, 252, 0.4) 72%,
      #EEF5FC 100%
    );
  }

  .testimonial-content {
    padding: 8px 18px 22px;
    margin-left: 0;
  }

  .testimonial-stars,
  .testimonial-name,
  .testimonial-role {
    margin-left: 42px;
  }
}
