/* ============================================
   Men NimewoA — Design System & Styles
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --primary-50:  #EEF2FF;
  --primary-100: #E0E7FF;
  --primary-200: #C7D2FE;
  --primary-300: #A5B4FC;
  --primary-400: #818CF8;
  --primary-500: #6366F1;
  --primary-600: #4F46E5;
  --primary-700: #4338CA;
  --primary-800: #3730A3;
  --primary-900: #1E3A8A;

  /* Accent */
  --accent-400: #FBBF24;
  --accent-500: #F59E0B;
  --accent-600: #D97706;

  /* Neutrals */
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --bg:          #FFFFFF;
  --bg-alt:      var(--gray-50);
  --text:        var(--gray-900);
  --text-muted:  var(--gray-500);
  --surface:     #FFFFFF;
  --surface-hover: var(--gray-50);
  --border:      var(--gray-200);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #4F46E5 50%, #6366F1 100%);
  --gradient-card: linear-gradient(135deg, rgba(99,102,241,.06) 0%, rgba(30,58,138,.04) 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.06);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --bg:          #0B1120;
  --bg-alt:      #111827;
  --text:        #F1F5F9;
  --text-muted:  #94A3B8;
  --surface:     #1E293B;
  --surface-hover: #334155;
  --border:      #334155;
  --gradient-hero: linear-gradient(135deg, #0B1120 0%, #1E3A8A 50%, #312E81 100%);
  --gradient-card: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(30,58,138,.08) 100%);
  --shadow-sm:  0 1px 2px rgba(0,0,0,.3);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.4), 0 2px 4px -2px rgba(0,0,0,.3);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.4), 0 4px 6px -4px rgba(0,0,0,.3);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.5), 0 8px 10px -6px rgba(0,0,0,.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background .35s var(--ease), color .35s var(--ease);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

[data-theme="dark"] .navbar {
  background: rgba(11,17,32,.85);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-900);
}

[data-theme="dark"] .nav-brand { color: var(--primary-300); }

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  font-size: .925rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-600);
}
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  color: var(--primary-300);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

/* Dark mode toggle */
.theme-toggle {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.theme-toggle:hover {
  background: var(--primary-100);
  border-color: var(--primary-300);
}
[data-theme="dark"] .theme-toggle:hover {
  background: var(--primary-900);
  border-color: var(--primary-700);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  transition: all .25s var(--ease);
}
.lang-dropdown-toggle:hover {
  border-color: var(--primary-400);
}
.lang-dropdown-toggle svg {
  transition: transform .25s var(--ease);
}
.lang-dropdown.open .lang-dropdown-toggle svg {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s var(--ease);
  z-index: 100;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-select-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  transition: background .2s var(--ease);
}
.lang-select-btn:hover {
  background: var(--bg-alt);
}
.lang-select-btn.active {
  background: var(--primary-100);
  color: var(--primary-700);
  font-weight: 600;
}
[data-theme="dark"] .lang-select-btn.active {
  background: var(--primary-900);
  color: var(--primary-300);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(251,191,36,.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

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

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.15);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.15rem;
  opacity: .85;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-primary {
  background: #fff;
  color: var(--primary-900);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--gray-900);
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,.4);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  display: block;
}

.hero-phone-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone {
  position: absolute;
  width: 240px;
  border-radius: 36px;
  padding: 8px;
  background: #111; /* Phone frame color */
  box-shadow: 0 30px 60px rgba(0,0,0,.4), inset 0 0 2px rgba(255,255,255,.2);
  overflow: hidden;
  transition: transform .5s var(--ease);
}

.hero-phone img {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}

.phone-1 {
  transform: translateX(-40px) translateY(-20px) rotate(-4deg);
  z-index: 1;
}

.phone-2 {
  transform: translateX(60px) translateY(20px) rotate(4deg);
  z-index: 2;
}

.hero-phone-stack:hover .phone-1 { transform: translateX(-60px) translateY(-30px) rotate(-6deg); }
.hero-phone-stack:hover .phone-2 { transform: translateX(80px) translateY(30px) rotate(6deg); }

.hero-phone-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(99,102,241,.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

/* ---------- Section Styles ---------- */
.section {
  padding: 100px 0;
}

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

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

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-500);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }

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

[data-theme="dark"] .feature-card:hover {
  border-color: var(--primary-700);
}

.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

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

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- Screenshots Carousel ---------- */
.carousel-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  overflow: hidden;
}

.carousel-section .section-header h2,
.carousel-section .section-header p,
.carousel-section .section-label {
  color: #fff;
}
.carousel-section .section-header p { opacity: .8; }
.carousel-section .section-label { color: var(--accent-400); }

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 40px 24px 60px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: center;
  transition: transform .4s var(--ease);
}

.carousel-slide img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
  object-fit: cover;
}

.carousel-slide:hover img {
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .25s var(--ease);
}
.carousel-btn:hover {
  background: rgba(255,255,255,.3);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.carousel-dot.active {
  background: var(--accent-400);
  width: 28px;
  border-radius: 5px;
}

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

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

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

/* ---------- About / CTA ---------- */
.about-cta {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,.2), transparent 70%);
  border-radius: 50%;
}

.about-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: .85;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
}

.disclaimer {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: .85rem;
  opacity: .7;
  margin-top: 24px;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 30px;
}

[data-theme="dark"] .footer {
  background: #060A14;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
}

.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: .9rem;
  padding: 4px 0;
  color: var(--gray-400);
  transition: color .25s var(--ease);
}
.footer-links a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

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

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .25s var(--ease);
}
.footer-social a:hover {
  background: var(--primary-600);
  color: #fff;
}

/* ---------- Privacy Policy Page ---------- */
.policy-page {
  padding-top: calc(var(--nav-height) + 40px);
  min-height: 100vh;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lang-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.lang-btn:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
}
.lang-btn.active {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600);
}
[data-theme="dark"] .lang-btn.active {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  line-height: 1.9;
  font-size: .95rem;
  margin-bottom: 60px;
}

.policy-content h1 {
  font-size: 1.8rem;
  color: var(--primary-700);
  margin-bottom: 24px;
}
[data-theme="dark"] .policy-content h1 {
  color: var(--primary-300);
}

.policy-content h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary-600);
}
[data-theme="dark"] .policy-content h2 {
  color: var(--primary-400);
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.policy-content a {
  color: var(--primary-500);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-phone { width: 220px; margin: 0 auto; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid::before { display: none; }

  .why-grid { grid-template-columns: 1fr; }

  .about-cta { padding: 48px 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .policy-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .carousel-slide { width: 200px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
