/* =============================================================================
   OKIDOKY LANDING PAGE - V2 REDESIGN
   Modern, colorful, Okidoky-branded landing page
   ============================================================================= */

/* =============================================================================
   RESET & BASE
   ============================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Okidoky Brand Colors */
  --ok-primary: #00B2B8;
  --ok-primary-dark: #009199;
  --ok-primary-light: #1ee3cf;
  --ok-gradient: linear-gradient(135deg, #00B2B8 0%, #1ee3cf 100%);

  --ok-success: #10b981;
  --ok-success-light: #d1fae5;
  --ok-warning: #FFC205;
  --ok-warning-light: #fef3c7;
  --ok-danger: #F75263;
  --ok-danger-light: #fee2e2;

  /* Neutrals */
  --ok-white: #ffffff;
  --ok-bg: #F8FAFC;
  --ok-surface: #FFFFFF;
  --ok-text: #111827;
  --ok-text-muted: #6B7280;
  --ok-border: #E5E7EB;

  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --grey-900: #111827;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 9999px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ok-text);
  background: var(--ok-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ok-text);
  margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--ok-text-muted);
}

a {
  color: var(--ok-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* =============================================================================
   HEADER
   ============================================================================= */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ok-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.landing-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--ok-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ok-primary);
  background: rgba(0, 178, 184, 0.08);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  margin-left: 1rem;
}

.nav-actions .btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-actions .btn-outline {
  background: transparent;
  color: var(--ok-primary);
  border: 2px solid var(--ok-primary);
}

.nav-actions .btn-outline:hover {
  background: var(--ok-primary);
  color: white;
}

.nav-actions .btn-primary {
  background: var(--ok-gradient);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 178, 184, 0.3);
}

.nav-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 178, 184, 0.4);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ok-text);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================================================
   HERO BUTTONS
   ============================================================================= */
.btn-hero {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.btn-ok-primary {
  background: var(--ok-gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 178, 184, 0.35);
}

.btn-ok-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 178, 184, 0.45);
  color: white;
}

.btn-ok-outline {
  background: white;
  color: var(--ok-primary);
  border: 2px solid var(--ok-primary);
}

.btn-ok-outline:hover {
  background: var(--ok-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 178, 184, 0.3);
}

.btn-cta {
  background: white;
  color: var(--ok-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: var(--ok-primary);
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-3px);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(160deg, #e0f7fa 0%, #f0fdfa 40%, #fef3c7 75%, #fee2e2 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ok-primary), transparent 70%);
  top: -20%;
  right: -10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--ok-warning), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--ok-danger), transparent 70%);
  top: 30%;
  right: 20%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 178, 184, 0.24);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ok-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--ok-text);
}

.gradient-text {
  background: var(--ok-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--grey-600);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.trust-badge--teal {
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary-dark);
  border: 1px solid rgba(0, 178, 184, 0.2);
}

.trust-badge--green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.trust-badge--yellow {
  background: rgba(255, 194, 5, 0.1);
  color: #b45309;
  border: 1px solid rgba(255, 194, 5, 0.25);
}

.trust-badge i {
  font-size: 0.9rem;
}

/* =============================================================================
   LAPTOP MOCKUP (Hero)
   ============================================================================= */
.hero-visual {
  position: relative;
}

.laptop-mockup {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.laptop-screen {
  background: #1e293b;
  border-radius: 12px 12px 0 0;
  padding: 8px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 2px solid #334155;
}

.laptop-screen img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.laptop-base {
  background: linear-gradient(180deg, #d1d5db, #e5e7eb);
  height: 16px;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #c0c4c8;
  border-radius: 0 0 6px 6px;
}

/* =============================================================================
   LIVE STATS BAR
   ============================================================================= */
.live-stats {
  background: var(--ok-gradient);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.live-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.live-stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.live-stat:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.live-stat__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.live-stat__icon--teal { background: rgba(0, 178, 184, 0.3); }
.live-stat__icon--green { background: rgba(16, 185, 129, 0.3); }
.live-stat__icon--yellow { background: rgba(255, 194, 5, 0.3); }
.live-stat__icon--red { background: rgba(247, 82, 99, 0.3); }

.live-stat__number {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.live-stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* =============================================================================
   SECTIONS - Generic
   ============================================================================= */
.section {
  padding: 6rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(0, 178, 184, 0.08);
  color: var(--ok-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--ok-text);
}

.section-description {
  font-size: 1.15rem;
  color: var(--ok-text-muted);
  line-height: 1.8;
}

/* =============================================================================
   FEATURE CARDS V2 - Colorful with Okidoky accents
   ============================================================================= */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
}

.feature-card-v2 {
  background: white;
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}

.feature-card-v2--teal::before { background: var(--ok-gradient); }
.feature-card-v2--green::before { background: linear-gradient(135deg, #10b981, #34d399); }
.feature-card-v2--yellow::before { background: linear-gradient(135deg, #FFC205, #fbbf24); }
.feature-card-v2--red::before { background: linear-gradient(135deg, #F75263, #ff6b7a); }

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card-v2:hover::before {
  height: 6px;
}

.feature-card-v2__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary);
}

.feature-card-v2__icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--ok-success);
}

.feature-card-v2__icon--yellow {
  background: rgba(255, 194, 5, 0.1);
  color: #d97706;
}

.feature-card-v2__icon--red {
  background: rgba(247, 82, 99, 0.1);
  color: var(--ok-danger);
}

.feature-card-v2 h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card-v2 p {
  font-size: 0.925rem;
  color: var(--ok-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.feature-card-v2__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card-v2__tag--teal {
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary);
}

.feature-card-v2__tag--green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.feature-card-v2__tag--yellow {
  background: rgba(255, 194, 5, 0.12);
  color: #b45309;
}

.feature-card-v2__tag--red {
  background: rgba(247, 82, 99, 0.1);
  color: #dc2626;
}

/* =============================================================================
   HOW IT WORKS - Steps
   ============================================================================= */
.how-it-works {
  background: var(--grey-50);
  max-width: 100%;
  padding: 6rem 0;
}

.how-it-works .section-header {
  max-width: 700px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  max-width: 320px;
  position: relative;
  border: 1px solid var(--ok-border);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: white;
}

.step-number--teal { background: var(--ok-gradient); }
.step-number--yellow { background: linear-gradient(135deg, #FFC205, #fbbf24); color: #78350f; }
.step-number--green { background: linear-gradient(135deg, #10b981, #34d399); }

.step-icon {
  font-size: 2.5rem;
  color: var(--ok-primary);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  margin: 0;
}

.step-connector {
  color: var(--ok-primary);
  font-size: 1.5rem;
  opacity: 0.4;
  flex-shrink: 0;
}

/* =============================================================================
   DEMO SECTION - Video in Laptop
   ============================================================================= */
.demo-section {
  background: white;
  max-width: 100%;
  padding: 6rem 0;
}

.demo-section .section-header {
  max-width: 700px;
}

.demo-laptop {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.demo-laptop__frame {
  background: #1e293b;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 2px solid #334155;
}

.demo-laptop__toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #0f172a;
  border-bottom: 1px solid #334155;
}

.demo-laptop__dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot--red { background: #ef4444; }
.dot--yellow { background: #fbbf24; }
.dot--green { background: #22c55e; }

.demo-laptop__url {
  flex: 1;
  background: #1e293b;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-laptop__url i {
  color: #22c55e;
  font-size: 0.7rem;
}

.demo-laptop__screen {
  position: relative;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
}

.demo-laptop__screen video,
.demo-laptop__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 178, 184, 0.9);
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 178, 184, 0.4);
  backdrop-filter: blur(4px);
}

.demo-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 178, 184, 1);
}

.demo-play-btn.playing {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
  opacity: 0.7;
}

.demo-play-btn.playing:hover {
  opacity: 1;
}

.demo-laptop__base {
  background: linear-gradient(180deg, #d1d5db, #e5e7eb);
  height: 20px;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.demo-laptop__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 6px;
  background: #c0c4c8;
  border-radius: 0 0 8px 8px;
}

/* Demo Features Row */
.demo-features-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ok-text-muted);
}

.demo-feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-feature__dot--teal { background: var(--ok-primary); }
.demo-feature__dot--green { background: var(--ok-success); }
.demo-feature__dot--yellow { background: var(--ok-warning); }
.demo-feature__dot--red { background: var(--ok-danger); }

/* =============================================================================
   PRICING
   ============================================================================= */
.pricing {
  background: var(--grey-50);
  max-width: 100%;
  padding: 6rem 0;
}

.pricing .section-header {
  max-width: 700px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--ok-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--ok-success);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.pricing-card__ribbon--teal { background: var(--ok-gradient); }
.pricing-card__ribbon--green { background: linear-gradient(135deg, #10b981, #34d399); }
.pricing-card__ribbon--yellow { background: linear-gradient(135deg, #FFC205, #fbbf24); color: #78350f; }

.pricing-name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ok-text);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ok-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price__decimal {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--ok-text-muted);
  font-size: 0.925rem;
}

.pricing-features li i {
  color: var(--ok-success);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features__muted {
  opacity: 0.7;
}

.pricing-features__muted i {
  color: var(--grey-400) !important;
}

/* Pricing Buttons */
.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-pricing--teal {
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary);
  border-color: var(--ok-primary);
}

.btn-pricing--teal:hover {
  background: var(--ok-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 178, 184, 0.3);
}

.btn-pricing--green {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-pricing--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  color: white;
}

.btn-pricing--yellow {
  background: rgba(255, 194, 5, 0.12);
  color: #b45309;
  border-color: var(--ok-warning);
}

.btn-pricing--yellow:hover {
  background: linear-gradient(135deg, #FFC205, #fbbf24);
  color: #78350f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 194, 5, 0.3);
}

/* =============================================================================
   TESTIMONIALS SLIDER
   ============================================================================= */
.testimonials-section {
  background: white;
  max-width: 100%;
  padding: 6rem 0;
}

.testimonials-section .section-header {
  max-width: 700px;
}

.testimonials-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.75rem;
}

.testimonial-card-v2 {
  background: var(--grey-50);
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card-v2:hover {
  border-color: var(--ok-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--ok-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-v2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar-v2 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-v2 h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  color: var(--ok-text);
}

.testimonial-author-v2 p {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin: 0;
}

/* Slider Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ok-border);
  background: white;
  color: var(--ok-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  border-color: var(--ok-primary);
  color: var(--ok-primary);
  background: rgba(0, 178, 184, 0.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--ok-primary);
  transform: scale(1.3);
}

.slider-dot:hover {
  background: var(--ok-primary);
  opacity: 0.7;
}

/* =============================================================================
   PWA SECTION
   ============================================================================= */
.pwa-section {
  max-width: 100%;
  padding: 6rem 0;
  background: linear-gradient(160deg, #f0fdfa 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.pwa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pwa-content .section-title {
  font-size: 2.5rem;
}

.pwa-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pwa-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pwa-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pwa-feature__icon--teal {
  background: rgba(0, 178, 184, 0.12);
  color: var(--ok-primary);
}

.pwa-feature__icon--green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.pwa-feature__icon--yellow {
  background: rgba(255, 194, 5, 0.12);
  color: #b45309;
}

.pwa-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pwa-feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* Phone Mockup */
.phone-mockup {
  max-width: 280px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-2xl);
  border: 3px solid #334155;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta {
  background: var(--ok-gradient);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: -50%;
  left: -10%;
}

.cta-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  bottom: -40%;
  right: -5%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 4rem 0 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--grey-400);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-800);
  border-radius: var(--radius-md);
  color: var(--grey-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--ok-primary);
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--grey-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ok-primary);
}

.footer-bottom {
  border-top: 1px solid var(--grey-800);
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey-400);
}

/* =============================================================================
   UTILITIES
   ============================================================================= */
.text-center { text-align: center; }
.text-muted { color: var(--grey-400); }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .features-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .steps-row {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .pwa-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pwa-content .section-title,
  .pwa-content .section-description,
  .pwa-content .section-badge {
    text-align: center !important;
  }

  .pwa-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav-actions {
    margin-left: 0;
    flex-direction: column;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    justify-content: center;
    width: 100%;
  }

  .features-grid-v2 {
    grid-template-columns: 1fr;
  }

  .live-stats-grid {
    grid-template-columns: 1fr;
  }

  .live-stat {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2.25rem;
  }

  .cta p {
    font-size: 1.05rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .demo-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }

  .section {
    padding: 4rem 0;
  }

  .how-it-works,
  .pricing,
  .testimonials-section,
  .demo-section,
  .pwa-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-trust-badges {
    flex-direction: column;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 36px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* =============================================================================
   REGISTRATION PAGE
   ============================================================================= */
.register-page {
  background: var(--ok-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.register-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 2rem;
  position: relative;
  overflow: hidden;
  background: white;
}

.register-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.register-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.register-hero__blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 178, 184, 0.15);
  top: -15%;
  left: -10%;
}

.register-hero__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 194, 5, 0.12);
  bottom: -10%;
  right: -5%;
}

.register-hero__blob--3 {
  width: 300px;
  height: 300px;
  background: rgba(247, 82, 99, 0.1);
  top: 50%;
  left: 40%;
}

.register-layout {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Benefits (left side) */
.register-benefits {
  padding: 1rem 0;
}

.register-benefits__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 178, 184, 0.08);
  color: var(--ok-primary);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 178, 184, 0.12);
}

.register-benefits__badge i {
  font-size: 0.85rem;
}

.register-benefits__title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: var(--ok-text);
}

.register-benefits__title--teal {
  color: var(--ok-primary);
}

.register-benefits__title--yellow {
  color: var(--ok-warning);
}

.register-benefits__title--red {
  color: var(--ok-danger);
}

.register-benefits__subtitle {
  font-size: 1.05rem;
  color: var(--grey-500);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 400px;
}

.register-benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.register-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.register-benefit i {
  font-size: 0.9rem;
}

.register-benefit span {
  white-space: nowrap;
}

.register-benefit--teal {
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary-dark);
  border: 1px solid rgba(0, 178, 184, 0.15);
}

.register-benefit--green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.register-benefit--yellow {
  background: rgba(255, 194, 5, 0.1);
  color: #b45309;
  border: 1px solid rgba(255, 194, 5, 0.18);
}

.register-benefit--red {
  background: rgba(247, 82, 99, 0.08);
  color: #dc2626;
  border: 1px solid rgba(247, 82, 99, 0.15);
}

/* Social proof */
.register-benefits__social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.register-benefits__avatars {
  display: flex;
}

.register-benefits__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 2px solid white;
  margin-left: -8px;
}

.register-benefits__avatar:first-child {
  margin-left: 0;
}

.register-benefits__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.15rem;
}

.register-benefits__stars i {
  color: var(--ok-warning);
  font-size: 0.65rem;
}

.register-benefits__social-text span {
  font-size: 0.78rem;
  color: var(--grey-500);
}

.register-benefits__social-text strong {
  color: var(--ok-text);
}

/* Registration card */
.register-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  border: 1px solid var(--ok-border);
}

.register-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-card__header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.register-card__header p {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin: 0;
}

.register-card__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ok-border);
  font-size: 0.9rem;
  color: var(--grey-500);
}

.register-card__footer a {
  color: var(--ok-primary);
  font-weight: 600;
}

.register-card__footer a:hover {
  text-decoration: underline;
}

/* Plan banner */
.register-plan-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--grey-50);
  border: 1px solid var(--ok-border);
  border-left: 3px solid var(--ok-primary);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--ok-text);
  margin-bottom: 1.5rem;
}

.register-plan-banner i {
  font-size: 1rem;
  color: var(--ok-primary);
}

.register-plan-banner__change {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--ok-primary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.register-plan-banner__change:hover {
  background: rgba(0, 178, 184, 0.08);
  text-decoration: underline;
}

/* Step indicators */
.register-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.register-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.register-step.active {
  opacity: 1;
}

.register-step.completed {
  opacity: 0.7;
}

.register-step__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--ok-border);
  color: var(--grey-500);
  transition: all 0.3s ease;
}

.register-step.active .register-step__dot {
  background: var(--ok-gradient);
  color: white;
}

.register-step.completed .register-step__dot {
  background: var(--ok-success);
  color: white;
}

.register-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-500);
}

.register-step.active span {
  color: var(--ok-primary);
}

.register-step__line {
  width: 40px;
  height: 2px;
  background: var(--ok-border);
  margin: 0 0.5rem;
  transition: background 0.3s ease;
}

.register-step__line.completed {
  background: var(--ok-success);
}

/* Form step */
.register-form-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--ok-text);
}

/* Plan selector */
.plan-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.plan-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--ok-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-option input[type="radio"] {
  display: none;
}

.plan-option:hover {
  border-color: var(--grey-300);
  box-shadow: var(--shadow-sm);
}

.plan-option--selected {
  box-shadow: var(--shadow-md);
}

.plan-option--teal.plan-option--selected {
  border-color: var(--ok-primary);
  background: rgba(0, 178, 184, 0.03);
}

.plan-option--green.plan-option--selected {
  border-color: var(--ok-success);
  background: rgba(16, 185, 129, 0.03);
}

.plan-option--yellow.plan-option--selected {
  border-color: var(--ok-warning);
  background: rgba(255, 194, 5, 0.03);
}

.plan-option__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 200px;
}

.plan-option__badge {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-option__badge--teal {
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary);
}

.plan-option__badge--green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.plan-option__badge--yellow {
  background: rgba(255, 194, 5, 0.12);
  color: #b45309;
}

.plan-option__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ok-text);
  line-height: 1;
}

.plan-option__price small {
  font-size: 1rem;
}

.plan-option__period {
  font-size: 0.8rem;
  color: var(--grey-500);
}

.plan-option__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  width: 100%;
}

.plan-option__features li {
  font-size: 0.8rem;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.plan-option__features li i {
  color: var(--ok-success);
  font-size: 0.75rem;
}

.plan-option__muted {
  opacity: 0.6;
}

.plan-option__muted i {
  color: var(--grey-400) !important;
}

.plan-option__check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  color: var(--ok-border);
  transition: all 0.3s ease;
}

.plan-option--selected .plan-option__check {
  color: var(--ok-primary);
}

.plan-option--green.plan-option--selected .plan-option__check {
  color: var(--ok-success);
}

.plan-option--yellow.plan-option--selected .plan-option__check {
  color: var(--ok-warning);
}

.plan-option__ribbon {
  position: absolute;
  top: 0;
  right: 2.5rem;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-option__ribbon--yellow {
  background: linear-gradient(135deg, #FFC205, #fbbf24);
  color: #78350f;
}

.plan-payment-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 178, 184, 0.06);
  border: 1px solid rgba(0, 178, 184, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--ok-primary);
  margin-bottom: 1.25rem;
}

/* Form elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ok-text);
  margin-bottom: 0.4rem;
}

.form-group label i {
  color: var(--ok-primary);
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ok-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ok-text);
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus {
  border-color: var(--ok-primary);
  box-shadow: 0 0 0 3px rgba(0, 178, 184, 0.1);
}

.form-group input::placeholder {
  color: var(--grey-400);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.8rem;
  color: var(--ok-danger);
  margin-top: 0.3rem;
  display: none;
}

.input-with-toggle {
  position: relative;
}

.input-with-toggle input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 2px solid var(--ok-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ok-text);
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.input-with-toggle input:focus {
  border-color: var(--ok-primary);
  box-shadow: 0 0 0 3px rgba(0, 178, 184, 0.1);
}

.input-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-400);
  font-size: 1.1rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.input-toggle-btn:hover {
  color: var(--ok-primary);
}

/* Password strength */
.password-strength {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.password-strength__bar {
  flex: 1;
  height: 4px;
  background: var(--ok-border);
  border-radius: 4px;
  overflow: hidden;
}

.password-strength__fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.password-strength__text {
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 60px;
  text-align: right;
}

/* Captcha */
.captcha-box {
  background: var(--grey-50);
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.captcha-box__icon {
  font-size: 1.5rem;
  color: var(--ok-primary);
  margin-bottom: 0.5rem;
}

.captcha-box__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ok-text);
  margin-bottom: 0.75rem;
}

.captcha-box__options {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.captcha-opt-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--ok-border);
  border-radius: var(--radius-md);
  background: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--ok-text);
  transition: all 0.2s ease;
}

.captcha-opt-btn:hover {
  border-color: var(--ok-primary);
  background: rgba(0, 178, 184, 0.04);
}

.captcha-opt-btn.selected {
  border-color: var(--ok-primary);
  background: rgba(0, 178, 184, 0.1);
  color: var(--ok-primary);
}

/* reCAPTCHA */
.recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: center;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ok-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--ok-primary);
  font-weight: 600;
}

/* Summary */
.register-summary {
  background: var(--grey-50);
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.register-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}

.register-summary__row span {
  color: var(--grey-500);
}

.register-summary__row strong {
  color: var(--ok-text);
  font-weight: 600;
}

/* Buttons */
.register-form-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-register {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  text-decoration: none;
}

.btn-register--primary {
  background: var(--ok-gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 178, 184, 0.3);
  width: 100%;
}

.btn-register--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 178, 184, 0.4);
}

.btn-register--outline {
  background: white;
  color: var(--grey-600);
  border: 2px solid var(--ok-border);
}

.btn-register--outline:hover {
  border-color: var(--ok-primary);
  color: var(--ok-primary);
}

.btn-register--submit {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  flex: 2;
}

.btn-register--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-register:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Server error */
.register-server-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(247, 82, 99, 0.06);
  border: 1px solid rgba(247, 82, 99, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--ok-danger);
  margin-top: 1rem;
}

/* Footer */
.register-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--grey-400);
  background: var(--ok-bg);
}

/* Registration responsive */
@media (max-width: 900px) {
  .register-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 520px;
  }

  .register-benefits {
    text-align: center;
    padding: 0;
  }

  .register-benefits__title {
    font-size: 2rem;
  }

  .register-benefits__subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .register-benefits__list {
    justify-content: center;
  }

  .register-benefits__social-proof {
    justify-content: center;
  }

  .register-hero {
    padding: 90px 1rem 2rem;
  }

  .register-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .register-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }

  .register-benefits__title {
    font-size: 1.75rem;
  }

  .register-benefits__list {
    gap: 0.4rem;
  }

  .register-benefit {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .register-benefits__social-proof {
    flex-direction: column;
    gap: 0.5rem;
  }

  .plan-option__header {
    min-width: auto;
  }

  .plan-option__features {
    flex-direction: column;
    gap: 0.15rem;
  }

  .register-step span {
    display: none;
  }

  .register-steps {
    gap: 0;
  }

  .register-step__line {
    width: 30px;
  }

  .g-recaptcha {
    transform: scale(0.77);
  }
}

/* ==========================================================================
   Auth Pages (login, register, forgot-password, reset, verification, etc.)
   Scoped via body.auth-page
   ========================================================================== */

body.auth-page {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #00B2B8 0%, #008A8F 100%);
  color: #1a1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  min-height: 100vh;
  margin: 0;
  animation: authGradientShift 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes authGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Decorative Background Circles */
.auth-page .auth-bg-decoration {
  position: fixed;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.auth-page .auth-bg-decoration-1 {
  width: 400px; height: 400px; background: white;
  top: -100px; right: -100px;
  animation: authFloat 20s ease-in-out infinite;
}

.auth-page .auth-bg-decoration-2 {
  width: 300px; height: 300px; background: white;
  bottom: -80px; left: -80px;
  animation: authFloat 25s ease-in-out infinite reverse;
}

.auth-page .auth-bg-decoration-3 {
  width: 200px; height: 200px; background: white;
  top: 50%; left: 10%;
  animation: authFloat 30s ease-in-out infinite;
}

@keyframes authFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Page Container */
.auth-page .auth-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  animation: authSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes authSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
.auth-page .auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-page .auth-header img {
  width: 250px;
}

.auth-page .auth-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Card */
.auth-page .auth-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-page .auth-card--centered {
  text-align: center;
}

/* Card Icon */
.auth-page .auth-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 178, 184, 0.1) 0%, rgba(0, 138, 143, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.auth-page .auth-card-icon i {
  font-size: 1.75rem;
  color: #00B2B8;
}

.auth-page .auth-card-icon--round {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.auth-page .auth-card-icon--round i {
  font-size: 2.25rem;
}

.auth-page .auth-card-icon--success {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.auth-page .auth-card-icon--success i {
  color: #059669;
}

.auth-page .auth-card-icon--warning {
  background: linear-gradient(135deg, rgba(255, 194, 5, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.auth-page .auth-card-icon--warning i {
  color: #F59E0B;
}

/* Card Title & Description */
.auth-page .auth-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1d1f;
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-page .auth-card-description {
  font-size: 0.9375rem;
  color: #6f767e;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Form Elements */
.auth-page .auth-form-group {
  margin-bottom: 1.25rem;
}

.auth-page .auth-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1d1f;
  margin-bottom: 0.5rem;
}

.auth-page .auth-form-input-wrapper {
  position: relative;
}

.auth-page .auth-form-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 1.125rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.auth-page .auth-form-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  font-size: 0.9375rem;
  color: #1a1d1f;
  background: #f5f7fa;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.auth-page .auth-form-input::placeholder {
  color: #9CA3AF;
}

.auth-page .auth-form-input:focus {
  outline: none;
  border-color: #00B2B8;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 178, 184, 0.1);
}

.auth-page .auth-form-input:focus ~ .auth-form-input-icon {
  color: #00B2B8;
}

/* Password Toggle */
.auth-page .auth-password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.auth-page .auth-password-toggle:hover {
  color: #00B2B8;
}

/* Buttons */
.auth-page .auth-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #00B2B8 0%, #008A8F 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 178, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.auth-page .auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 178, 184, 0.4);
  color: white;
}

.auth-page .auth-btn:active {
  transform: translateY(0);
}

.auth-page .auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-page .auth-btn--inline {
  width: auto;
  display: inline-flex;
  padding: 1rem 2rem;
}

.auth-page .auth-btn--secondary {
  background: white;
  color: #00B2B8;
  border: 2px solid #00B2B8;
  box-shadow: none;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
}

.auth-page .auth-btn--secondary:hover {
  background: rgba(0, 178, 184, 0.05);
  transform: translateY(-1px);
  color: #00B2B8;
  box-shadow: none;
}

.auth-page .auth-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Divider */
.auth-page .auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.auth-page .auth-divider::before,
.auth-page .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e8ecef;
}

.auth-page .auth-divider span {
  padding: 0 1rem;
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Links */
.auth-page .auth-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.auth-page .auth-link {
  font-size: 0.9375rem;
  color: #6f767e;
}

.auth-page .auth-link a {
  color: #00B2B8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth-page .auth-link a:hover {
  color: #008A8F;
  text-decoration: underline;
}

/* Footer */
.auth-page .auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.auth-page .auth-footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.auth-page .auth-footer a:hover {
  text-decoration: underline;
}

/* Messages */
.auth-page .auth-success-message,
.auth-page .auth-error-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.auth-page .auth-success-message {
  background: #F0FDF4;
  border: 1px solid #D1FAE5;
  color: #059669;
}

.auth-page .auth-error-message {
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
  color: #DC2626;
}

.auth-page .auth-success-message.show,
.auth-page .auth-error-message.show {
  display: flex;
}

.auth-page .auth-success-message i,
.auth-page .auth-error-message i {
  font-size: 1.125rem;
}

/* Error Banner (always visible) */
.auth-page .auth-error-banner {
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
  color: #DC2626;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-page .auth-error-banner i {
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Info Box */
.auth-page .auth-info-box {
  background: linear-gradient(135deg, rgba(0, 178, 184, 0.08) 0%, rgba(0, 138, 143, 0.08) 100%);
  border: 1px solid rgba(0, 178, 184, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.auth-page .auth-info-box i {
  color: #00B2B8;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auth-page .auth-info-box span {
  font-size: 0.875rem;
  color: #6f767e;
  line-height: 1.5;
}

/* Warning Box */
.auth-page .auth-warning-box {
  background: linear-gradient(135deg, rgba(255, 194, 5, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.auth-page .auth-warning-box i {
  color: #F59E0B;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auth-page .auth-warning-box span {
  font-size: 0.875rem;
  color: #6f767e;
  line-height: 1.5;
}

/* Help Text */
.auth-page .auth-help-text {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: #9CA3AF;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 575px) {
  .auth-page .auth-card {
    padding: 2rem 1.5rem;
  }

  .auth-page .auth-card-title {
    font-size: 1.25rem;
  }

  .auth-page .auth-bg-decoration-1,
  .auth-page .auth-bg-decoration-2,
  .auth-page .auth-bg-decoration-3 {
    display: none;
  }
}

@media (max-width: 375px) {
  .auth-page .auth-card {
    padding: 1.5rem 1rem;
  }

  .auth-page .auth-form-input {
    font-size: 16px;
  }
}
