/* =========================================
   KENTO — styles.css
   Production CSS by AKNTA LLC
   ========================================= */

/* ---- Custom Properties ---- */
:root {
  --blue: #2196F3;
  --blue-dark: #1565C0;
  --blue-light: #64B5F6;
  --yellow: #FFC107;
  --yellow-dark: #FFA000;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-900: #212121;
  --dark-footer: #0F1729;
  --dark-footer2: #1A1A2E;
  --green: #4CAF50;
  --orange: #FF9800;
  --red: #F44336;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(33,150,243,0.28);
  --shadow-yellow: 0 4px 20px rgba(255,193,7,0.35);

  --transition: 0.2s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.7; }

.accent-yellow { color: var(--yellow); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 40px rgba(33,150,243,0.38); }

.btn-outline {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--gray-500); color: var(--gray-900); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }

.btn-ios {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-ios:hover { transform: none; }

/* ---- Section Helpers ---- */
.section-tag {
  display: inline-block;
  background: rgba(33,150,243,0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; }

/* =========================================
   NAVBAR
   ========================================= */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-icon { width: 36px; height: 36px; border-radius: 9px; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF5FE 0%, #FFFFFF 50%, #FFFBF0 100%);
}

.hero-bg-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.blob2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  top: auto;
  right: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.12);
  color: #2E7D32;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero-headline {
  margin-bottom: 20px;
  color: var(--gray-900);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Phone Mockups ---- */
.hero-phone {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
}

.phone-mockup {
  position: relative;
  flex: 1;
  max-width: 200px;
}

.android-mockup {
  transform: translateY(-20px);
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16), 0 0 0 2px rgba(0,0,0,0.06);
  background: #000;
  aspect-ratio: 9/19.5;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ios-screen {
  background: linear-gradient(160deg, #1565C0, #1976D2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.coming-soon-overlay {
  text-align: center;
  color: white;
  padding: 20px;
}
.coming-soon-overlay .cs-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 12px;
  opacity: 0.9;
}
.coming-soon-overlay p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 4px;
}
.coming-soon-overlay span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #4CAF50;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 12px;
  width: fit-content;
}
.ios-badge { background: var(--blue); }

/* =========================================
   BENEFITS
   ========================================= */
.benefits {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}
.benefit-card.visible { opacity: 1; transform: translateY(0); }
.benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefit-card:nth-child(3) { transition-delay: 0.2s; }

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon { font-size: 2.2rem; line-height: 1; }

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--gray-900);
}

.benefit-card p { font-size: 0.92rem; }

/* =========================================
   FEATURES
   ========================================= */
.features {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(16px);
}
.feature-item.visible { opacity: 1; transform: translateY(0); }
.feature-item:first-child { border-radius: var(--radius-md) 0 0 0; }
.feature-item:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
.feature-item:nth-last-child(2) { border-radius: 0 0 0 var(--radius-md); }
.feature-item:last-child { border-radius: 0 0 var(--radius-md) 0; }

.feature-item:hover {
  background: #EBF5FE;
  transform: scale(1.01);
  z-index: 1;
  position: relative;
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(33,150,243,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-item h3 {
  font-size: 0.97rem;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.feature-item p { font-size: 0.87rem; color: var(--gray-600); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(3) { transition-delay: 0.1s; }
.step-card:nth-child(5) { transition-delay: 0.2s; }

.step-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  background: var(--white);
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: var(--gray-300);
  margin: 0 8px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon { font-size: 2.4rem; margin-bottom: 16px; }

.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid var(--gray-200);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; }

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

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* =========================================
   DOWNLOAD CTA
   ========================================= */
.download-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1565C0 0%, #2196F3 50%, #42A5F5 100%);
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.download-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}

.download-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ios-coming-soon {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-family: var(--font-display);
  margin: 0;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1rem; }
.about-text p:last-of-type { margin-bottom: 28px; }
.about-text strong { color: var(--gray-900); }

.about-logo-wrap {
  display: flex;
  justify-content: center;
}

.about-logo-card {
  background: linear-gradient(135deg, #E3F2FD, #F3E5F5);
  border-radius: var(--radius-xl);
  padding: 48px 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-logo-card img {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
}
.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.04em;
}

/* =========================================
   SUPPORT
   ========================================= */
.support {
  padding: 100px 0;
  background: var(--gray-50);
}

.support-inner {}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(16px);
  color: var(--gray-900);
}
.support-card.visible { opacity: 1; transform: translateY(0); }
.support-card:nth-child(2) { transition-delay: 0.1s; }
.support-card:nth-child(3) { transition-delay: 0.2s; }
.support-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
}

.support-icon { font-size: 2.4rem; margin-bottom: 16px; }
.support-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--gray-900); }
.support-card p { color: var(--blue); font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; }
.support-card span { color: var(--gray-500); font-size: 0.82rem; }

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

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

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-brand { color: white; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 260px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.85rem; }
.footer-tagline {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* =========================================
   PRIVACY PAGE
   ========================================= */
.page-hero {
  background: linear-gradient(160deg, #EBF5FE 0%, #FFFFFF 100%);
  padding: 72px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 10px;
}
.page-hero p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.privacy-content {
  padding: 60px 0 100px;
  background: var(--white);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

/* TOC */
.privacy-toc {
  position: sticky;
  top: 90px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
}

.privacy-toc h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.privacy-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-toc a {
  font-size: 0.84rem;
  color: var(--gray-600);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all var(--transition);
  display: block;
}

.privacy-toc a:hover,
.privacy-toc a.toc-active {
  color: var(--blue);
  background: rgba(33,150,243,0.08);
}

/* Privacy Body */
.privacy-body {
  max-width: 720px;
}

.privacy-body section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.privacy-body h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.privacy-body h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin: 24px 0 10px;
}

.privacy-body p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

.privacy-body a { color: var(--blue); text-decoration: underline; }
.privacy-body a:hover { color: var(--blue-dark); }

.privacy-body ul {
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-body ul li {
  padding: 10px 14px 10px 36px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-600);
  position: relative;
  border: 1px solid var(--gray-200);
}

.privacy-body ul li::before {
  content: '•';
  position: absolute;
  left: 14px;
  color: var(--blue);
  font-weight: 700;
}

.privacy-body ul.list-check li::before { content: '✓'; color: var(--green); }
.privacy-body ul.list-negative li { border-color: transparent; background: #FFF3F3; }
.privacy-body ul.list-negative li::before { content: '✗'; color: var(--red); }

.info-box {
  background: rgba(33,150,243,0.07);
  border: 1px solid rgba(33,150,243,0.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 16px 0;
}

/* Permissions Table */
.permissions-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  margin: 16px 0;
}

.permissions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.permissions-table th {
  background: var(--gray-100);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.permissions-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  vertical-align: top;
}

.permissions-table tr:hover td { background: var(--gray-50); }

.permissions-table code {
  background: rgba(33,150,243,0.08);
  color: var(--blue-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: 'Courier New', monospace;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeInUp 0.7s ease both; }
.hero-phone { animation: fadeInUp 0.7s 0.15s ease both; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-phone { order: 2; justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin: 0 auto 20px; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-logo-wrap { order: -1; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: white; padding: 20px 24px 28px; gap: 4px; border-bottom: 1px solid var(--gray-200); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; font-size: 1rem; border-bottom: 1px solid var(--gray-100); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-radius: var(--radius-md) !important; }

  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-toc { display: none; }

  .hero-phone { flex-direction: column; align-items: center; }
  .phone-mockup { max-width: 180px; }
  .android-mockup { transform: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 64px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-lg { width: 100%; justify-content: center; }
  .footer-links { flex-direction: column; }
}
