﻿/* ===========================
   SHOPYWAVE
   style.css — Design System
   =========================== */

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

/* ── Tokens — Light mode (default) ── */
:root {
  --orange:      #36a239;
  --gold:        #36a239;
  --orange-dark: #095d2d;
  --orange-rgb:  54,162,57;
  --gold-rgb:    54,162,57;
  --grad:        linear-gradient(135deg, #36a239 0%, #095d2d 100%);
  --grad-soft:   linear-gradient(135deg, rgba(54,162,57,.08) 0%, rgba(9,93,45,.08) 100%);

  --ink:         #071A02;
  --ink-2:       #1A3A08;
  --ink-3:       #2D5518;
  --muted:       #567A40;
  --border:      #C2E8B8;
  --surface:     #F0FFF0;
  --white:       #FFFFFF;
  --ink-bg:      #071A02;
  --header-bg:   rgba(255,255,255,.92);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
  --shadow-orange: 0 8px 32px rgba(54,162,57,.28);

  --header-h:    72px;
  --max-w:       1200px;
  --section-py:  96px;
  --font:        'Inter', system-ui, sans-serif;
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  transition: background-color .3s ease, color .3s ease;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange); background: rgba(var(--orange-rgb),.08);
  padding: 4px 12px; border-radius: 100px;
}

.section-label {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; display: block;
}

h1,h2,h3,h4 { line-height: 1.18; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-3); line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 13px 28px;
  border-radius: var(--radius); transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 18px rgba(var(--orange-rgb),.32);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--border); color: var(--ink-2);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(var(--orange-rgb),.04); transform: translateY(-2px);
}
.btn-ghost { color: var(--orange); font-weight: 600; }
.btn-ghost:hover { gap: 12px; }
.btn-lg { font-size: 16px; padding: 16px 36px; border-radius: var(--radius); }
.btn-grad {
  background: var(--grad); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-grad:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(var(--orange-rgb),.38); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; display: block; }
.footer-brand .logo-img { height: 48px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: var(--orange); background: rgba(var(--orange-rgb),.06); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: ''; width: 8px; height: 5px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%236B7280'/%3E%3C/svg%3E") no-repeat center; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 13.5px; border-radius: var(--radius-sm);
  color: var(--ink-2);
}
.dropdown-menu a:hover { background: var(--surface); color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 10px 20px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--header-h);
  background: var(--white); z-index: 99; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 500; color: var(--ink-2);
  padding: 14px 16px; border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--orange); background: var(--surface); }
.mobile-nav .mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -160px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--orange-rgb),.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-3);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; font-weight: 700;
}
.hero-title { margin-bottom: 20px; }
.hero-title .accent { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { color: var(--ink-3); font-size: 1.1rem; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.hero-visual { position: relative; }
.hero-visual-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); display: block;
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-bar-inner { display: flex; align-items: center; gap: 48px; justify-content: center; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-size: 14px; font-weight: 700; color: var(--ink-3); opacity: .55;
  transition: opacity .2s; letter-spacing: -.01em;
}
.trust-logo:hover { opacity: 1; }

/* ── Sections ── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { max-width: 580px; margin: 0 auto; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all .25s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(var(--orange-rgb),.2); transform: translateY(-4px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius); background: var(--surface);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; padding: 8px;
  overflow: hidden;
}
.feature-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.feature-icon svg { width: 56px; height: 56px; display: block; color: var(--orange); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Terminal Showcase ── */
.terminals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.terminal-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column;
  min-height: 440px;
}
.terminal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.terminal-card-img {
  width: 100%; aspect-ratio: 1 / 1; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 320px;
}
.terminal-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.terminal-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.terminal-card-body {
  transition: background-color .3s ease, color .3s ease; padding: 28px; flex: 1; display: flex; flex-direction: column; }
.terminal-card-body h3 { margin-bottom: 8px; }
.terminal-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.terminal-specs { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.terminal-spec-tag {
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  background: var(--surface); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 100px;
}

/* ── Partners Marquee ── */
.partner-strip {
  padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: transparent;
}
.partner-marquee { overflow: hidden; }
.partner-track {
  display: flex; align-items: center; gap: 150px;
  will-change: transform; animation: marquee 20s linear infinite;
}
.partner-track img {
  width: 100px; height: 100px;
  object-fit: contain; display: block; filter: grayscale(.05); opacity: .98;
}
.partner-marquee:hover .partner-track { animation-play-state: paused; }

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

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
}


/* ── Industries ── */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .22s ease; display: flex; flex-direction: column; padding: 20px;
}
.industry-card:hover { box-shadow: var(--shadow); border-color: var(--orange); transform: translateY(-3px); }
.industry-icon { width: 36px; height: 36px; color: var(--orange); flex-shrink: 0; margin-bottom: 12px; }
.industry-icon svg { width: 100%; height: 100%; }
.industry-content { padding: 0; flex: 1; display: flex; flex-direction: column; }
.industry-content h3 { margin-top: 0; margin-bottom: 8px; }
.industry-image-wrap { width: calc(100% + 40px); height: 180px; overflow: hidden; display: block; margin: -20px -20px 20px -20px; }
.industry-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-card h3 { font-size: 1rem; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin:0; }
.benefits-list { display: flex; flex-direction: column; gap: 32px; }
.benefit-item { display: flex; gap: 18px; align-items: flex-start; }
.benefit-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--grad);
  color: white; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.benefits-visual {
  background: var(--ink-bg); border-radius: var(--radius-xl); padding: 32px;
  position: relative; overflow: hidden;
}
.benefits-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--orange-rgb),.2) 0%, transparent 70%);
}
.bv-header { color: white; font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.bv-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.bv-row:last-child { border-bottom: none; }
.bv-label { color: rgba(255,255,255,.6); font-size: 13px; }
.bv-value { color: white; font-weight: 700; font-size: 14px; }
.bv-value.green { color: #4ade80; }
.bv-value.orange { color: var(--gold); }
.bv-progress { margin-top: 20px; }
.bv-progress-label { display: flex; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 12px; margin-bottom: 6px; }
.bv-progress-bar { height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.bv-progress-fill { height: 100%; border-radius: 3px; background: var(--grad); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--ink-3); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--ink);
  text-align: left; cursor: pointer; transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s;
  padding: 0; color: var(--ink-3);
}
.faq-icon svg { width: 14px; height: 14px; display: block; }
.faq-item.open .faq-icon { background: var(--orange); color: white; border-color: var(--orange); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Final CTA ── */
.cta-section {
  background: var(--grad); padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
}
.cta-section h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-section .btn-white {
  background: white; color: var(--orange); font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.cta-section .btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.25); }
.cta-section .btn-outline-white {
  border: 2px solid rgba(255,255,255,.5); color: white;
}
.cta-section .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); transform: translateY(-3px); }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ── Footer ── */
.site-footer { background: var(--ink-bg); color: rgba(255,255,255,.7); }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { transition: color .2s; }
.footer-bottom-links a:hover { color: white; }

/* ── Back to top ── */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: white; font-size: 18px;
  box-shadow: var(--shadow-orange); border: none; cursor: pointer;
  opacity: 0; transform: translateY(16px); transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--ink-bg); padding: 80px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--orange-rgb),.15) 0%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero .tag { background: rgba(var(--orange-rgb),.2); color: var(--gold); margin-bottom: 20px; }
.page-hero h1 { color: white; margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,.7); margin-bottom: 32px; }

/* ── About ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-visual {
  background: var(--grad); border-radius: var(--radius-xl); padding: 48px; color: white; position: relative; overflow: hidden;
}
.about-story-visual::before {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.08);
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { }
.about-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: 13px; opacity: .75; }

.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  padding: 36px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border); text-align: center;
}
.mvv-icon { font-size: 40px; margin-bottom: 16px; display: flex; justify-content: center; }
.mvv-icon svg { width: 40px; height: 40px; display: block; color: var(--orange); }
.mvv-card h3 { margin-bottom: 12px; }
.mvv-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; }
.timeline-dot {
  width: 42px; height: 42px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 13px; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.timeline-year { font-size: 11px; font-weight: 700; color: var(--orange); margin-bottom: 4px; letter-spacing: .06em; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 28px; font-weight: 800; margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.value-icon { font-size: 28px; flex-shrink: 0; display: flex; align-items: center; }
.value-icon svg { width: 28px; height: 28px; display: block; color: var(--orange); }
.value-item h3 { font-size: 1rem; margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Solutions ── */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.solution-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; transition: all .25s ease;
}
.solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(var(--orange-rgb),.2); }
.solution-card-header {
  padding: 28px; background: var(--grad-soft);
  border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 16px;
}
.solution-icon { font-size: 40px; display: flex; align-items: center; }
.solution-icon svg { width: 40px; height: 40px; display: block; color: var(--orange); }
.solution-card-header h3 { margin-bottom: 6px; }
.solution-card-header p { font-size: 13px; color: var(--muted); }
.solution-card-body {
  transition: background-color .3s ease, color .3s ease; padding: 24px; }
.solution-features { display: flex; flex-direction: column; gap: 10px; }
.solution-feature { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-3); }
.solution-feature::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius); background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--muted); }
.contact-info-item a { color: var(--orange); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 14px; color: var(--ink);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(var(--orange-rgb),.1);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 12px; color: #ef4444; margin-top: 4px; display: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius);
  padding: 16px; text-align: center; color: #16a34a; font-weight: 600; font-size: 15px; margin-top: 12px;
}

/* ── Map placeholder ── */
.map-placeholder {
  height: 360px; background: var(--surface); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--border); gap: 12px; color: var(--muted); font-size: 14px;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%; height: 100%; border: 0;
}
.map-placeholder-icon { font-size: 48px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── Terminal page ── */
.terminal-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.terminal-hero-visual {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 60%);
  border-radius: var(--radius-xl); padding: 40px;
  display: flex; align-items: center; justify-content: center; font-size: 120px;
  aspect-ratio: 1; position: relative; overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-orange);
}
.terminal-hero-visual img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.terminal-hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 40%, rgba(255,255,255,.26) 0%, transparent 38%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,.16) 0%, transparent 34%);
  mix-blend-mode: overlay;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--grad); color: white; padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; }
.spec-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.spec-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.spec-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
.spec-table tr:nth-child(even) td { background: var(--surface); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--muted); font-weight: 500; }
.spec-table td:last-child { color: var(--ink-2); font-weight: 600; }

/* ── Policy pages ── */
.policy-content { max-width: 100%; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--ink); }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.policy-content p { font-size: 15px; color: var(--ink-3); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { margin: 12px 0 20px 20px; }
.policy-content ul li { font-size: 15px; color: var(--ink-3); line-height: 1.8; list-style: disc; margin-bottom: 6px; }

.btn-primary { color: #071A02; }

/* ── Counter ── */
.counter { transition: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-inner { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .terminals-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .benefits-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 64px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }

  .features-grid { grid-template-columns: 1fr; }
  .terminals-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-inner { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .terminal-hero-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
}

