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

:root {
  --navy: #1a1a6e;
  --deep-blue: #1e1e8a;
  --royal-blue: #2828a8;
  --bright-blue: #3a3ac0;
  --accent-green: #3A854D;
  --accent-teal: #2F6B3E;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-bottom: 2px solid var(--accent-green);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #e8f0ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-green);
  font-size: 1rem;
  border: 2px solid var(--accent-green);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-contact {
  text-align: right;
  font-size: 0.78rem;
}

.nav-contact .label {
  color: var(--royal-blue);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

.nav-contact .phone {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.nav-contact .phone:hover {
  color: var(--accent-green);
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-family: inherit;
}

.btn-login {
  font-size: 0.88rem;
}

.btn-start {
  background: var(--accent-green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-start:hover {
  background: #2F6B3E;
}

a.btn-login {
  text-decoration: none;
}

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #161EB3 0%, #191E81 100%);
  padding: 116px 40px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: visible;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1121px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.03em;
  color: var(--white);
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 91px;
  color: var(--white);
  margin: 0;
}

.hero h1 .highlight {
  color: #56B4F9;
  display: inline;
}

.hero-desc {
  max-width: 803px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0;
  opacity: 1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  margin-top: 21px;
  padding-bottom: 80px;
}

.btn-contact {
  width: 239px;
  height: 69px;
  background: #2778D3;
  border-radius: 4px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-contact:hover {
  background: #1f65b5;
  transform: translateY(-1px);
}

.btn-demo {
  width: 239px;
  height: 69px;
  background: var(--white);
  border-radius: 4px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #0D9DDA;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-demo:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* ── TESTIMONIALS CAROUSEL ── */
.testimonials-section {
  background: #191E81;
  padding: 0 0 80px;
  position: relative;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, #7c6ef0 0%, #a78bfa 50%, #c4b5fd 100%);
  clip-path: ellipse(55% 80% at 50% 100%);
}

.carousel-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 47px;
}

.carousel-track {
  display: flex;
  gap: 66px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 595px;
  background: var(--white);
  border-radius: 40px;
  flex-shrink: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  padding: 20px 20px 16px;
}

.testimonial-img {
  width: 100%;
  height: 263px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 0;
}

.testimonial-logo {
  width: 100px;
  height: 40px;
  object-fit: contain;
  border: none;
  border-radius: 0;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #0D2E60;
}

.testimonial-role {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(22, 30, 179, 0.75);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 36px;
  padding-right: 80px;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── VIDEO TESTIMONIALS ── */
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 263px;
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  border: 3px solid rgba(255, 255, 255, 0.85);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn.hidden {
  display: none;
}

/* ── FEATURE SECTIONS ── */
.feature-section {
  background: var(--white);
  padding: 100px 40px;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-container.feature-reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-text h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 45px;
  color: #0D2E60;
}

.feature-text h2 .text-blue {
  color: #2778D3;
}

.feature-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: rgba(22, 30, 179, 0.75);
}

.feature-buttons {
  display: flex;
  gap: 34px;
}

.btn-feature-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 55px;
  background: #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-feature-primary:hover {
  background: #1f65b5;
  transform: translateY(-1px);
}

.btn-feature-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 55px;
  background: #FFFFFF;
  border: 2px solid #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #2778D3;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-feature-outline:hover {
  background: #f0f7ff;
  transform: translateY(-1px);
}

.feature-image {
  flex-shrink: 0;
}

.feature-1 .feature-image img {
  width: 541px;
  height: 338px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.feature-2 .feature-image img {
  width: 509px;
  height: 468px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.feature-3 .feature-image img {
  width: 541px;
  height: 370px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

/* ── PLATFORM CTA ── */
.platform-cta {
  background: var(--white);
  padding: 100px 40px;
}

.platform-cta-content {
  max-width: 966px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.platform-cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.platform-cta-content p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

.btn-platform-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 55px;
  background: #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-platform-cta:hover {
  background: #1f65b5;
  transform: translateY(-1px);
}

/* ── WHEEL SECTION (360 Platform) ── */
.wheel-section {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: var(--white);
}

.wheel-bg-gradient {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 655px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(62, 173, 255, 0.7) 118.26%);
  z-index: 0;
}

.wheel-bg-curve {
  position: absolute;
  bottom: -2px;
  left: -3%;
  right: -3%;
  height: 234px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.wheel-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 40px;
}

.wheel-circle {
  flex-shrink: 0;
  width: 580px;
  height: 580px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
  position: relative;
  z-index: 2;
}

.wheel-svg {
  width: 100%;
  height: 100%;
}

.wheel-steps {
  flex-shrink: 0;
  width: 415px;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}

.wheel-steps-card {
  background: linear-gradient(270deg, #C6DBF8 0%, #C6E4FB 50%, #C6DBF8 100%);
  border: 10px solid #fff;
  box-shadow: inset -5px 0px 40px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wheel-step-item p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #515151;
}

/* Bottom platform bar */
.wheel-platform-bar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -30px;
  padding: 0 40px 60px;
}

.wheel-platform-outer {
  background: linear-gradient(180deg, #6C57F2 0%, #4E88E5 50%, #447BE0 100%);
  border: 10px solid #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1), inset -5px 0px 40px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 16px 20px;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wheel-platform-outer h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #447BE0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.wheel-platform-inner {
  background: linear-gradient(180deg, #CAD1F5 0%, #DCE6F6 100%);
  border: 5px solid #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1), inset -5px 0px 40px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 14px 24px;
  width: 100%;
}

.wheel-platform-inner p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #515151;
}

.wheel-platform-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Wheel shadow ellipse — removed */

/* ── FAST SETUP CTA ── */
.fast-setup-cta {
  background: var(--white);
  padding: 100px 40px;
}

.fast-setup-content {
  max-width: 966px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.fast-setup-content h2 {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.fast-setup-content p {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

/* ── FEATURES GRID SECTION ── */
.features-grid-section {
  position: relative;
  padding: 80px 40px 260px;
  overflow: hidden;
  background: var(--white);
}

.features-grid-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 655px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(62, 173, 255, 0.7) 118.26%);
  z-index: 0;
}

.features-grid-curve {
  position: absolute;
  bottom: -2px;
  left: -3%;
  right: -3%;
  height: 234px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.features-grid {
  position: relative;
  z-index: 2;
  max-width: 1192px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 56px;
  justify-content: center;
}

.feature-card {
  position: relative;
  width: 360px;
  height: 420px;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 38px 33px 0;
  width: 295px;
}

.feature-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #161EB3;
}

.feature-card-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: rgba(22, 30, 179, 0.75);
}

.feature-card-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
}

.feature-card-deco svg {
  width: 100%;
  height: 100%;
}

.feature-card-icon {
  position: absolute;
  bottom: 74px;
  right: 42px;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.feature-card-icon svg {
  flex-shrink: 0;
}

/* ── WHO FOR SECTION ── */
.who-for-section {
  background: var(--white);
  padding: 80px 40px 100px;
}

.who-for-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.who-for-card {
  width: 539px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 64px 45px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.who-for-card h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.who-for-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.who-for-item svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.who-for-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #060E14;
  padding-top: 3px;
}

.who-for-no .who-for-item span {
  color: #161EB3;
  line-height: 30px;
}

/* ── WHY TRUST SECTION ── */
.why-trust-section {
  background: var(--white);
  padding: 100px 40px;
}

.why-trust-content {
  max-width: 966px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.why-trust-content h2 {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.why-trust-content p {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

/* ── REPORTS SECTION ── */
.reports-section {
  background: var(--white);
  padding: 80px 40px 100px;
}

.reports-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.report-featured {
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px;
}

.report-featured-image img {
  width: 552px;
  height: 372px;
  object-fit: cover;
  border-radius: 10px;
}

.report-featured-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: #EBF5FE;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #2778D3;
}

.report-featured-text h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  color: #0D2E60;
}

.report-featured-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: rgba(22, 30, 179, 0.75);
}

.report-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 2px solid #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2778D3;
  text-decoration: none;
  transition: background 0.2s;
}

.report-btn-outline:hover {
  background: #f0f7ff;
}

.report-small-row {
  display: flex;
  gap: 50px;
}

.report-small-card {
  flex: 1;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.report-small-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  color: #0D2E60;
}

.report-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  text-decoration: underline;
  color: #6C6C6C;
  transition: color 0.2s;
}

.report-link:hover {
  color: #2778D3;
}

/* ── MASTER CTA ── */
.master-cta {
  background: var(--white);
  padding: 100px 40px;
}

.master-cta-content {
  max-width: 966px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.master-cta-content h2 {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.master-cta-content p {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

.btn-master-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 55px;
  background: #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-master-cta:hover {
  background: #1f65b5;
  transform: translateY(-1px);
}

/* ── LEVELS SECTION ── */
.levels-section {
  background: var(--white);
  padding: 100px 40px;
}

.levels-container {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 83px;
  justify-content: center;
}

.level-card {
  width: 350px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.level-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 71px 74px 0;
}

.level-card-image img {
  width: 202px;
  height: 172px;
  object-fit: contain;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 23px;
  background: #EBF5FE;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: #2778D3;
  margin: 69px 0 0 26px;
}

.level-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 8px 26px 38px;
}

.level-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #0D2E60;
}

.level-card-body p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #0D2E60;
}

.level-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  text-decoration: underline;
  color: #6C6C6C;
  transition: color 0.2s;
}

.level-link:hover {
  color: #2778D3;
}

/* ── SCREENSHOTS CAROUSEL ── */
.screenshots-section {
  background: var(--white);
  padding: 100px 40px 80px;
  overflow: hidden;
}

.screenshots-header {
  max-width: 966px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.screenshots-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.screenshots-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

.screenshots-carousel-wrapper {
  max-width: 1215px;
  margin: 0 auto;
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  gap: 95px;
  transition: transform 0.5s ease;
}

.screenshot-card {
  min-width: 342px;
  width: 342px;
  height: 416px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.screenshot-card-image img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.screenshot-card-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 25px 25px 0;
}

.screenshot-card-text h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #0D2E60;
}

.screenshot-card-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #0D2E60;
}

.screenshots-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.screenshots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(22, 30, 179, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screenshots-dot.active {
  width: 10px;
  height: 10px;
  background: #161EB3;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--white);
  padding: 100px 40px;
}

.about-content {
  max-width: 1215px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.about-text {
  max-width: 966px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.about-text h2 {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #0D2E60;
}

.about-text p {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(22, 30, 179, 0.75);
}

.btn-about-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 55px;
  background: #2778D3;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-about-cta:hover {
  background: #1f65b5;
  transform: translateY(-1px);
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--white);
  padding: 100px 40px;
}

.faq-section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 53px;
  text-align: center;
  color: #0D2E60;
  margin-bottom: 50px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(217, 217, 217, 0.75);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #0D2E60;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #0D2E60;
  flex-shrink: 0;
  width: 27px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 19px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: rgba(13, 46, 96, 0.75);
  max-width: 583px;
}

/* ── FOOTER ── */
.site-footer {
  width: 100%;
}

.footer-top {
  background: #FFFFFF;
  padding: 60px 40px 50px;
}

.footer-top-inner {
  max-width: 1262px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-social-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #0D2E60;
  margin-bottom: 24px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-social-icons a {
  display: flex;
  text-decoration: none;
}

.footer-columns {
  display: flex;
  gap: 85px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #0D2E60;
  margin-bottom: 55px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(13, 46, 96, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #0D2E60;
}

.footer-bottom {
  background: #0D2F61;
  padding: 30px 40px;
}

.footer-bottom-inner {
  max-width: 1262px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-top span {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
}


/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

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

.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .mobile-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 420px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 66px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .carousel-track {
    gap: 40px;
  }

  .feature-container {
    gap: 40px;
  }

  .feature-1 .feature-image img {
    width: 420px;
    height: auto;
  }

  .feature-2 .feature-image img {
    width: 400px;
    height: auto;
  }

  .feature-3 .feature-image img {
    width: 420px;
    height: auto;
  }

  .wheel-circle {
    width: 400px;
    height: 400px;
  }

  .wheel-steps {
    width: 320px;
  }

  .wheel-steps-card {
    padding: 30px 20px;
    gap: 30px;
  }

  .wheel-step-item p {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 360px);
    gap: 40px;
  }

  .report-featured {
    gap: 30px;
    padding: 30px;
  }

  .report-featured-image img {
    width: 400px;
    height: auto;
  }

  .report-featured-text h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .report-featured-text p {
    font-size: 17px;
    line-height: 26px;
  }

  .report-small-card h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .who-for-container {
    gap: 40px;
  }

  .who-for-card {
    width: 100%;
    max-width: 480px;
    padding: 50px 35px;
  }

  .who-for-card h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .who-for-item span {
    font-size: 20px;
    line-height: 26px;
  }

  .levels-container {
    gap: 40px;
  }

  .level-card {
    width: 300px;
  }

  .level-card-image {
    padding: 50px 50px 0;
  }

  .screenshots-section {
    padding: 80px 40px 60px;
  }

  .screenshots-track {
    gap: 40px;
  }

  .screenshot-card {
    min-width: 300px;
    width: 300px;
    height: 390px;
  }

  .about-text h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .about-text p {
    font-size: 17px;
    line-height: 26px;
  }

  .footer-columns {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .nav-links,
  .nav-contact,
  .nav-icon-btn.globe,
  .btn-login {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 20px 0;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 50px;
  }

  .btn-contact, .btn-demo {
    width: 100%;
    max-width: 280px;
  }

  .testimonials-section {
    padding: 0 0 60px;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .testimonial-card {
    min-width: 300px;
    padding: 14px 14px 12px;
  }

  .testimonial-img {
    height: 200px;
    border-radius: 14px;
  }

  .carousel-controls {
    margin-top: 24px;
    justify-content: center;
    padding-right: 0;
  }

  .carousel-track {
    gap: 28px;
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-container,
  .feature-container.feature-reverse {
    flex-direction: column;
    gap: 40px;
  }

  .feature-text {
    gap: 24px;
  }

  .feature-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-1 .feature-image img,
  .feature-2 .feature-image img,
  .feature-3 .feature-image img {
    width: 100%;
    height: auto;
  }

  .feature-buttons {
    gap: 16px;
  }

  .btn-feature-primary,
  .btn-feature-outline {
    width: 160px;
    height: 48px;
    font-size: 16px;
  }

  .platform-cta {
    padding: 60px 20px;
  }

  .platform-cta-content {
    gap: 30px;
  }

  .platform-cta-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .platform-cta-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .wheel-section {
    padding: 60px 0 0;
  }

  .wheel-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .wheel-circle {
    width: 340px;
    height: 340px;
  }

  .wheel-steps {
    width: 100%;
    max-width: 415px;
    margin-left: 0;
  }

  .wheel-steps-card {
    padding: 24px 20px;
    gap: 24px;
  }

  .fast-setup-cta {
    padding: 60px 20px;
  }

  .fast-setup-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .fast-setup-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .features-grid-section {
    padding: 60px 20px 200px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 360px;
  }

  .reports-section {
    padding: 60px 20px 80px;
  }

  .report-featured {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .report-featured-image img {
    width: 100%;
    height: auto;
  }

  .report-featured-text h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .report-featured-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .report-small-row {
    flex-direction: column;
    gap: 24px;
  }

  .report-small-card {
    padding: 28px 24px;
    gap: 20px;
  }

  .report-small-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .who-for-section {
    padding: 60px 20px 80px;
  }

  .who-for-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .who-for-card {
    width: 100%;
    max-width: 500px;
    padding: 40px 28px;
    gap: 30px;
  }

  .who-for-card h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .who-for-item span {
    font-size: 18px;
    line-height: 24px;
  }

  .why-trust-section {
    padding: 60px 20px;
  }

  .why-trust-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .why-trust-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .master-cta {
    padding: 60px 20px;
  }

  .master-cta-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .master-cta-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .levels-section {
    padding: 60px 20px;
  }

  .levels-container {
    flex-direction: column;
    gap: 30px;
  }

  .level-card {
    width: 100%;
    max-width: 350px;
  }

  .level-card-image {
    padding: 40px 74px 0;
  }

  .level-badge {
    margin-top: 40px;
  }

  .wheel-platform-bar {
    padding: 0 20px 40px;
  }

  .wheel-platform-outer h3 {
    font-size: 20px;
  }

  .wheel-platform-inner p {
    font-size: 12px;
  }

  .wheel-platform-tagline {
    font-size: 16px;
  }

  .screenshots-section {
    padding: 60px 20px 50px;
  }

  .screenshots-header {
    margin-bottom: 40px;
    gap: 20px;
  }

  .screenshots-header h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .screenshots-header p {
    font-size: 16px;
    line-height: 26px;
  }

  .screenshots-track {
    gap: 24px;
  }

  .screenshot-card {
    min-width: 280px;
    width: 280px;
    height: 380px;
  }

  .screenshot-card-image img {
    height: 180px;
  }

  .screenshots-dots {
    margin-top: 30px;
    gap: 16px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-section h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 17px;
    line-height: 26px;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-top {
    padding: 40px 20px 30px;
  }

  .footer-top-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    gap: 30px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    padding: 20px;
  }

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

  .footer-bottom-top span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .testimonial-card {
    min-width: 270px;
    padding: 12px 12px 10px;
  }

  .testimonial-img {
    height: 170px;
    border-radius: 12px;
  }

  .btn-contact, .btn-demo {
    width: 100%;
    max-width: 260px;
    height: 56px;
    font-size: 16px;
  }

  .wheel-circle {
    width: 280px;
    height: 280px;
  }

  .wheel-bg-gradient {
    height: 500px;
  }
}

/* ── LOGO IMAGE ── */
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── AI AUDIO PLAYER ── */
.ai-player-section {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 18px 0 10px;
}

.ai-player-stars {
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  bottom: -10px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
  z-index: 0;
}

.ai-star {
  position: absolute;
  color: #FFD700;
  opacity: 0;
  font-size: var(--sz, 13px);
  animation: aiStarFloat var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--dly, 0s);
  user-select: none;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}

@keyframes aiStarFloat {
  0%   { opacity: 0; transform: translateY(4px) scale(0.4); }
  20%  { opacity: 1; transform: translateY(-6px) scale(1); }
  70%  { opacity: 0.7; transform: translateY(-18px) scale(0.85); }
  100% { opacity: 0; transform: translateY(-30px) scale(0.3); }
}

.ai-audio-player {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 50px rgba(108, 87, 242, 0.55), 0 0 0 1px rgba(139, 92, 246, 0.35);
  cursor: pointer;
}

.ai-player-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #3b0764 0%,
    #1e40af 25%,
    #4c1d95 50%,
    #1e3a8a 75%,
    #3b0764 100%
  );
  background-size: 300% 100%;
  animation: aiBgSlide 6s linear infinite;
}

@keyframes aiBgSlide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.ai-player-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.ai-phone-wrap {
  flex-shrink: 0;
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-phone-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  animation: aiPulseRing 2.2s ease-out infinite;
}

.ai-phone-ring:nth-child(2) {
  animation-delay: 0.7s;
  inset: -8px;
  border-color: rgba(255,255,255,0.12);
}

@keyframes aiPulseRing {
  0%   { transform: scale(1); opacity: 0.8; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.ai-phone-icon-wrap {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-player-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ai-player-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}

.ai-player-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.ai-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.ai-wave-bar {
  width: 3px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  transform-origin: bottom center;
  animation: aiWaveAnim 1.4s ease-in-out infinite;
}

.ai-wave-bar:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.ai-wave-bar:nth-child(2)  { height: 14px; animation-delay: 0.07s; }
.ai-wave-bar:nth-child(3)  { height: 20px; animation-delay: 0.14s; }
.ai-wave-bar:nth-child(4)  { height: 16px; animation-delay: 0.21s; }
.ai-wave-bar:nth-child(5)  { height: 24px; animation-delay: 0.28s; }
.ai-wave-bar:nth-child(6)  { height: 18px; animation-delay: 0.35s; }
.ai-wave-bar:nth-child(7)  { height: 12px; animation-delay: 0.42s; }
.ai-wave-bar:nth-child(8)  { height: 22px; animation-delay: 0.49s; }
.ai-wave-bar:nth-child(9)  { height: 28px; animation-delay: 0.56s; }
.ai-wave-bar:nth-child(10) { height: 18px; animation-delay: 0.63s; }
.ai-wave-bar:nth-child(11) { height: 14px; animation-delay: 0.70s; }
.ai-wave-bar:nth-child(12) { height: 20px; animation-delay: 0.77s; }
.ai-wave-bar:nth-child(13) { height: 10px; animation-delay: 0.84s; }
.ai-wave-bar:nth-child(14) { height: 16px; animation-delay: 0.91s; }
.ai-wave-bar:nth-child(15) { height: 24px; animation-delay: 0.98s; }
.ai-wave-bar:nth-child(16) { height: 20px; animation-delay: 1.05s; }
.ai-wave-bar:nth-child(17) { height: 14px; animation-delay: 1.12s; }
.ai-wave-bar:nth-child(18) { height: 8px;  animation-delay: 1.19s; }
.ai-wave-bar:nth-child(19) { height: 18px; animation-delay: 1.26s; }
.ai-wave-bar:nth-child(20) { height: 12px; animation-delay: 1.33s; }

@keyframes aiWaveAnim {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.ai-player-section:not(.ai-playing) .ai-wave-bar {
  animation-play-state: paused;
  transform: scaleY(0.3);
  opacity: 0.4;
}

.ai-play-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  padding: 0;
}

.ai-play-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: var(--white);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6C57F2, #3EADFF, #6C57F2);
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.pricing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6C57F2;
  background: rgba(108,87,242,0.08);
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  color: #0D2E60;
}

.pricing-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: rgba(22, 30, 179, 0.7);
}

/* Toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toggle-lbl {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0D2E60;
  cursor: pointer;
  transition: color 0.2s;
}

#pricingToggle {
  display: none;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.toggle-track {
  display: block;
  width: 54px;
  height: 28px;
  background: #d1d5db;
  border-radius: 100px;
  transition: background 0.3s;
  position: relative;
}

#pricingToggle:checked + .toggle-track {
  background: #6C57F2;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

#pricingToggle:checked + .toggle-track .toggle-thumb {
  transform: translateX(26px);
}

.badge-save {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6C57F2, #3EADFF);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Plan Card */
.pricing-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 28px;
  overflow: hidden;
}

.pricing-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6C57F2 0%, #1e40af 40%, #3EADFF 100%);
  z-index: 0;
}

.pricing-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pricing-card-left {
  flex: 1;
  padding: 52px 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  width: fit-content;
}

.pricing-plan-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
}

.pricing-plan-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255,255,255,0.8);
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 8px;
}

.pricing-currency {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: #fff;
}

.pricing-period {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.pricing-save-note {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 8px;
  width: fit-content;
}

.pricing-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-pricing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #fff;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #6C57F2;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.btn-pricing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-pricing-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.pricing-card-right {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding: 52px 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-features-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.pricing-features-list li svg {
  flex-shrink: 0;
}

.pricing-features-list li svg circle {
  fill: rgba(255,255,255,0.15) !important;
  opacity: 1 !important;
}

.pricing-features-list li svg polyline {
  stroke: #fff !important;
}

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing-header h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .pricing-card-inner {
    flex-direction: column;
  }

  .pricing-card-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .pricing-card-left,
  .pricing-card-right {
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-header h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .pricing-header p {
    font-size: 16px;
    line-height: 26px;
  }

  .pricing-amount {
    font-size: 52px;
  }

  .pricing-card-left,
  .pricing-card-right {
    padding: 32px 28px;
  }

  .pricing-plan-name {
    font-size: 28px;
  }

  .btn-pricing-primary,
  .btn-pricing-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }

  .ai-player-title {
    font-size: 13px;
  }

  .ai-player-subtitle {
    display: none;
  }
}

@media (max-width: 480px) {
  .ai-player-inner {
    padding: 16px 18px;
    gap: 12px;
  }

  .ai-phone-wrap {
    width: 44px;
    height: 44px;
  }

  .ai-phone-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .ai-play-btn {
    width: 44px;
    height: 44px;
  }
}

/* Animated AI feature in pricing */
.ai-animated-feature {
  background: linear-gradient(90deg, #6C57F2, #3EADFF, #2dd4a8, #6C57F2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aiFeatureShine 3s linear infinite;
  font-weight: 600;
}
@keyframes aiFeatureShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── WHATSAPP TEYİT SECTION ── */
.whatsapp-teyit-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 50%, #ede7f6 100%);
  overflow: hidden;
}

.whatsapp-teyit-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.whatsapp-teyit-text {
  flex: 1;
}

.whatsapp-teyit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #1a7e3e;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.whatsapp-teyit-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.text-green {
  color: #25D366;
}

.whatsapp-teyit-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.whatsapp-teyit-note {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  font-style: italic;
  padding: 14px 20px;
  background: rgba(255,255,255,0.7);
  border-left: 4px solid #25D366;
  border-radius: 0 8px 8px 0;
}

.whatsapp-teyit-mockup {
  flex: 0 0 320px;
}

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 2px #e0e0e0;
  overflow: hidden;
  position: relative;
}

.phone-mockup-sm {
  width: 260px;
}

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

.phone-screen {
  background: #e5ddd5;
  min-height: 380px;
}

.wa-header {
  background: #075e54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-header-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.wa-header-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.wa-header-status {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.wa-chat {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-message {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  position: relative;
}

.wa-message p {
  margin: 0;
}

.wa-incoming {
  background: #fff;
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
}

.wa-outgoing {
  background: #dcf8c6;
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
}

.wa-time {
  display: block;
  font-size: 0.65rem;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

/* ── GOOGLE REVIEW SECTION ── */
.google-review-section {
  padding: 80px 40px;
  background: var(--white);
}

.google-review-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

.google-review-phone {
  flex: 0 0 auto;
}

.google-review-profile {
  flex: 0 0 auto;
}

.google-profile-card {
  width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 28px;
  border: 1px solid #e8e8e8;
}

.google-profile-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.google-profile-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.google-profile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.google-stars {
  display: flex;
  gap: 2px;
}

.google-star {
  color: #FBBC05;
  font-size: 1.2rem;
}

.google-rating-text {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.google-profile-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.google-review-item {
  padding: 12px;
  background: var(--light-gray);
  border-radius: 10px;
}

.google-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.google-review-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.google-review-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.google-review-stars {
  color: #FBBC05;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.google-review-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
}

.google-review-bottom-text {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
}

.google-review-bottom-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.google-review-bottom-text p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ── ONLINE RANDEVU SECTION ── */
.online-randevu-section {
  padding: 80px 40px;
  background: var(--light-gray);
}

.online-randevu-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.online-randevu-visual {
  flex: 0 0 360px;
}

.online-randevu-calendar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 24px;
  border: 1px solid #e8e8e8;
}

.cal-header {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.cal-day {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-gray);
  padding: 4px;
}

.cal-date {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cal-date:hover {
  background: rgba(58, 133, 77, 0.1);
}

.cal-date.booked {
  background: rgba(108, 87, 242, 0.12);
  color: #6C57F2;
  font-weight: 600;
}

.cal-date.selected {
  background: var(--accent-green);
  color: #fff;
  font-weight: 700;
}

.cal-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cal-slot {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  background: var(--light-gray);
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cal-slot.booked {
  background: #f0f0f0;
  color: #ccc;
  text-decoration: line-through;
  cursor: default;
}

.cal-slot.selected {
  background: var(--accent-green);
  color: #fff;
  font-weight: 700;
}

.cal-book-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.online-randevu-text {
  flex: 1;
}

.online-randevu-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.online-randevu-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.online-randevu-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.online-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ── BARCODE SECTION ── */
.barcode-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  overflow: hidden;
}

.barcode-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.barcode-text {
  flex: 1;
}

.barcode-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.barcode-text .text-blue {
  color: #7c83ff;
}

.barcode-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.barcode-visual {
  flex: 0 0 380px;
  position: relative;
}

.barcode-scanner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4444, transparent);
  box-shadow: 0 0 10px #ff4444;
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 100% { top: 10%; opacity: 1; }
  50% { top: 55%; opacity: 0.8; }
}

.barcode-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 80px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.barcode-bars .bar {
  width: 4px;
  height: 60px;
  background: #fff;
  border-radius: 1px;
}

.barcode-bars .bar.thin {
  width: 2px;
  height: 50px;
}

.barcode-bars .bar.thick {
  width: 6px;
  height: 65px;
}

.scanner-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.scanner-product {
  font-weight: 600;
  font-size: 1rem;
}

.scanner-price {
  color: #7c83ff;
  font-weight: 700;
  font-size: 1.2rem;
}

.scanner-stock {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.speed-lines {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 80px;
  overflow: hidden;
}

.speed-line {
  position: absolute;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,131,255,0.6));
  animation: speedSlide 1.5s ease-in-out infinite;
}

.speed-line:nth-child(1) { top: 15%; width: 60px; animation-delay: 0s; }
.speed-line:nth-child(2) { top: 30%; width: 40px; animation-delay: 0.3s; }
.speed-line:nth-child(3) { top: 50%; width: 70px; animation-delay: 0.5s; }
.speed-line:nth-child(4) { top: 70%; width: 50px; animation-delay: 0.8s; }
.speed-line:nth-child(5) { top: 85%; width: 45px; animation-delay: 1.1s; }

@keyframes speedSlide {
  0% { transform: translateX(100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(-200%); opacity: 0; }
}

/* ── PAKET SECTION ── */
.paket-section {
  padding: 80px 40px;
  background: var(--light-gray);
}

.paket-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.paket-visual {
  flex: 0 0 380px;
}

.paket-text {
  flex: 1;
}

.paket-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.paket-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.paket-clock-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.paket-clock {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  border: 3px solid var(--bright-blue);
}

.clock-face {
  width: 100%;
  height: 100%;
  position: relative;
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: var(--text-dark);
  border-radius: 2px;
}

.clock-hour {
  width: 3px;
  height: 30px;
  margin-left: -1.5px;
  transform: rotate(60deg);
  animation: rotateHour 12s linear infinite;
}

.clock-minute {
  width: 2px;
  height: 40px;
  margin-left: -1px;
  transform: rotate(180deg);
  animation: rotateMinute 4s linear infinite;
}

.clock-center-dot {
  width: 8px;
  height: 8px;
  background: var(--bright-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotateHour {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateMinute {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.paket-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.paket-mini-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
}

.paket-mini-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.paket-mini-detail {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.paket-remaining {
  color: var(--bright-blue);
  font-weight: 600;
}

.paket-progress {
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}

.paket-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--bright-blue), #6C57F2);
  border-radius: 3px;
  transition: width 0.5s;
}

/* ── PERSONEL SECTION ── */
.personel-section {
  padding: 80px 40px;
  background: var(--white);
}

.personel-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.personel-text {
  flex: 1;
}

.personel-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.personel-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.personel-visual {
  flex: 0 0 420px;
}

.personel-dashboard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.personel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.personel-row:last-child {
  border-bottom: none;
}

.personel-row:hover {
  background: var(--light-gray);
}

.personel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), #6C57F2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.personel-info {
  flex: 1;
  min-width: 0;
}

.personel-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.personel-role {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.personel-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.personel-arrow {
  color: var(--text-gray);
}

.personel-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.personel-ontime {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.personel-late {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}

/* ── PRİM SECTION ── */
.prim-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a1a6e 0%, #2828a8 50%, #3a3ac0 100%);
  color: #fff;
  overflow: hidden;
}

.prim-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.prim-visual {
  flex: 0 0 380px;
  position: relative;
}

.prim-text {
  flex: 1;
}

.prim-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.prim-text .text-blue {
  color: #a5b4fc;
}

.prim-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.prim-chart {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
  height: 250px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.prim-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}

.prim-bar {
  width: 60px;
  background: linear-gradient(to top, #25D366, #4ade80);
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
  position: relative;
  animation: barGrow 1.5s ease-out;
}

.prim-bar-mid {
  background: linear-gradient(to top, #FBBC05, #fbbf24);
}

.prim-bar-high {
  background: linear-gradient(to top, #6C57F2, #a78bfa);
}

@keyframes barGrow {
  from { height: 0 !important; }
}

.prim-bar-label {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.prim-tl-sign {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 4px;
}

.prim-bar-bottom {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.prim-floating-tl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.prim-floating-tl span {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.1);
  animation: floatTL 3s ease-in-out infinite;
}

.prim-floating-tl span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.prim-floating-tl span:nth-child(2) { top: 25%; right: 5%; animation-delay: 0.6s; }
.prim-floating-tl span:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 1.2s; }
.prim-floating-tl span:nth-child(4) { bottom: 15%; right: 15%; animation-delay: 0.3s; }
.prim-floating-tl span:nth-child(5) { top: 50%; left: 50%; animation-delay: 0.9s; }

@keyframes floatTL {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
  50% { transform: translateY(-20px) scale(1.3); opacity: 0.25; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.wa-float-bubble {
  display: none;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: bubbleIn 0.3s ease-out;
}

.wa-float-bubble.active {
  display: block;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-bubble-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  z-index: 2;
}

.wa-bubble-header {
  background: #075e54;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.wa-bubble-body {
  padding: 16px;
}

.wa-bubble-body p {
  background: #e5ddd5;
  padding: 10px 14px;
  border-radius: 0 10px 10px 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.wa-bubble-send {
  display: block;
  text-align: center;
  padding: 12px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.wa-bubble-send:hover {
  background: #1ea952;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .whatsapp-teyit-container,
  .google-review-container,
  .online-randevu-container,
  .barcode-container,
  .paket-container,
  .personel-container,
  .prim-container {
    flex-direction: column;
    gap: 40px;
  }

  .whatsapp-teyit-mockup,
  .online-randevu-visual,
  .barcode-visual,
  .paket-visual,
  .personel-visual,
  .prim-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .google-review-container {
    flex-direction: column;
  }

  .google-profile-card {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .whatsapp-teyit-section,
  .google-review-section,
  .online-randevu-section,
  .barcode-section,
  .paket-section,
  .personel-section,
  .prim-section {
    padding: 60px 20px;
  }

  .whatsapp-teyit-text h2,
  .online-randevu-text h2,
  .barcode-text h2,
  .paket-text h2,
  .personel-text h2,
  .prim-text h2 {
    font-size: 1.6rem;
  }

  .phone-mockup {
    width: 260px;
  }

  .phone-mockup-sm {
    width: 240px;
  }

  .personel-visual {
    max-width: 100%;
  }

  .personel-hours {
    display: none;
  }

  .wa-float-bubble {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .whatsapp-teyit-text h2,
  .online-randevu-text h2,
  .barcode-text h2,
  .paket-text h2,
  .personel-text h2,
  .prim-text h2 {
    font-size: 1.35rem;
  }

  .phone-mockup,
  .phone-mockup-sm {
    width: 240px;
  }

  .prim-bar {
    width: 45px;
  }

  .barcode-visual {
    max-width: 300px;
  }

  .wa-float-wrap {
    bottom: 16px;
    right: 16px;
  }

  .wa-float-bubble {
    width: 260px;
  }
}
