/* =========================================================
   Tokimo — Visual Timer for Kids
   Premium Redesign Stylesheet
   ========================================================= */

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

:root {
  /* Colors - Modern Vibrant Palette */
  --primary:    #4B6BFB;     /* Vibrant Royal Blue */
  --primary-lt: #819EFA;
  --primary-dk: #314BB4;
  --primary-bg: #EAF0FF;

  --orange:     #FF7D4F;     /* Peachy Vibrant Orange */
  --orange-lt:  #FFAD8F;
  --orange-bg:  #FFF0EA;

  --teal:       #16D2BE;
  --green:      #3AE294;
  --yellow:     #FFC635;
  --purple:     #B566FF;
  
  --dark:       #0B152A;     /* Deep Indigo Dark */
  --dark-2:     #1E2941;
  --gray:       #6B738D;
  --gray-lt:    #F2F5FB;
  --white:      #FFFFFF;
  --bg-color:   #F9FAFF;     /* App Main Background */

  /* Radii */
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  100px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm:  0 4px 14px rgba(11, 21, 42, 0.05);
  --shadow-md:  0 12px 30px rgba(11, 21, 42, 0.08);
  --shadow-lg:  0 20px 60px rgba(11, 21, 42, 0.12);
  --shadow-glow: 0 15px 40px rgba(75, 107, 251, 0.25);
  --glass-bg:   rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);

  /* Typography */
  --font:       'Outfit', 'Segoe UI', system-ui, sans-serif;
  --trans:      all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font);
  color: var(--gray);
  background: var(--bg-color);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; color: var(--dark); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.highlight { 
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.highlight-orange { color: var(--orange); }

/* --- Layout --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section         { padding: 64px 0; position: relative; }
.section-sm      { padding: 40px 0; }
.section-flush   { padding-top: 20px !important; }

/* --- Glassmorphism Card Utility --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6B4BFB);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: var(--trans);
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 20px 45px rgba(75, 107, 251, 0.35); 
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid rgba(75, 107, 251, 0.2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { 
  background: var(--primary-bg); 
  transform: translateY(-3px); 
  border-color: var(--primary);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(11, 21, 42, 0.25);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-3px); }
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }

/* --- App Store Badge --- */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  border-radius: 16px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(11, 21, 42, 0.2);
}
.appstore-badge:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(11, 21, 42, 0.3); 
  background: #000;
}
.appstore-badge .apple-icon {
  width: 24px; height: 24px;
  fill: #fff;
  flex-shrink: 0;
}
.appstore-badge .badge-text span {
  display: block; font-size: 10px; font-weight: 600; opacity: 0.8; line-height: 1.2;
}
.appstore-badge .badge-text strong {
  display: block; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1;
}
.appstore-badge.badge-lg {
  padding: 14px 30px; gap: 16px; border-radius: 20px;
}
.appstore-badge.badge-lg .apple-icon { width: 32px; height: 32px; }
.appstore-badge.badge-lg .badge-text span  { font-size: 12px; }
.appstore-badge.badge-lg .badge-text strong { font-size: 24px; }

/* White variant for dark areas */
.cta-section .appstore-badge {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.cta-section .appstore-badge .apple-icon { fill: var(--dark); }
.cta-section .appstore-badge:hover { background: #f0f0f0; transform: translateY(-4px); }

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.badge-orange { color: var(--orange); border: 1px solid var(--orange-bg); }
.badge-blue   { color: var(--primary); border: 1px solid var(--primary-bg); }
.badge-green  { color: var(--green); border: 1px solid #E8F5E9; }

/* --- Section heading --- */
.section-heading { text-align: center; margin-bottom: 44px; position: relative; z-index: 2; }
.section-heading .badge { margin-bottom: 20px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p  { max-width: 620px; margin: 0 auto; font-size: 1.15rem; }

/* =========================================================
   HEADER / NAV (Glassmorphism)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 250, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 22%;
}
.nav-links { display: flex; gap: 36px; margin-left: 40px; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--gray);
  font-size: 1.05rem;
  transition: var(--trans);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 3px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--trans);
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 50%; }


.nav-cta { display: flex; align-items: center; margin-left: 0; }

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border: none; background: transparent;
}
.nav-hamburger span {
  display: block; width: 28px; height: 3px;
  background: var(--dark); border-radius: 3px;
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(249, 250, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.mobile-menu a:not(.appstore-badge) { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.mobile-menu a:not(.appstore-badge):hover { color: var(--primary); }
.mobile-close { position: absolute; top: 30px; right: 30px; font-size: 2.5rem; cursor: pointer; color: var(--dark); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 72px 0 48px;
  overflow: visible;
  position: relative;
}
.page-hero {
  padding: 48px 0 32px;
}
/* Abstract Animated Blobs */
.blob {
  position: absolute;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.6;
  border-radius: 50%;
  animation: floatBlob 15s ease-in-out infinite alternate;
}
.blob-1 { top: -10%; right: 10%; width: 500px; height: 500px; background: rgba(75, 107, 251, 0.2); }
.blob-2 { bottom: 0; left: -10%; width: 400px; height: 400px; background: rgba(255, 125, 79, 0.15); animation-delay: -5s; }
.blob-3 { top: 30%; right: -5%; width: 300px; height: 300px; background: rgba(181, 102, 255, 0.15); animation-delay: -10s; }

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
  100% { transform: translate(20px, -20px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-text { padding-bottom: 40px; position: relative; z-index: 2; }
.hero-text .badge { margin-bottom: 24px; animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.hero-text h1 { margin-bottom: 24px; animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.hero-text p  { font-size: 1.25rem; margin-bottom: 44px; max-width: 520px; animation: slideUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; animation: slideUp 1.4s cubic-bezier(0.25, 0.8, 0.25, 1); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-stats {
  display: flex; gap: 48px;
  animation: slideUp 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--glass-bg);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  display: inline-flex;
}
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--dark); }
.hero-stat span { font-size: 0.9rem; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-phones {
  display: flex; justify-content: center; align-items: center; gap: -20px; position: relative; z-index: 2;
  perspective: 1000px;
}
.hero-phone {
  width: 240px;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 0 8px #fff;
  animation: floatPhone 6s ease-in-out infinite;
  background: #fff;
}
.hero-phone:first-child { transform: rotate(-8deg) translateX(30px); z-index: 1; animation-delay: 0s; }
.hero-phone:last-child { transform: rotate(5deg) translateY(40px) translateX(-30px); z-index: 2; animation-delay: -3s; }

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--rot, 0deg)); }
}
.hero-phone:first-child { --rot: -8deg; }
.hero-phone:last-child { --rot: 5deg; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.trust-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 40px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1rem; color: var(--dark-2); }
.trust-item .icon { font-size: 1.6rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.trust-stars { color: #FFC635; letter-spacing: 4px; font-size: 1.2rem; }

/* =========================================================
   FEATURES
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  position: relative;
  z-index: 2;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, var(--icon-bg) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 0.6; }
.feature-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 24px;
  background: var(--icon-bg, var(--orange-bg));
  color: var(--card-color);
  box-shadow: 0 10px 20px var(--icon-bg);
  transition: var(--trans);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { margin-bottom: 14px; font-size: 1.35rem; }
.feature-card p  { font-size: 1.05rem; line-height: 1.7; color: var(--gray); }

/* =========================================================
   USE CASES
   ========================================================= */
.how-bg {
  background: linear-gradient(to bottom, #F9FAFF, #EAF0FF, #F9FAFF);
}
.use-cases-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
  position: relative; z-index: 2;
}
.use-case {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.use-case:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.use-case .uc-icon { 
  font-size: 3rem; margin-bottom: 20px; 
  display: inline-block;
  transition: var(--trans);
}
.use-case:hover .uc-icon { transform: scale(1.15); }
.use-case h4 { margin-bottom: 12px; font-size: 1.15rem; }
.use-case p  { font-size: 0.95rem; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 60px;
  position: relative; z-index: 2;
}
.steps::after {
  content: ''; position: absolute;
  top: 40px; left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-lt), transparent);
  z-index: -1;
  opacity: 0.3;
}
@media(max-width: 900px) { .steps::after { display: none; } }
.step { text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6B4BFB);
  color: var(--white); font-size: 2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.step-num::before {
  content:''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(75, 107, 251, 0.4);
  animation: spin 10s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.step h3 { margin-bottom: 16px; font-size: 1.4rem; }
.step p  { font-size: 1.05rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--dark); color: var(--white); overflow: hidden; }
.testimonials-section .section-heading h2 { color: var(--white); }
.testimonials-section .section-heading p { color: rgba(255,255,255,0.7); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px;
  position: relative; z-index: 2;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.testimonial-stars { color: #FFC635; font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.testimonial-name { font-weight: 800; font-size: 1.05rem; color: var(--white); }
.testimonial-role { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.category-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
  background: var(--white); border-radius: 100px; font-size: 1rem; font-weight: 700; color: var(--dark);
  border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-sm); transition: var(--trans); text-decoration: none;
}
.category-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--primary); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 36px; position: relative; z-index: 2; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  transition: var(--trans); display: flex; flex-direction: column;
  position: relative; cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
  transition: var(--trans);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; background: var(--white); position: relative; z-index: 2; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.blog-card-meta .badge { font-size: 0.75rem; padding: 4px 12px; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--dark); transition: var(--trans); }
.blog-card:hover h3 { color: var(--primary); }
.blog-card p  { font-size: 1rem; margin-bottom: 24px; flex: 1; }
.blog-card .read-more {
  color: var(--primary); font-weight: 800; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px;
}
.blog-card .read-more::after { content: '→'; transition: transform 0.2s; }
.blog-card:hover .read-more::after { transform: translateX(5px); }
.blog-card .read-more::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
}

/* =========================================================
   Blog Post Article
   ========================================================= */
.section:has(.post-layout) {
  padding-top: 48px;
  padding-bottom: 72px;
}

.post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  line-height: 1.2;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.post-content {
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
}
.post-content h2 {
  font-size: 1.6rem !important;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.post-content h3 {
  font-size: 1.2rem !important;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark);
  line-height: 1.4;
}
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--dark); }
.post-content a { color: var(--primary); font-weight: 700; }

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 16px;
}

.callout {
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 1rem;
}
.callout p { margin: 0; }

.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.sidebar-widget h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}
.sidebar-widget p { font-size: 0.95rem; margin-bottom: 16px; }
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li { border-bottom: 1px solid var(--light); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--trans);
}
.sidebar-widget ul li a:hover { color: var(--primary); }
.sidebar-cta { background: linear-gradient(135deg, var(--primary-bg), #f0f4ff); }

@media(max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03); overflow: hidden; transition: var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow-md); border-color: rgba(75,107,251,0.2); }
.faq-question {
  padding: 24px 30px; font-weight: 800; font-size: 1.15rem; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: var(--trans);
}
.faq-answer {
  padding: 0 30px 24px; color: var(--gray); line-height: 1.7; font-size: 1.05rem; display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--primary); color: var(--white); }

/* =========================================================
   DOWNLOAD CTA
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #8F55FF);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
  color: var(--white);
}
/* CTA Blobs */
.cta-section::before {
  content: ''; position: absolute; top: -150px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -150px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,198,53,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 24px; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.cta-section .highlight { background: linear-gradient(135deg, #FFE600, #FF7D4F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 1.25rem; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; position: relative; z-index: 2; }

/* =========================================================
   LANGUAGES BAR & FOOTER
   ========================================================= */
.lang-bar {
  background: var(--dark); padding: 24px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lang-bar p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.lang-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lang-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(255,255,255,0.05); border-radius: 100px; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1); transition: var(--trans);
}
.lang-link:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.6); padding: 56px 0 32px; position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 20px; font-size: 1.8rem; }
.footer-brand p { font-size: 1rem; margin-bottom: 28px; line-height: 1.8; max-width: 320px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); transition: var(--trans);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.footer-col h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { font-size: 1rem; transition: var(--trans); color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.95rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.95rem; transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--white); }

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .hero-text p { margin: 0 auto 40px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-phones { margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 0; overflow: hidden; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto 24px; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  /* Touch target optimizations */
  .btn { padding: 18px 36px; font-size: 1.1rem; }
  .appstore-badge { padding: 12px 24px; }
  
  /* Layout fixes */
  .blob { filter: blur(40px); }
  .blob-1 { width: 300px; height: 300px; right: -50px; top: -50px; }
  .blob-2 { width: 250px; height: 250px; left: -50px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); word-break: break-word; hyphens: auto; }
  .hero-phones { transform: scale(0.85); margin-top: -20px; margin-bottom: -40px; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 0.75rem; }
  .hero-stats { gap: 24px; padding: 16px 20px; flex-wrap: wrap; justify-content: center; }
  
  .section-heading h2 { font-size: 2rem; }
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 2.2rem; }
  
  /* Stack grids completely */
  .features-grid, .testimonials-grid, .blog-grid, .use-cases-grid, .steps { 
    grid-template-columns: 1fr; 
  }
}

/* Optimize hover states for touch devices */
@media (hover: none) {
  .feature-card:hover { transform: none; box-shadow: var(--shadow-md); }
  .btn-primary:hover { transform: none; }
  .appstore-badge:hover { transform: none; }
  .use-case:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
}
