/* Cypta — Official Site (matches Android app branding) */

:root {
  --cypta-cream: #FFF6B3;
  --cypta-cream-light: #FFFBE0;
  --cypta-orange: #F28C28;
  --cypta-orange-dark: #C96E12;
  --cypta-orange-soft: rgba(242, 140, 40, 0.4);
  --cypta-navy: #1B2A4A;
  --cypta-navy-muted: #4A5A78;
  --cypta-card: #FFFFFF;
  --cypta-stroke: rgba(27, 42, 74, 0.08);

  --bg: var(--cypta-cream-light);
  --bg-alt: var(--cypta-cream);
  --bg-card: var(--cypta-card);
  --bg-elevated: #FFFFFF;
  --text: var(--cypta-navy);
  --text-muted: var(--cypta-navy-muted);
  --text-dim: #6B7A94;
  --accent: var(--cypta-orange);
  --accent-dark: var(--cypta-orange-dark);
  --accent-glow: rgba(242, 140, 40, 0.3);
  --border: var(--cypta-stroke);
  --border-hover: rgba(27, 42, 74, 0.16);
  --screen-gradient: linear-gradient(180deg, var(--cypta-cream-light) 0%, var(--cypta-cream) 100%);
  --radius: 12px;
  --radius-lg: 18px;
  --font-display: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--screen-gradient);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--cypta-orange-dark);
}

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

.container-narrow {
  max-width: 760px;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }

.accent-text {
  color: var(--cypta-orange);
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cypta-navy-muted);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cypta-navy-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--cypta-orange-soft);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--cypta-orange);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  color: #fff;
  background: var(--cypta-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--cypta-navy);
  border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
  color: var(--cypta-navy);
  border-color: var(--cypta-orange);
  background: rgba(242, 140, 40, 0.08);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 251, 224, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cypta-navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 42, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 42, 74, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--cypta-orange);
  top: -10%;
  right: -10%;
  opacity: 0.12;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--cypta-cream);
  bottom: 0;
  left: -15%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 1.5rem 0 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cypta-orange);
}

.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cypta-orange);
}

.hero-stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Trusted */
.trusted {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partner-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.partner-track span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 6rem 0;
}

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

.section-dark {
  background: var(--cypta-navy);
  color: var(--cypta-cream-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cypta-cream-light);
}

.section-dark .section-lead,
.section-dark p {
  color: rgba(255, 251, 224, 0.75);
}

.section-dark .eyebrow-light {
  color: var(--cypta-orange);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 3px 12px rgba(27, 42, 74, 0.06);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--cypta-orange-soft);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Split sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse .split-content {
  order: 2;
}

.split-reverse .split-visual {
  order: 1;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cypta-orange);
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: 260px;
  background: var(--bg-card);
  border: 2px solid var(--border-hover);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 24px 64px rgba(27, 42, 74, 0.15), 0 0 0 1px rgba(27, 42, 74, 0.05) inset;
  color: var(--cypta-navy);
}

.mock-header {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--cypta-navy);
}

.mock-search {
  background: var(--cypta-cream-light);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.mock-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  color: var(--text-muted);
}

.mock-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, hsl(var(--hue) 70% 50%), hsl(var(--hue) 70% 35%));
}

.mock-banner {
  background: var(--cypta-orange);
  border-radius: 8px;
  padding: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

/* Device stack */
.device-stack {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  position: absolute;
  border: 2px solid var(--border-hover);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: 0 16px 48px rgba(27, 42, 74, 0.12);
}

.device-phone {
  width: 100px;
  height: 180px;
  border-radius: 16px;
  left: 10%;
  transform: rotate(-8deg);
  z-index: 3;
}

.device-tablet {
  width: 140px;
  height: 190px;
  border-radius: 14px;
  z-index: 2;
}

.device-tv {
  width: 200px;
  height: 120px;
  border-radius: 8px;
  right: 5%;
  top: 20%;
  transform: rotate(4deg);
  z-index: 1;
}

.device::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(242, 140, 40, 0.12), rgba(27, 42, 74, 0.06));
}

/* Platform grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 251, 224, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 140, 40, 0.4);
}

.platform-card p {
  color: rgba(255, 251, 224, 0.7);
}

.platform-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cypta-orange);
  letter-spacing: 0.05em;
}

.platform-card h3 {
  margin: 0.75rem 0 0.5rem;
}

.platform-card p {
  font-size: 0.9375rem;
}

/* Metrics */
.metrics {
  padding: 4rem 0;
  background: var(--cypta-orange);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.metric-unit {
  font-size: 2rem;
}

.metric-block p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  max-width: 240px;
  margin: 0 auto;
}

/* Testimonial */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cypta-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 3px 12px rgba(27, 42, 74, 0.06);
}

.testimonial p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  display: block;
}

.testimonial span {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.case-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.case-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.04);
}

.case-item strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.case-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* About visual */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(27, 42, 74, 0.06);
  transition: border-color 0.3s;
}

.about-card:hover {
  border-color: var(--cypta-orange-soft);
}

.about-stat {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--cypta-orange);
  display: block;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.04);
}

.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 251, 224, 0.12);
}

.section-dark .faq-item summary {
  color: var(--cypta-cream-light);
}

.section-dark .faq-item p {
  color: rgba(255, 251, 224, 0.7);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s;
}

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

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Contact */
.contact-section {
  background: var(--bg-alt);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details a {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-details span {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 3px 12px rgba(27, 42, 74, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form label span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  background: var(--cypta-cream-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  transition: border-color 0.2s;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-links h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-dim);
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  color: var(--accent);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--cypta-navy);
  border: 1px solid var(--cypta-orange);
  color: var(--cypta-cream-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  z-index: 200;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(27, 42, 74, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .split-section,
  .split-reverse,
  .contact-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-reverse .split-content,
  .split-reverse .split-visual {
    order: unset;
  }

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

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  .nav-links .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-stats {
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
