/* ======================================================
   HalıGo — Premium Marketing Website
   LIGHT THEME — Clean & Professional
   ====================================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary-dark: #1A40A3;
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --secondary: #00B4D8;
  --accent: #0891B2;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #1A40A3 0%, #00B4D8 100%);
  --gradient-hero: linear-gradient(160deg, #F0F7FF 0%, #E8F4FD 40%, #F8FBFF 100%);
  --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
  --gradient-cta: linear-gradient(135deg, #1A40A3 0%, #0088CC 50%, #00B4D8 100%);
  --gradient-section: linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 100%);
  --gradient-pricing: linear-gradient(135deg, #1A40A3 0%, #2563EB 100%);

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;

  /* Text */
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders */
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-focus: rgba(37, 99, 235, 0.3);

  /* Shadows (Soft & Diffused) */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 48px -8px rgba(37, 99, 235, 0.08);
  --shadow-xl: 0 32px 64px -12px rgba(37, 99, 235, 0.12);
  --shadow-brand: 0 8px 32px rgba(37, 99, 235, 0.2);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 20px 40px -8px rgba(37, 99, 235, 0.12);

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: var(--bg-light);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary);
}

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

.section-header .badge {
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  padding: 40px;
}

.card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition-base);
  position: relative;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-xs);
  padding: 8px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 32px;
}

.nav-logo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; /* Slogan eklenince denge için küçültüldü */
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.nav-logo-slogan {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-top: 1px;
}

.nav-logo-text span:first-child {
  color: #244cb4;
}

.nav-logo-text span:last-child {
  color: #0dcfe4;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  opacity: 0.85;
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px !important;
  border-radius: var(--radius-md) !important;
  background: var(--gradient-brand) !important;
  color: var(--text-white) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  transition: all var(--transition-base) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35) !important;
  color: var(--text-white) !important;
}

.nav-panel-link {
  padding: 9px 18px !important;
  border-radius: var(--radius-md) !important;
  border: 1.5px solid var(--border-light) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all var(--transition-base) !important;
}

.nav-panel-link::after {
  display: none !important;
}

.nav-panel-link:hover {
  border-color: var(--primary) !important;
  background: rgba(37, 99, 235, 0.04) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-header {
  grid-area: header;
}

.hero .container {
  display: grid;
  grid-template-areas: 
    "badge visual"
    "content visual";
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 0 140px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  grid-area: badge;
  align-self: end;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-content {
  grid-area: content;
  align-self: start;
  max-width: 440px;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content h1 .highlight {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.hero-trust-avatar svg {
  color: #ffffff;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-trust-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Hero Visual (Phone Mockup) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.phone-mockup {
  position: relative;
  width: 290px;
  height: 600px;
  background: #FFFFFF;
  border-radius: 44px;
  border: 6px solid #1A1A2E;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1A1A2E;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.phone-statusbar {
  padding: 12px 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}

.phone-app-header {
  padding: 10px 16px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-app-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: white;
}

.phone-app-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 12px 8px;
}

.phone-stat {
  padding: 10px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
}

.phone-stat-value {
  font-size: 17px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.phone-stat-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.phone-stat:nth-child(1) .phone-stat-value { color: #059669; }
.phone-stat:nth-child(2) .phone-stat-value { color: #2563EB; }
.phone-stat:nth-child(3) .phone-stat-value { color: #D97706; }
.phone-stat:nth-child(4) .phone-stat-value { color: #E11D48; }

.phone-orders {
  flex: 1;
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-order-header {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.phone-order-card {
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-order-info h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.phone-order-info p {
  font-size: 9px;
  color: var(--text-muted);
}

.phone-order-status {
  padding: 3px 8px;
  border-radius: 16px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-new { background: #ECFDF5; color: #059669; }
.status-progress { background: #EFF6FF; color: #2563EB; }
.status-ready { background: #FFFBEB; color: #D97706; }

/* Phone floating cards */
.phone-float {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  background: var(--bg-white);
}

.phone-side {
  position: absolute;
  width: 250px;
  height: 520px;
  background: #FFFFFF;
  border-radius: 38px;
  border: 4px solid #1A1A2E;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
  transition: all 0.5s ease;
}

.phone-side .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-side-1 {
  left: -120px;
  transform: perspective(1000px) rotateY(15deg) scale(0.9);
}

.phone-side-2 {
  right: -120px;
  transform: perspective(1000px) rotateY(-15deg) scale(0.9);
}

/* Glow ring */
.phone-glow-ring {
  position: absolute;
  width: 360px;
  height: 660px;
  border-radius: 56px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  padding: 56px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Features Section ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: left;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-subtle);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-light), var(--primary-light), var(--border-light), transparent);
}

.step-card {
  text-align: center;
  padding: 36px 20px;
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--text-white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-brand);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  background: var(--bg-white);
}

.pricing-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-light);
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}

.pricing-toggle-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition-base);
}

.pricing-toggle-btn.active {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pricing-card {
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-card-header {
  background: var(--gradient-pricing);
  padding: 36px 36px 28px;
  color: var(--text-white);
  text-align: center;
}

.pricing-card-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card-header p {
  font-size: 14px;
  opacity: 0.8;
}

.pricing-price {
  margin: 20px 0 8px;
}

.pricing-price .amount {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 4px;
}

.price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 600;
}

.pricing-price .period {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}

.pricing-card-save {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card-body {
  padding: 32px 36px 40px;
  background: var(--bg-white);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.pricing-feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  background: var(--gradient-brand);
  color: var(--text-white);
  box-shadow: var(--shadow-brand);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}

.pricing-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

.pricing-secure img {
  height: 20px;
}

/* ---------- Screenshots Marquee ---------- */
.screenshots-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0 60px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.screenshots-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.screenshots-track:hover {
  animation-play-state: paused;
}

.screenshots-group {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

.screenshot-item {
  height: 400px;
  width: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
  background: #fff;
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 180, 216, 0.15);
}

@keyframes scrollMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .screenshot-item {
    height: 300px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }
  .screenshots-group {
    gap: 16px;
    padding-right: 16px;
  }
}

/* ---------- App Showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-phone {
  width: 270px;
  height: 560px;
  background: #FFFFFF;
  border-radius: 40px;
  border: 6px solid #1A1A2E;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.showcase-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  padding: 36px 14px 14px;
}

.showcase-phone-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 0 10px;
}

.showcase-phone-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-brand);
}

.showcase-phone-login h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.showcase-phone-login p {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.showcase-phone-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.showcase-phone-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.showcase-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showcase-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.showcase-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.showcase-feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.showcase-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  background: var(--text-dark);
  color: var(--text-white);
  transition: all var(--transition-base);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-btn-icon {
  font-size: 22px;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
}

.store-btn-text small {
  font-size: 9px;
  opacity: 0.7;
  font-weight: 500;
}

.store-btn-text span {
  font-size: 14px;
  font-weight: 700;
}

/* ---------- Why Section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 36px 28px;
  text-align: center;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- References / Testimonials ---------- */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reference-card {
  padding: 32px 28px;
}

.reference-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.reference-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.reference-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.reference-author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.reference-author-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.cta-card {
  position: relative;
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-card .cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: white !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  font-weight: 800 !important;
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2) !important;
}

.cta-btn-outline {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
}

.cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.1) !important;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: 56px 0 28px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ---------- Comparison Section ---------- */
.comparison-showcase { background: #fff; padding: 40px; border-radius: 24px; box-shadow: var(--shadow-md); text-align: center; }
.comparison-banner { margin-bottom: 32px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.comparison-banner img { width: 100%; height: auto; display: block; }
.badge-comparison { background: #FFF1F2; color: #E11D48; border: none; margin-bottom: 16px; display: inline-flex; }
.comparison-showcase h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: #0F172A; }
.comparison-p { color: #475569; line-height: 1.7; margin-bottom: 24px; font-size: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.comparison-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.comparison-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1E293B;
  font-weight: 600;
  font-size: 15px;
  background: #F8FAFC;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.comparison-list li:hover {
  background: #fff;
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.comparison-list li span {
  color: #059669;
  display: flex;
  align-items: center;
}

/* ---------- Floating CTA ---------- */
.floating-cta-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-brand);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta-btn.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.floating-cta-btn svg { width: 20px; height: 20px; }
.floating-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37,99,235,0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 0; }

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

  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .showcase-visual { order: -1; }
  .showcase-features { align-items: flex-start; text-align: left; }
  .showcase-feature { text-align: left; }
  .store-buttons { justify-content: center; }
  .references-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 48px 0; --container-padding: 0 16px; }

  /* Navbar Mobile Menu */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; font-weight: 600; color: var(--text-dark); }
  .nav-mobile-toggle { display: flex; z-index: 1001; }

  .hero { min-height: auto; padding: 80px 0 20px; }
  .hero .container { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 0 16px;
  }
  
  .hero-badge { 
    order: 1;
    margin: 0 0 8px 0;
    width: 100%; 
    display: flex; 
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .hero-badge .badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .hero-visual { 
    order: 2;
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 800px;
  }
  
  .phone-mockup {
    width: 210px;
    height: 420px;
    border-width: 4px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .phone-screen {
    border-radius: 20px;
  }
  
  .phone-screen img {
    object-position: top;
    transform: scale(1.02); /* Subtle zoom for readability */
  }
  
  .phone-notch {
    width: 70px;
    height: 18px;
    border-radius: 0 0 10px 10px;
  }
  
  .phone-side {
    width: 110px;
    height: 220px;
    border-radius: 20px;
    border-width: 2px;
  }
  
  .phone-side-1 { left: -25px; transform: rotateY(15deg) scale(0.9); opacity: 0.4; }
  .phone-side-2 { right: -25px; transform: rotateY(-15deg) scale(0.9); opacity: 0.4; }

  .hero-content { 
    order: 3;
    width: 100%; 
    margin-top: 0;
  }
  
  .hero-content h1 { font-size: 24px; margin-bottom: 8px; line-height: 1.2; }
  .hero-content p { font-size: 13px; margin-bottom: 20px; line-height: 1.4; max-width: 100%; }
  .hero-buttons { flex-direction: row; justify-content: center; gap: 12px; margin-bottom: 16px; padding: 0; }
  .hero-buttons .btn { flex: 1; padding: 12px 10px; font-size: 13px; min-width: 130px; }
  .hero-trust { margin-top: 12px; justify-content: center; }
  .hero-trust-text { font-size: 11px; }
  
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 13px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { padding: 14px; }
  .feature-card h3 { font-size: 12px; margin-bottom: 4px; }
  .feature-card p { font-size: 11px; line-height: 1.3; }
  .feature-icon { width: 32px; height: 32px; padding: 6px; font-size: 16px; margin-bottom: 10px; }

  .steps-grid { 
    display: flex; gap: 4px; margin: 0; padding: 0;
    justify-content: space-between;
  }
  .step-card { 
    flex: 1; padding: 8px 4px; text-align: center; border: none; box-shadow: none; background: transparent;
  }
  .step-number { width: 24px; height: 24px; font-size: 11px; margin-bottom: 4px; }
  .step-icon { font-size: 14px; margin-bottom: 4px; }
  .step-card h3 { font-size: 10px; font-weight: 700; line-height: 1.1; margin-bottom: 0; color: var(--text-dark); }
  .step-card p { display: none; } /* Hide descriptions for extreme minimalism on mobile */

  .comparison-showcase { 
    padding: 24px 16px; 
    border-radius: 20px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    background: #ffffff; 
    margin: 0; 
  }
  .comparison-banner { margin: -24px -16px 16px -16px; border-radius: 20px 20px 0 0; }
  .comparison-showcase h2 { font-size: 20px; margin-bottom: 8px; }
  .comparison-showcase p { font-size: 13px; margin-bottom: 16px; }
  .comparison-list { 
    gap: 8px; flex-wrap: wrap; padding: 0; margin: 0;
    justify-content: center;
  }
  .comparison-list li { font-size: 11px; padding: 8px 12px; border-radius: 8px; flex: 0 1 auto; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

  .showcase-phone { width: 230px; height: 480px; margin: 0 auto; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .showcase-content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .showcase-content h2 { text-align: left; width: 100%; }
  .showcase-content p { text-align: left; }
  .store-buttons { flex-direction: row; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; align-self: center; width: 100%; }
  .store-buttons .store-btn { padding: 12px 16px; flex: 1; justify-content: center; min-width: 140px; align-items: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 11px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-card { padding: 14px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .why-card h3 { font-size: 13px; }
  .why-card p { font-size: 11px; }

  .references-grid {
    display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 16px; margin: 0 -16px; padding: 0 16px 16px 16px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .references-grid::-webkit-scrollbar { display: none; }
  .reference-card { flex: 0 0 75vw; scroll-snap-align: center; }

  .pricing-section { padding-top: 24px; }
  .pricing-wrapper { margin-top: 0; }
  .pricing-toggle { margin-bottom: 24px; }
  .pricing-card-header { padding: 12px 16px; }
  .pricing-card-body { padding: 12px 16px 20px; }
  .pricing-price { margin: 6px 0 2px; }
  .pricing-price .amount { font-size: 32px; }
  .price-old { font-size: 14px; margin-right: 4px; }
  .pricing-features { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 6px; 
    margin-bottom: 16px; 
  }
  .pricing-feature { font-size: 10px; gap: 4px; }
  .pricing-feature-check { width: 14px; height: 14px; min-width: 14px; font-size: 9px; }
  .pricing-cta { padding: 10px; font-size: 14px; }
  .pricing-secure { margin-top: 8px; font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .floating-cta-btn { 
    bottom: 16px; right: 16px; padding: 10px 16px; font-size: 13px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }
  .floating-cta-btn.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-value { font-size: 26px; }
  .hero-content h1 { font-size: 26px; }
}
.nav-logo-img {
  height: 48px;
  width: auto;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}
