/* ==========================================
   iStudy+ NEW LANDING PAGE — CSS
   Modern SaaS, Mobile-First, RTL
   ========================================== */

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

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

@font-face {
    font-family: 'IBMPlexSansArabic';
    src: url('IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
body {
  font-family: 'IBMPlexSansArabic', 'Noto Kufi Arabic', sans-serif ;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #0369a1, #0ea5e9, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #bae6fd, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0369a1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge i {
  font-size: 0.85rem;
}

.badge-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-title.light {
  color: #fff;
}

.section-desc {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc.light {
  color: rgba(255,255,255,0.8);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(3, 105, 161, 0.45);
}

.btn-secondary {
  background: #fff;
  color: #0369a1;
  border: 2px solid #bae6fd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  background: #f0f9ff;
  border-color: #7dd3fc;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #0369a1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: #0369a1;
  border: 2px solid #bae6fd;
}

.btn-outline:hover {
  background: #f0f9ff;
  border-color: #0369a1;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 16px;
}

.btn-block {
  width: 100%;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  position: relative;
}

.nav-links a:hover {
  color: #0369a1;
}

.nav-login-btn {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
}

.nav-login-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-mobile-login {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-cta {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 12px;
  margin-top: 10px;
  border-bottom: none !important;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: #f0f9ff;
}

/* Main diagonal wave — sweeps from right covering text, opening to left for mockup (RTL) */
.hero-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 55%, #7dd3fc 75%, transparent 100%);
  clip-path: polygon(100% 0, 100% 100%, 45% 100%, 15% 0);
  z-index: 1;
}

/* Soft glow overlay for depth */
.hero-diagonal-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 60% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fde68a;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-highlight {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-number {
  font-size: 1.15em;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* Hero-specific button overrides (on dark bg) */
.hero-cta-group .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0c4a6e;
  box-shadow: 0 4px 24px rgba(251, 191, 36, 0.4);
}

.hero-cta-group .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.55);
}

.hero-cta-group .btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

.hero-cta-group .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.hero-trust-stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.mockup-screen {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}

.mockup-header {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #22c55e; }

.mockup-body {
  padding: 24px;
}

.mockup-progress-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.mockup-progress-bar {
  width: 100%;
  height: 10px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.mockup-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  border-radius: 10px;
  animation: progressFill 2s ease 1s both;
}

.mockup-progress-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0369a1;
  text-align: left;
  margin-bottom: 20px;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-stat {
  background: #f8fafc;
  padding: 12px 8px;
  border-radius: 12px;
  text-align: center;
}

.mockup-stat-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0369a1;
}

.mockup-stat-label {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 2px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 10px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #bae6fd, #e0f2fe);
  border-radius: 6px 6px 0 0;
  transition: height 1.5s ease;
  min-height: 10px;
}

.chart-bar.active {
  background: linear-gradient(180deg, #0369a1, #0ea5e9);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  font-weight: 700;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-score {
  top: 20px;
  right: -20px;
  color: #22c55e;
}

.badge-score i {
  color: #22c55e;
}

.badge-streak {
  bottom: 40px;
  left: -20px;
  color: #f59e0b;
  animation-delay: 1.5s;
}

.badge-streak i {
  color: #f59e0b;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 4;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ==================== DIAGNOSTIC SECTION ==================== */
.diagnostic-section {
  padding: 100px 0;
  background: #f8fafc;
}

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

.diagnostic-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.diagnostic-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.diagnostic-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1.1rem;
}

.diagnostic-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.diagnostic-feature p {
  font-size: 0.9rem;
  color: #64748b;
}

.diagnostic-cta {
  margin-top: 8px;
}

/* Diagnostic Visual Card */
.diagnostic-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 105, 161, 0.1), 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid #e0f2fe;
}

.diagnostic-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.diagnostic-result-bars {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

.result-bar {
  width: 100%;
  height: 8px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease;
}

.result-bar-fill.animate {
  width: var(--target-width);
}

.diagnostic-card-footer {
  display: flex;
  justify-content: space-around;
  padding: 20px 24px;
  border-top: 1px solid #f1f5f9;
  background: #f8fbff;
}

.diagnostic-score,
.diagnostic-potential {
  text-align: center;
}

.score-label,
.potential-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.score-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0369a1;
}

.potential-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #22c55e;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 100px 0;
  background: #fff;
}

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

.step-card {
  position: relative;
  background: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 15px 40px rgba(3, 105, 161, 0.1);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -18px;
  right: 30px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0369a1;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 0.9rem;
}

/* ==================== FEATURES ==================== */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

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

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(3, 105, 161, 0.12);
  border-color: #bae6fd;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0369a1;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.5;
}

.feature-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.8;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==================== SCORE BANNER ==================== */
.score-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #0369a1, #0284c7, #0ea5e9);
  position: relative;
  overflow: hidden;
}

.score-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.score-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.score-banner-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.score-highlight {
  color: #fde68a;
}

.score-banner-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 100px 0;
  background: #fff;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 10px 30px rgba(3, 105, 161, 0.08);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 24px;
  min-height: 80px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #94a3b8;
}

.testimonial-score-change {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f0fdf4;
  color: #16a34a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0369a1;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.testimonial-nav-btn:hover {
  background: #0369a1;
  color: #fff;
  border-color: #0369a1;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0f2fe;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
  background: #0369a1;
  width: 28px;
  border-radius: 10px;
}

/* ==================== FREE PLAN SECTION ==================== */
.free-plan-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c4a6e, #075985, #0369a1);
  position: relative;
  overflow: hidden;
}

.free-plan-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.free-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.free-plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.free-plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}

.free-plan-feature i {
  color: #a5f3fc;
  font-size: 1.1rem;
}

.free-plan-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Phone Mockup */
.free-plan-visual {
  display: flex;
  justify-content: center;
}

.free-plan-phone {
  width: 280px;
  background: #0c4a6e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #0c4a6e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.phone-screen {
  background: #fff;
  border-radius: 28px;
  padding: 30px 20px;
  margin-top: -12px;
}

.phone-greeting {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.phone-plan-title {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.phone-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #475569;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.phone-task.completed {
  background: #f0fdf4;
  color: #16a34a;
}

.phone-task.completed i {
  color: #22c55e;
}

.phone-task.active {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.phone-task.active i {
  color: #0369a1;
}

.phone-task i {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.phone-progress {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.phone-progress-text {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.phone-progress-bar {
  width: 100%;
  height: 8px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.phone-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  border-radius: 10px;
}

.phone-progress-percent {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0369a1;
  text-align: left;
}

/* ==================== PRICING ==================== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pricing-toggle-group {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.pricing-toggle {
  padding: 12px 28px;
  border: 2px solid #e0f2fe;
  background: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pricing-toggle.active {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  border-color: transparent;
}

.pricing-toggle:hover:not(.active) {
  border-color: #bae6fd;
  color: #0369a1;
}

.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 40px;
  animation: pulse 2s ease-in-out infinite;
}

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

.pricing-card {
  background: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 20px 50px rgba(3, 105, 161, 0.1);
}

.pricing-card.featured {
  border-color: #0369a1;
  box-shadow: 0 20px 60px rgba(3, 105, 161, 0.2);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.pricing-plan-desc {
  font-size: 0.9rem;
  color: #94a3b8;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0369a1;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: #94a3b8;
}

.pricing-original-price {
  font-size: 0.9rem;
  color: #ef4444;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-original-price .original-price-text {
  text-decoration: line-through;
}

.pricing-form {
  width: 100%;
}

.pricing-form .btn {
  width: 100%;
}

.pricing-features-list {
  text-align: right;
  margin-bottom: 28px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f8fafc;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li i.fa-check {
  color: #22c55e;
  font-size: 0.85rem;
}

.pricing-features-list li i.fa-times {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.pricing-features-list li.disabled {
  color: #cbd5e1;
}

.pricing-cta-btn {
  font-family: inherit;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-trust-item i {
  color: #0369a1;
}

/* ==================== FINAL CTA ==================== */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c4a6e, #075985, #0369a1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.final-shape-1 {
  width: 400px;
  height: 400px;
  background: #38bdf8;
  top: -100px;
  right: -100px;
}

.final-shape-2 {
  width: 350px;
  height: 350px;
  background: #0284c7;
  bottom: -100px;
  left: -100px;
}

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

.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.final-cta-divider {
  color: rgba(255,255,255,0.3);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 0 30px;
  background: #0f172a;
  color: #94a3b8;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: #0369a1;
  color: #fff;
}

.footer-links-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: #7dd3fc;
}

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #1e293b;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-float.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 10px 16px;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
}

.mobile-sticky-whatsapp {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #25d366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 78%; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE — TABLET ==================== */
@media (max-width: 1024px) {
  .hero-diagonal {
    clip-path: polygon(0 0, 0 50%, 100% 70%, 100% 0);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  /* On tablet: content first, then visual */
  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-mockup {
    max-width: 350px;
  }

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

  /* Diagnostic: content first, visual second */
  .diagnostic-content {
    order: 1;
  }

  .diagnostic-visual {
    order: 2;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .step-arrow {
    display: none;
  }

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

  .testimonial-card {
    min-width: calc(50% - 12px);
  }

  .free-plan-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  /* Free plan: content first, phone mockup second */
  .free-plan-content {
    order: 1;
  }

  .free-plan-visual {
    order: 2;
  }

  .free-plan-features {
    align-items: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

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

/* ==================== RESPONSIVE — MOBILE ==================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .hero-diagonal {
    clip-path: polygon(0 0, 0 45%, 100% 65%, 100% 0);
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.35;
    color: #ffffff;
    opacity: 1;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.96);
    opacity: 1;
  }

  .hero-badge {
    font-size: 0.85rem;
    margin-bottom: 18px;
    color: #fde68a;
    opacity: 1;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 360px;
    padding: 15px 24px;
    font-size: 0.95rem;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.82), rgba(2, 132, 199, 0.68));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(186, 230, 253, 0.45);
    box-shadow: 0 10px 24px rgba(3, 105, 161, 0.25);
    border-radius: 16px;
    margin-top: 8px;
    opacity: 1;
  }

  .hero-trust-item {
    font-size: 0.8rem;
    color: #f8fafc;
    opacity: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  }

  .hero-trust-item i {
    color: #e0f2fe;
  }

  .hero-trust-stars {
    color: #facc15;
    text-shadow: none;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-mockup {
    max-width: 280px;
  }

  .badge-score {
    right: 0;
    top: -10px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .badge-streak {
    left: 0;
    bottom: 20px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  /* Diagnostic section mobile */
  .diagnostic-section {
    padding: 70px 0;
  }

  .diagnostic-content {
    order: 1;
  }

  .diagnostic-visual {
    order: 2;
  }

  .diagnostic-content .section-title {
    font-size: 1.5rem;
  }

  .diagnostic-cta {
    width: 100%;
    text-align: center;
  }

  /* Steps mobile - horizontal scroll hint */
  .step-card {
    padding: 30px 22px;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  /* Features mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* Score banner mobile */
  .score-banner {
    padding: 40px 0;
  }

  .score-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .score-banner-text h2 {
    font-size: 1.2rem;
  }

  /* Testimonials mobile */
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    min-height: auto;
    line-height: 1.85;
  }

  /* Free plan mobile */
  .free-plan-section {
    padding: 70px 0;
  }

  .free-plan-content {
    order: 1;
  }

  .free-plan-visual {
    order: 2;
  }

  .free-plan-feature {
    font-size: 0.9rem;
  }

  /* Pricing mobile */
  .pricing-section {
    padding: 70px 0;
  }

  .pricing-toggle-group {
    gap: 6px;
  }

  .pricing-toggle {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .pricing-cards {
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 22px;
  }

  .pricing-card.featured {
    order: -1;
    border-width: 2px;
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.15);
  }

  .urgency-banner {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .whatsapp-float {
    bottom: 80px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    left: 16px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Final CTA mobile */
  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-title {
    font-size: 1.5rem;
  }

  .final-cta-desc {
    font-size: 1rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Section headers mobile */
  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 0.95rem;
  }
}

/* ==================== RESPONSIVE — SMALL MOBILE ==================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-diagonal {
    clip-path: polygon(0 0, 0 40%, 100% 60%, 100% 0);
  }

  .hero-title {
    font-size: 1.45rem;
    line-height: 1.4;
    color: #ffffff;
    opacity: 1;
    -webkit-text-fill-color: #ffffff;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.96);
    opacity: 1;
  }

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

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-cta-group .btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .hero-trust {
    gap: 10px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .hero-trust-item {
    font-size: 0.75rem;
  }

  .mockup-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .mockup-stat-number {
    font-size: 1rem;
  }

  .hero-mockup {
    max-width: 260px;
  }

  .diagnostic-section,
  .how-it-works,
  .features-section,
  .testimonials-section,
  .free-plan-section,
  .pricing-section,
  .final-cta-section {
    padding: 50px 0;
  }

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

  /* Feature cards compact */
  .feature-card {
    padding: 22px 18px;
  }

  .feature-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  /* Steps compact */
  .step-card {
    padding: 28px 18px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  /* Pricing compact */
  .pricing-card {
    padding: 26px 18px;
  }

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

  .pricing-features-list li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* Testimonials compact */
  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-score-change {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  /* Free plan phone mockup */
  .free-plan-phone {
    width: 240px;
  }

  .phone-screen {
    padding: 24px 16px;
  }

  .phone-greeting {
    font-size: 1rem;
  }

  .phone-task {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Score banner compact */
  .score-banner-text h2 {
    font-size: 1.1rem;
  }

  .score-banner-text p {
    font-size: 0.85rem;
  }

  /* Final CTA compact */
  .final-cta-title {
    font-size: 1.3rem;
  }

  .final-cta-desc {
    font-size: 0.9rem;
  }

  .final-cta-trust {
    font-size: 0.8rem;
  }
}
