*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-accent: #f093fb;
  --color-earth-brown: #8b7355;
  --color-earth-dark: #5c4033;
  --color-forest: #4a6741;
  --color-forest-light: #6b8f5e;
  --color-terracotta: #c87941;
  --color-olive: #808000;
  --color-sand: #d4c4a8;
  --color-sand-light: #f5f0e8;
  --color-white: #ffffff;
  --color-off-white: #fafaf7;
  --color-dark: #2c2418;
  --color-dark-soft: #3d3226;
  --color-text: #3a3128;
  --color-text-light: #6b5e50;
  --color-text-muted: #8a7e70;
  --color-border: rgba(139, 115, 85, 0.15);
  --color-card-bg: rgba(255, 255, 255, 0.92);
  --color-card-hover: rgba(255, 255, 255, 0.98);

  --gradient-mesh-1:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(102, 126, 234, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(118, 75, 162, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(240, 147, 251, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(74, 103, 65, 0.2) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #f5f0e8 0%, #ede6d8 50%, #e8dfd0 100%);

  --gradient-mesh-2:
    radial-gradient(
      ellipse at 70% 30%,
      rgba(102, 126, 234, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(200, 121, 65, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #f5f0e8 0%, #ede6d8 100%);

  --gradient-mesh-hero:
    radial-gradient(
      ellipse at 25% 45%,
      rgba(102, 126, 234, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(118, 75, 162, 0.3) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 55% 85%,
      rgba(240, 147, 251, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 5% 80%,
      rgba(74, 103, 65, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 95% 60%,
      rgba(200, 121, 65, 0.15) 0%,
      transparent 45%
    ),
    linear-gradient(160deg, #ede6d8 0%, #f5f0e8 30%, #e8dfd0 70%, #ddd4c4 100%);

  --gradient-text: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-accent)
  );
  --gradient-btn: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  --gradient-btn-hover: linear-gradient(135deg, #5a72d8, #6a3f96);

  --font-primary:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.08);
  --shadow-lg: 0 8px 30px rgba(44, 36, 24, 0.1);
  --shadow-xl: 0 16px 50px rgba(44, 36, 24, 0.12);
  --shadow-card: 0 4px 20px rgba(44, 36, 24, 0.07);
  --shadow-card-hover: 0 8px 35px rgba(44, 36, 24, 0.12);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --max-width: 1200px;
  --header-height: 72px;
}

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--gradient-mesh-1);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
  color: var(--color-secondary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-btn);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  color: var(--color-white);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(102, 126, 234, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1.35rem;
  z-index: 1001;
}

.logo:hover {
  color: var(--color-dark);
}

.logo-icon {
  font-size: 1.5rem;
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(102, 126, 234, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
  background: var(--gradient-mesh-hero);
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  background: rgba(118, 75, 162, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
}

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

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.3),
    rgba(118, 75, 162, 0.2),
    transparent
  );
  border-radius: var(--radius-full);
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

.hero-image img {
  position: relative;
  z-index: 1;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: floatUp 6s ease-in-out infinite;
}

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

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
}

.proof-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.proof-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-5xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

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

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  background: var(--color-card-hover);
}

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

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(102, 126, 234, 0.08);
  border-radius: var(--radius-md);
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots {
  padding: var(--space-5xl) 0;
  background: var(--gradient-mesh-2);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 2px solid var(--color-border);
}

.screenshot-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: var(--space-5xl) 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.feature-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-checks li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.feature-checks li span {
  color: var(--color-forest);
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  display: block;
}

/* ============================================
   TRUST
   ============================================ */
.trust {
  padding: var(--space-5xl) 0;
  background: var(--gradient-mesh-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 103, 65, 0.1);
  border-radius: var(--radius-md);
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--space-5xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition-fast);
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: "";
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
  line-height: 1;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--space-5xl) 0;
  background: var(--gradient-mesh-2);
}

.newsletter-inner {
  position: relative;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}

.newsletter-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(118, 75, 162, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.newsletter-inner .section-header {
  position: relative;
  z-index: 1;
}

.newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: 520px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary);
  outline: none;
}

.newsletter-hint {
  width: 100%;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--space-5xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.contact-card a,
.contact-card address {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-card a:hover {
  color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.footer-brand .logo:hover {
  color: var(--color-white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-white);
}

.footer-contact address {
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-age {
  margin-top: var(--space-xs);
  font-size: 0.8rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top.visible {
  display: flex;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-inner a {
  color: var(--color-accent);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--gradient-mesh-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 1.5px,
    transparent 1.5px
  );
  background-size: 35px 35px;
  pointer-events: none;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  position: relative;
}

.legal-hero p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  position: relative;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg);
}

.legal-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.legal-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: var(--space-2xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-card ul,
.legal-card ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.legal-card li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.legal-card ol li {
  list-style: decimal;
}

.legal-card a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-card strong {
  color: var(--color-dark);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

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

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image img {
    max-width: 300px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-xl);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-off-white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl)
      var(--space-xl);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
    gap: var(--space-xs);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

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

  .legal-card {
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    max-width: 220px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .newsletter-form input[type="email"] {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
