/* ============================================
   EZYVYAPAR — Global Styles
   Brand Color: #0B6E77 (Teal)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  --primary: #0B6E77;
  --primary-dark: #095A62;
  --primary-light: #0D8A95;
  --primary-50: #E6F5F7;
  --primary-100: #B3E0E5;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --dark: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --white: #FFFFFF;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --gradient-primary: linear-gradient(135deg, #0B6E77 0%, #07585F 50%, #053539 100%);
  --gradient-dark: linear-gradient(135deg, #053539 0%, #032224 100%);
  --gradient-hero: linear-gradient(160deg, #0B6E77 0%, #074E55 40%, #053539 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(11, 110, 119, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 110, 119, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 110, 119, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-700);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: white;
}

.navbar-brand .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-brand .brand-logo-full {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-brand .brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.navbar-brand .brand-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 8px;
}

.mobile-menu-btn svg { width: 28px; height: 28px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 2rem;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 110, 119, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}
.hero-stat .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Hero Visual / Mockup */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #10B981; }

.mockup-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 12px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s;
}
.mockup-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.mockup-card .mc-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.mockup-card .mc-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.mockup-card .mc-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.floating-tag.tag-1 { top: -10px; right: -30px; animation-delay: 0s; }
.floating-tag.tag-2 { bottom: 40px; left: -40px; animation-delay: 2s; }

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

.floating-tag .ft-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.floating-tag .ft-text {
  font-size: 0.8rem; font-weight: 600; color: var(--dark);
}
.floating-tag .ft-sub {
  font-size: 0.7rem; color: var(--gray-500);
}

/* ============ FEATURES SECTION ============ */
.section {
  padding: 64px 0;
}

.section-dark { background: var(--gray-50); }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 1.85rem;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.section-header p {
  font-size: 0.98rem;
  color: var(--gray-500);
  line-height: 1.55;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.feature-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.features-grid { gap: 16px; }

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============ PRICING SECTION ============ */
.pricing-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin: 0 auto 36px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.pricing-tabs { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-500);
  transition: all 0.25s ease;
}
.pricing-tab:hover { color: var(--dark); }
.pricing-tab.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pricing-tab .tab-icon {
  font-size: 1.15rem;
  line-height: 1;
}
.pricing-tab .tab-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.15;
}
.pricing-tab .tab-title {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.2px;
}
.pricing-tab .tab-sub {
  font-size: 0.68rem;
  color: var(--gray-400);
  font-weight: 500;
}
.pricing-tab.active .tab-sub { color: var(--primary); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: panelFade 0.35s ease; }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.save-tag.tag-muted {
  background: var(--gray-100);
  color: var(--gray-500);
}

.soon-tag {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 7px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--primary);
  background: var(--primary-50);
  border-radius: var(--radius-full);
  vertical-align: middle;
}

@media (max-width: 640px) {
  .pricing-tabs { width: 100%; flex-direction: column; border-radius: var(--radius-lg); }
  .pricing-tab { justify-content: flex-start; border-radius: var(--radius-md); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pricing-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(11,110,119,0.15);
  transform: none;
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
}

/* ── Plan Header (colored top section) ── */
.plan-header {
  padding: 16px 16px 12px;
}
.plan-header.header-gray {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.plan-header.header-white {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.plan-header.header-teal {
  background: linear-gradient(135deg, #0B6E77, #0FA3A5);
}
.plan-header.header-teal .plan-name,
.plan-header.header-teal .plan-price .currency,
.plan-header.header-teal .plan-price .amount,
.plan-header.header-teal .plan-price .period,
.plan-header.header-teal .plan-tagline {
  color: #fff;
}
.plan-header.header-orange {
  background: linear-gradient(135deg, #EA580C, #F59E0B);
}
.plan-header.header-orange .plan-name,
.plan-header.header-orange .plan-price .currency,
.plan-header.header-orange .plan-price .amount,
.plan-header.header-orange .plan-price .period,
.plan-header.header-orange .plan-tagline {
  color: #fff;
}

.plan-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pricing-card .plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.plan-tagline {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.plan-header.header-teal .plan-tagline,
.plan-header.header-orange .plan-tagline {
  opacity: 0.85;
}

/* ── Plan Badge ── */
.plan-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.badge-current {
  background: #10B981;
  color: #fff;
}
.badge-value {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.badge-team {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ── Plan Price ── */
.pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 0;
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.plan-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.plan-price .period {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing-card .save-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 600;
  margin-top: 6px;
}

/* ── Plan Body ── */
.plan-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  list-style: none;
  margin-bottom: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.pricing-features li .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 900;
}

.pricing-features li.excluded {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li.excluded .check {
  background: var(--gray-100);
  color: var(--gray-400);
}

.not-included-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 2px 0 0;
  padding-top: 6px;
  border-top: 1px dashed var(--gray-200);
}

.excluded-list {
  margin-bottom: 10px;
}

.plan-body .btn {
  width: 100%;
  margin-top: auto;
  padding: 9px 16px;
  font-size: 0.82rem;
}

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

/* ── Button variants for plans ── */
.btn-teal {
  background: var(--primary);
  color: #fff;
  border: none;
}
.btn-teal:hover {
  background: #085258;
}
.btn-orange {
  background: linear-gradient(135deg, #EA580C, #F59E0B);
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background: linear-gradient(135deg, #C2410C, #D97706);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}
.testimonial-author .role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--white); }

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

.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid.four-col { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pricing-card:last-child { grid-column: auto; max-width: none; margin: 0; }
  .plan-price .amount { font-size: 1.6rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .pricing-grid.four-col { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 10px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pricing-card:last-child { max-width: 100%; }
  .plan-price .amount { font-size: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cta-section h2 { font-size: 1.9rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* Number counter animation */
.counter { display: inline-block; }

/* ============ MASCOT / LOGO IMAGES ============ */
.hero-mascot-img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
}

.cta-mascot {
  width: 120px;
  height: auto;
  position: absolute;
  bottom: 20px;
  right: 10%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  animation: float 5s ease-in-out infinite;
  z-index: 1;
  opacity: 0.9;
}

.pricing-card .plan-logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .hero-mascot-img { width: 140px; bottom: -10px; right: -10px; }
  .cta-mascot { display: none; }
}

/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-100);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
