*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FFFFFF;
  --surface: #F7F7F7;
  --accent: #C94B00;
  --accent2: #E85D00;
  --text: #0A0A0A;
  --muted: #555555;
  --border: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5rem;
  background: #ffffff;
  border-bottom: 2px solid rgba(201, 75, 0, 0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}

.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A0A0A;
}

.nav-logo-name span {
  color: var(--accent);
}

.nav-slogan {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.6rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(201, 75, 0, 0.3);
}

.nav-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 75, 0, 0.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 6rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-box {
  width: 100%;
  max-width: 480px;
  height: 380px;
  border-radius: 12px;
  border: 2px solid rgba(201,75,0,0.12);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(201,75,0,0.1);
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(201,75,0,0.3);
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,75,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 0.9rem 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
/* ── PAGE HERO ── */
.page-hero {
  padding: 10rem 5rem 5rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-hero-content h1 {
  font-family: 'Syne', sans-serif;
   font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.2rem;
  max-width: 650px;
}

.page-hero-content h1 span { color: var(--accent); }

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── MISSION VISION ── */
.mv-section {
  padding: 5rem;
  background: var(--surface);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mv-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.mv-card:hover {
  box-shadow: 0 8px 32px rgba(201,75,0,0.08);
  transform: translateY(-4px);
}

.mv-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mv-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STORY ── */
.story-section {
  padding: 5rem;
  background: #FFFFFF;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.story-text h2 span { color: var(--accent); }

.story-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.story-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.story-num span { color: var(--text); }

.story-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 5rem;
  background: var(--surface);
}

.why-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--text);
}

.why-section h2 span { color: var(--accent); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(201,75,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(201,75,0,0.2);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
/* ── PRODUCTS ── */
.products-section {
  padding: 5rem;
  background: #FFFFFF;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(201,75,0,0.1);
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: rgba(201,75,0,0.3);
  background: #fff8f5;
}

.product-tag {
  display: inline-block;
  background: rgba(201,75,0,0.1);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  width: fit-content;
}

.product-icon {
  font-size: 2.5rem;
}

.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.product-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 5rem;
  background: var(--surface);
}

.how-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--text);
}

.how-section h2 span { color: var(--accent); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover {
  box-shadow: 0 8px 32px rgba(201,75,0,0.08);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201,75,0,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
/* ── INVESTORS ── */
.market-section {
  padding: 5rem;
  background: #FFFFFF;
}

.market-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--text);
}

.market-section h2 span { color: var(--accent); }

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.market-card:hover {
  box-shadow: 0 8px 32px rgba(201,75,0,0.08);
  transform: translateY(-4px);
}

.market-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.market-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.market-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── OUR PRODUCT PAGE ── */
.op-hero {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 8rem 5rem 5rem !important;
}

.op-hero-badge-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
}

.op-badge {
  background: var(--surface);
  border: 2px solid rgba(201,75,0,0.2);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 140px;
}

.op-badge span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.op-badge {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* WHAT IT DOES */
.op-what {
  padding: 5rem;
  background: var(--surface);
}

.op-what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.op-what-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.op-what-text h2 span { color: var(--accent); }

.op-what-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.op-image-box {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #fff8f5 0%, #fde8d8 100%);
  border-radius: 12px;
  border: 2px solid rgba(201,75,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 20px 60px rgba(201,75,0,0.08);
}

/* FEATURES */
.op-features {
  padding: 5rem;
  background: #FFFFFF;
}

.op-features h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

.op-features h2 span { color: var(--accent); }

.op-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.op-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.op-feature-card:hover {
  box-shadow: 0 8px 32px rgba(201,75,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(201,75,0,0.2);
}

.op-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.op-feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.op-feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* HOW IT WORKS */
.op-how {
  padding: 5rem;
  background: var(--surface);
}

.op-how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

.op-how h2 span { color: var(--accent); }

.op-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.op-step {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.op-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(201,75,0,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.op-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.op-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.op-step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* CTA */
.op-cta {
  padding: 6rem 5rem;
  background: #0A0A0A;
  text-align: center;
}

.op-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.op-cta h2 span { color: var(--accent); }

.op-cta p {
  color: #888884;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
/* ── GALLERY ── */
.op-gallery {
  padding: 5rem;
  background: #FFFFFF;
}

.op-gallery h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.op-gallery h2 span { color: var(--accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-img {
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img img:hover {
  transform: scale(1.03);
}

.gallery-img.placeholder {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px dashed rgba(201,75,0,0.2);
  cursor: pointer;
}

.gallery-img.placeholder span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── VIDEO ── */
.op-video {
  padding: 5rem;
  background: var(--surface);
}

.op-video h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.op-video h2 span { color: var(--accent); }

.video-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.placeholder-video {
  height: 420px;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(201,75,0,0.3);
  cursor: pointer;
}

.placeholder-video span {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

.placeholder-video p {
  font-size: 0.85rem;
  color: #888884;
}
/* ── CONTACT ── */
.contact-section {
  padding: 5rem;
  background: #FFFFFF;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-form-wrap h2 span { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,75,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #AAAAAA;
}

/* CONTACT INFO */
.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-info h2 span { color: var(--accent); }

.contact-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: rgba(201,75,0,0.2);
  box-shadow: 0 4px 16px rgba(201,75,0,0.06);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-card a,
.contact-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--accent); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* CONTACT BOTTOM CTA */
.contact-cta {
  padding: 6rem 5rem;
  background: #0A0A0A;
  text-align: center;
}

.contact-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.contact-cta h2 span { color: var(--accent); }

.contact-cta p {
  color: #888884;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
/* ── FOOTER ── */
.footer {
  background: #0A0A0A;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-name {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.875rem;
  color: #888884;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col ul li a,
.footer-links-col ul li span {
  font-size: 0.875rem;
  color: #888884;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #555550;
}
/* ── ACTIVE NAV ── */
.nav-links a.active {
  color: var(--accent) !important;
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100% !important;
}
/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR SCROLL EFFECT ── */
nav.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-bottom-color: rgba(201,75,0,0.25);
}

/* ── SMOOTH PAGE LOAD ── */
body {
  animation: pageFadeIn 0.4s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTON TRANSITIONS ── */
.btn-primary, .btn-ghost, .nav-cta {
  transition: all 0.2s ease !important;
}

/* ── SMOOTH IMAGE HOVER ── */
.gallery-img img {
  transition: transform 0.4s ease !important;
}

/* ── CARD TRANSITIONS ── */
.mv-card, .why-card, .product-card, 
.step-card, .op-feature-card, .contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  /* NAVBAR */
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* HERO */
  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-image {
    width: 100%;
  }

  .hero-image-box {
    max-width: 100%;
    height: 250px;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 7rem 1.5rem 3rem !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  .op-hero-badge-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .op-badge {
    min-width: 100px;
  }

  /* GRIDS → SINGLE COLUMN */
  .mv-grid,
  .why-grid,
  .products-grid,
  .op-features-grid,
  .market-grid,
  .team-grid,
  .gallery-grid,
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* TWO COLUMN LAYOUTS → SINGLE */
  .about-inner,
  .story-inner,
  .invest-inner,
  .op-what-inner,
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* HOW IT WORKS STEPS */
  .op-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .op-step-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 0 auto;
  }

  /* FORM */
  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* SECTIONS PADDING */
  section,
  .mv-section,
  .story-section,
  .why-section,
  .products-section,
  .how-section,
  .op-what,
  .op-features,
  .op-how,
  .op-gallery,
  .op-video,
  .market-section,
  .invest-section,
  .contact-section,
  .investor-cta,
  .contact-cta,
  .op-cta {
    padding: 3rem 1.5rem !important;
  }

  /* FOOTER */
  .footer-top {
    padding: 3rem 1.5rem !important;
  }

  .footer-bottom {
    padding: 1.5rem !important;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* HEADINGS */
  h1, h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }

  /* HERO STATS */
  .stat-num {
    font-size: 1.8rem;
  }

  /* INVESTOR CTA */
  .investor-cta,
  .contact-cta {
    padding: 3rem 1.5rem !important;
  }

  .investor-cta-actions,
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* TABLET */
@media (max-width: 1024px) and (min-width: 769px) {

  nav {
    padding: 1.2rem 2rem;
  }

  .mv-grid,
  .why-grid,
  .op-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .products-grid,
  .steps-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero,
  section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .footer-top,
  .footer-bottom {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.3rem 0.6rem;
  transition: border-color 0.2s;
}

.hamburger:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu ul li a {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--accent);
}

.mobile-menu.open {
  display: block;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
/* ── FINAL POLISH ── */

/* Smooth cursor on all clickable elements */
button, a { cursor: pointer; }

/* Better link transitions */
a { transition: color 0.2s ease; }

/* Subtle orange left border on cards hover */
.mv-card:hover,
.why-card:hover,
.op-feature-card:hover {
  border-left: 3px solid var(--accent) !important;
}

/* Nicer input focus */
input, textarea {
  transition: all 0.2s ease;
}

/* Page sections smooth entry */
.page-hero {
  animation: pageFadeIn 0.5s ease both;
}

/* Better scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent2);
}

/* Selection color */
::selection {
  background: rgba(201, 75, 0, 0.2);
  color: var(--text);
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}
a.nav-cta {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.nav-logo-name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0A0A0A;
}

.nav-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}