/* ============================================
   MOBLIGO LANDING — PREMIUM DESIGN SYSTEM
   Apple-inspired, hand-crafted CSS
   ============================================ */

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

:root {
  --black: #0A0A14;
  --black-soft: #13131D;
  --dark: #1A1A2E;
  --gray-900: #1E1E2E;
  --gray-800: #2A2A3C;
  --gray-700: #3A3A4C;
  --gray-600: #5A5A6E;
  --gray-500: #8A8A9E;
  --gray-400: #A0A0B2;
  --gray-300: #C8C8D6;
  --gray-200: #E4E4EC;
  --gray-100: #F2F2F7;
  --gray-50: #F8F8FB;
  --white: #FFFFFF;
  --primary: #7B61FF;
  --primary-light: #9B85FF;
  --primary-dark: #5B41DF;
  --primary-glow: rgba(123, 97, 255, 0.15);
  --primary-glow-strong: rgba(123, 97, 255, 0.25);
  --accent-green: #34C759;
  --accent-blue: #007AFF;
  --accent-orange: #FF9500;
  --accent-red: #FF3B30;
  --accent-teal: #5AC8FA;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(123, 97, 255, 0.15);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); color: var(--black); background: var(--gray-50); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul, ol { list-style: none; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--gray-50); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* === TYPOGRAPHY === */
.headline-xl { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.headline-lg { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
.headline-md { font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.headline-sm { font-size: clamp(18px, 2vw, 24px); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.body-lg { font-size: 18px; line-height: 1.7; color: var(--gray-500); font-weight: 400; }
.body-md { font-size: 16px; line-height: 1.6; color: var(--gray-500); }
.body-sm { font-size: 14px; line-height: 1.5; color: var(--gray-500); }
.label { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(123, 97, 255, 0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(123, 97, 255, 0.4); }
.btn-secondary { background: var(--white); color: var(--black); border: 1.5px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { color: var(--primary); padding: 14px 16px; }
.btn-ghost:hover { color: var(--primary-dark); }
.btn-dark { background: var(--white); color: var(--black); }
.btn-dark:hover { background: var(--gray-100); transform: translateY(-1px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* === NAVBAR === */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-links a:hover { color: var(--black); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-login { font-size: 14px; font-weight: 600; color: var(--black); padding: 8px 16px; }
.nav-actions .btn-login:hover { color: var(--primary); }
.nav-actions .btn-cta { padding: 10px 24px; font-size: 14px; border-radius: 50px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero { padding: 160px 0 100px; background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%); pointer-events: none; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: var(--primary-glow); border: 1px solid rgba(123, 97, 255, 0.15); border-radius: 50px; margin-bottom: 32px; }
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--primary); }
.hero-title { margin-bottom: 24px; color: var(--black); }
.hero-desc { font-size: 19px; color: var(--gray-500); line-height: 1.7; max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray-500); }
.hero-trust-item .trust-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.hero-screenshot { margin-top: 80px; position: relative; }
.hero-screenshot img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl), 0 0 80px rgba(123, 97, 255, 0.08); border: 1px solid var(--gray-200); }

/* === LOGO BAND === */
.logo-band { padding: 60px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); overflow: hidden; background: var(--white); }
.logo-band-title { text-align: center; font-size: 14px; font-weight: 600; color: var(--gray-400); letter-spacing: 0.04em; margin-bottom: 36px; }
.logo-track { display: flex; gap: 60px; animation: scroll-logos 25s linear infinite; width: max-content; }
.logo-track img { height: 36px; opacity: 0.5; transition: var(--transition); filter: grayscale(100%); }
.logo-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === HOW IT WORKS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.step-card { text-align: center; padding: 40px 24px; position: relative; }
.step-number { width: 56px; height: 56px; border-radius: 16px; background: var(--primary-glow); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--primary); margin: 0 auto 24px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.step-card p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }
.step-time { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; padding: 6px 14px; background: var(--accent-green); color: var(--white); border-radius: 50px; font-size: 12px; font-weight: 700; }
.step-connector { display: none; }

/* === FEATURES TABS === */
.features-tabs { margin-top: 48px; }
.tab-nav { display: flex; gap: 4px; background: var(--gray-100); border-radius: var(--radius-lg); padding: 4px; max-width: 640px; margin: 0 auto 48px; }
.tab-btn { flex: 1; padding: 14px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--gray-500); transition: var(--transition); text-align: center; }
.tab-btn.active { background: var(--white); color: var(--black); box-shadow: var(--shadow-sm); }
.tab-btn:hover:not(.active) { color: var(--black); }
.tab-panel { display: none; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(10px); }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; opacity: 1; transform: translateY(0); }
.tab-text { text-align: left; }
.tab-text h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--black); letter-spacing: -0.02em; }
.tab-text p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.tab-img img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }

/* === COMPARE TABLE === */
.compare-wrapper { margin-top: 64px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--gray-100); }
.compare-table thead th { background: var(--gray-50); font-weight: 700; color: var(--black); font-size: 13px; letter-spacing: 0.02em; }
.compare-table thead th:nth-child(2) { color: var(--primary); background: var(--primary-glow); }
.compare-table td:first-child { font-weight: 600; color: var(--black); }
.compare-table td:nth-child(2) { color: var(--primary); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--accent-green); font-weight: 700; }
.cross { color: var(--accent-red); font-weight: 700; opacity: 0.5; }
.warn { color: var(--accent-orange); font-weight: 600; }

/* === MARKETING CARDS === */
.marketing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 64px; }
.marketing-card { padding: 40px; background: var(--gray-900); border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); text-align: left;}
.marketing-card:hover { border-color: rgba(123, 97, 255, 0.2); transform: translateY(-4px); }
.marketing-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.marketing-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.marketing-card p { font-size: 15px; color: var(--gray-400); line-height: 1.7; }
.marketing-card .stat-highlight { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(40px, 4vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; color: var(--primary); }
.stat-label { font-size: 15px; color: var(--gray-500); font-weight: 500; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; text-align: left; }
.testimonial-card { padding: 36px; background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--gray-200); transition: var(--transition); }
.testimonial-card:hover { border-color: var(--primary-glow-strong); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent-orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--white); }
.testimonial-info h4 { font-size: 14px; font-weight: 700; color: var(--black); }
.testimonial-info span { font-size: 13px; color: var(--gray-400); }

/* === SECTORS === */
.sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 64px; }
.sector-card { text-align: center; padding: 32px 16px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--gray-200); transition: var(--transition); }
.sector-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.sector-icon { font-size: 36px; margin-bottom: 16px; }
.sector-card h3 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.sector-card p { font-size: 12px; color: var(--gray-500); }

/* === PRICING === */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 48px 0; }
.pricing-toggle span { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.pricing-toggle span.active { color: var(--black); }
.toggle-switch { width: 52px; height: 28px; background: var(--gray-200); border-radius: 50px; position: relative; cursor: pointer; transition: var(--transition); }
.toggle-switch.active { background: var(--primary); }
.toggle-switch::after { content: ''; width: 22px; height: 22px; background: var(--white); border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.toggle-switch.active::after { left: 27px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.pricing-card { padding: 40px; background: var(--white); border-radius: var(--radius-2xl); border: 1px solid var(--gray-200); position: relative; transition: var(--transition); }
.pricing-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-glow); }
.pricing-card.featured::before { content: 'Önerilen'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 20px; background: var(--primary); color: var(--white); border-radius: 50px; font-size: 12px; font-weight: 700; }
.pricing-name { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; min-height: 42px; }
.pricing-price { margin-bottom: 24px; }
.pricing-price .amount { font-size: 44px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
.pricing-price .period { font-size: 15px; color: var(--gray-500); font-weight: 500; }
.pricing-price .old-price { font-size: 16px; color: var(--gray-500); text-decoration: line-through; margin-right: 8px; }
.pricing-cta { display: block; width: 100%; padding: 16px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; text-align: center; margin-bottom: 32px; transition: var(--transition); }
.pricing-card.featured .pricing-cta { background: var(--primary); color: var(--white); }
.pricing-card.featured .pricing-cta:hover { background: var(--primary-dark); }
.pricing-card:not(.featured) .pricing-cta { background: var(--gray-100); color: var(--black); }
.pricing-card:not(.featured) .pricing-cta:hover { background: var(--gray-200); }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 14px; color: var(--gray-700); }
.pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* === TRUST === */
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 64px; }
.trust-item { text-align: center; padding: 32px 16px; }
.trust-item-icon { font-size: 32px; margin-bottom: 12px; }
.trust-item h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--gray-500); }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 16px; font-weight: 600; color: var(--black); text-align: left; transition: var(--transition); cursor: pointer; }
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gray-600); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary-glow); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; color: var(--gray-600); line-height: 1.7; text-align: left;}

/* === FINAL CTA === */
.final-cta { padding: 120px 0; background: linear-gradient(135deg, var(--black) 0%, #1a1040 50%, var(--primary-dark) 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -40%; left: -20%; width: 60%; height: 180%; background: radial-gradient(ellipse, rgba(123, 97, 255, 0.15), transparent 60%); pointer-events: none; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: var(--gray-400); font-size: 18px; margin-bottom: 40px; }
.final-cta .hero-buttons { justify-content: center; }

/* === FOOTER === */
.footer { background: var(--black); padding: 80px 0 40px; color: var(--gray-400); text-align: left;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-brand img { height: 28px; filter: brightness(10); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-400); padding: 6px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; }

/* === STICKY CTA BAR === */
.sticky-bar { position: fixed; bottom: -80px; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--gray-200); transition: var(--transition-slow); padding: 12px 0; }
.sticky-bar.visible { bottom: 0; }
.sticky-bar .container { display: flex; justify-content: space-between; align-items: center; }
.sticky-bar-text { font-size: 14px; font-weight: 600; color: var(--black); }
.sticky-bar-text span { color: var(--gray-500); font-weight: 400; margin-left: 8px; }

/* === SCROLL ANIMATIONS === */
/* Kapatıp normal görünmesini sağlıyoruz sorun çözülsün diye. İleride isteğe göre "opacity: 0" eklenebilir. */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* .reveal.visible { opacity: 1; transform: translateY(0); } */

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .marketing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-buttons .btn { width: 100%; }
  .hero-trust { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .tab-nav { flex-direction: column; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .final-cta { padding: 80px 0; }
  .logo-track img { height: 28px; }
  .pricing-card { padding: 28px; }
  .sticky-bar-text span { display: none; }
}


/* === FLOATING CARDS (Apple WOW) === */
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
    animation: float-slow 6s ease-in-out infinite;
    z-index: 10;
}
.floating-card.fc-1 { top: 10%; left: -6%; animation-delay: 0s; }
.floating-card.fc-2 { bottom: 15%; right: -6%; animation-delay: -3s; }
.fc-icon { font-size: 24px; background: var(--white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.fc-text { text-align: left; line-height: 1.4; }
.fc-text span { display: block; font-size: 11px; color: var(--gray-500); font-weight: 500; }

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

/* === APPLE TEXT CLIP === */
.apple-text-clip {
    position: relative;
    padding: 140px 0;
    text-align: center;
    background: var(--gray-50);
}
.apple-text-clip h2 {
    font-size: clamp(60px, 9vw, 150px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    background: linear-gradient(270deg, var(--primary), var(--accent-teal), var(--primary-dark), #FF3B30);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    animation: gradient-shift-apple 8s ease infinite;
}

@keyframes gradient-shift-apple {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.apple-text-clip p {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--black);
    margin-top: 16px;
}

/* === MAGNETIC BUTTONS === */
.btn-magnetic {
    transition: transform 0.1s linear, box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform;
}


/* === CUSTOM CURSOR === */
@media (min-width: 769px) {
  /* No longer hiding the native cursor to prevent disappearing issues */
}

.cursor-ring { display: none !important; }
.cursor-ring.hovered { width: 56px; height: 56px; margin-left: -28px; margin-top: -28px; background: rgba(123, 97, 255, 0.15); border-color: transparent; backdrop-filter: blur(2px); }
.cursor-ring.click-anim { transform: scale(0.8) translate(0, 0) !important; background: rgba(123, 97, 255, 0.3); }

/* === MOCK NOTIFICATION === */
.mock-notification { position: fixed; top: -120px; left: 50%; transform: translateX(-50%); background: rgba(30,30,46,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); padding: 18px 24px; border-radius: 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); z-index: 9999; transition: top 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55); width: max-content; max-width: 380px; color: white; cursor: pointer; }
.mock-notification.show { top: 32px; }
.mock-notification:hover { transform: translateX(-50%) scale(1.02); }
.notif-icon { font-size: 24px; background: rgba(255,255,255,0.1); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 14px; }
.notif-text h4 { margin: 0; font-size: 15px; font-weight: 700; color: white; }
.notif-text p { margin: 4px 0 0; font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* === SIMULATOR === */
.simulator-wrapper { display: flex; align-items: center; justify-content: center; gap: 80px; margin-top: 24px; }
.sim-controls { display: flex; flex-direction: column; gap: 16px; }
.sim-btn { font-size: 16px; font-weight: 600; color: var(--gray-500); text-align: left; padding: 20px 32px; border-radius: var(--radius-xl); transition: var(--transition); border: 2px solid transparent; width: 280px; background: transparent; }
.sim-btn.active { color: var(--primary); background: var(--white); border-color: rgba(123, 97, 255, 0.3); box-shadow: var(--shadow-lg); transform: translateX(8px); }
.sim-btn:hover:not(.active) { background: rgba(255,255,255,0.5); color: var(--black); }
.sim-phone { width: 320px; height: 650px; background: var(--black); border-radius: 44px; border: 12px solid var(--gray-900); position: relative; box-shadow: var(--shadow-xl), 0 0 100px rgba(0,0,0,0.1); overflow: hidden; transform: rotate(-2deg); transition: transform 0.5s ease; }
.sim-phone:hover { transform: rotate(0deg) scale(1.02); }
.sim-phone::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 140px; height: 32px; background: var(--gray-900); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; z-index: 2; }
.sim-screen { width: 100%; height: 100%; position: relative; background: var(--white); }

@media (max-width: 1024px) {
    .simulator-wrapper { gap: 40px; }
    .split-animation { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .simulator-wrapper { flex-direction: column; }
    .sim-btn { width: 100%; text-align: center; }
    .sim-btn.active { transform: translateX(0); }
    .cursor-ring { display: none !important; }
    .mock-notification { width: 90%; max-width: none; }
}
