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

:root {
  --bg: #0c0c0e;
  --bg-2: #0f1a12;
  --card: #18181c;
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --muted: #8e8e96;
  --red: #16cc41;
  --red-dim: rgba(22,204,65,0.15);
  --green: #16cc41;
  --green-dim: rgba(22,204,65,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--muted); font-weight: 400; }
a { color: var(--text); text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.75rem; }
section { padding: 5rem 0; }

/* ─── NAV ─── */
nav {
  background: var(--card);
  margin: 1.25rem auto 0;
  max-width: 1280px;
  border-radius: 14px;
  height: 60px;
  display: flex; align-items: center;
  border: 1px solid var(--border);
}
.nav-inner {
  width: 100%; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text);
}
.nav-logo .logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon svg { width: 16px; height: 16px; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.lang-toggle { display: flex; gap: 0.6rem; font-size: 0.88rem; color: var(--muted); }
.lang-toggle span.active { color: var(--text); font-weight: 600; }
.btn-pill {
  background: var(--red); color: var(--text);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.6rem 1.4rem; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; transition: 0.2s;
}
.btn-pill:hover { background: #129636; }
.btn-pill .dot-icon {
  width: 18px; height: 18px; border-radius: 4px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.5) 0 2px, transparent 2px 4px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 90px; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  background: var(--card); border-radius: 14px; border: 1px solid var(--border);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--text); }
.mobile-menu a:hover { color: var(--red); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 2rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #000;
}
.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid; grid-template-columns: 1fr; position: relative;
}

.hero-left {
  max-width: 520px; position: relative; z-index: 3;
}
.hero-left h1 { margin-bottom: 1.25rem; }
.hero-left p {
  font-size: 1rem; max-width: 420px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }
.btn-white {
  background: var(--text); color: var(--bg);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 1rem 1.75rem; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 0.6rem; text-transform: uppercase;
}
.dot-prefix::before {
  content: '●'; font-size: 0.6rem; color: var(--red);
}
.link-plain {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
  display: inline-flex; align-items: center; gap: 0.6rem; text-transform: uppercase;
}

/* ─── PRODUCT VISUAL ─── */
.product-stage {
  position: relative; height: 560px; margin-top: -3rem;
}
.product-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #000;
  border-radius: 18px;
}

/* Callout pills */
.callout {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: var(--text);
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border-radius: 30px;
  white-space: nowrap;
}
.callout svg { width: 14px; height: 14px; }

.callout-dark {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
}

.price-tag {
  position: absolute; z-index: 5; text-align: right;
}
.price-tag .from { font-size: 0.84rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price-tag .amount { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--text); }
.price-tag .taxes { font-size: 0.84rem; color: var(--muted); }

.spec-card {
  position: absolute; z-index: 5;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.5rem;
  min-width: 190px;
}
.spec-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.75rem; font-size: 0.88rem; font-weight: 500; color: var(--text);
  border-radius: 8px;
}
.spec-row.muted-row { color: var(--muted); background: rgba(255,255,255,0.03); }
.spec-row svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Connector lines */
.connector {
  position: absolute; z-index: 4;
  border: none; border-top: 1px dashed rgba(255,255,255,0.25);
  transform-origin: left center;
}

.bottom-bar {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: -2rem;
  font-size: 0.88rem; color: var(--muted);
}
.bottom-bar .loc { display: flex; align-items: center; gap: 0.5rem; }
.bottom-bar .fast { display: flex; align-items: center; gap: 0.5rem; }

/* ─── SECTION: SERVICE SPOTLIGHT GRID ─── */
.spotlight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.spotlight-grid.gear-grid {
  grid-template-columns: repeat(4, 1fr);
}
.spotlight-grid.spotlight-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.spotlight-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem;
  position: relative; overflow: hidden;
}
.spotlight-card-link {
  display: block; text-decoration: none; color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.spotlight-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(22,204,65,0.35);
  background: #1c1c21;
}
.spotlight-card-link:hover h3 { color: var(--red); }
.spotlight-card h3 { transition: color 0.25s ease; }
.spotlight-grid-4 .spotlight-card .tag {
  background: var(--green-dim); color: var(--green);
}
.spotlight-card .tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--red-dim); color: var(--red);
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1.25rem;
}
.spotlight-card h3 { margin-bottom: 0.6rem; }
.spotlight-card p { font-size: 0.9rem; }
.spotlight-illus { margin: 1.5rem 0; height: 120px; display: flex; align-items: center; justify-content: center; }
.spotlight-illus img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ─── PRODUCT IMAGE CARD (for services/about pages) ─── */
.img-card {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--border);
  background: #000;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-card.pad { padding: 2rem; background: #050505; }
.img-card.pad img { object-fit: contain; }

/* Smaller padding + zoomable variant for homepage spotlight cards */
.img-card.pad-sm { padding: 0.5rem; background: #050505; overflow: hidden; }
.img-card.pad-sm img {
  object-fit: contain;
  transform: scale(1.15);
  transition: transform 0.4s ease;
  will-change: transform;
}
.img-card.pad-sm:hover img {
  transform: scale(1.225);
}



/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 540px; margin: 1rem auto 0; font-size: 1rem; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red-dim); color: var(--red);
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1.1rem; border-radius: 30px; margin-bottom: 1.25rem;
}

/* ─── COLOR/PACKAGE STRIP ─── */
.package-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.package-card {
  text-align: center; padding: 2rem 1rem;
  border: 1px solid var(--border); border-radius: 16px; background: var(--card);
}
.package-swatch {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 1rem; border: 2px solid var(--border);
}

/* ─── CTA ─── */
.cta-banner {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(22,204,65,0.2) 0%, transparent 65%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 480px; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-brand p { font-size: 0.9rem; margin: 1rem 0; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.88rem; }

/* ─── SERVICE DETAIL SECTIONS (services.html) ─── */
.service-block {
  scroll-margin-top: 90px;
}
.service-block-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.service-block-grid.reverse .img-col { order: 2; }
.service-num {
  font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.1em;
}
.service-block h2 { margin: 0.5rem 0 1rem; }
.service-block p { margin-bottom: 1.25rem; }
.service-feature-list { list-style: none; margin-top: 1.25rem; }
.service-feature-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.6rem 0; font-size: 0.92rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list li svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--red);
}
.who-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.who-pill {
  background: var(--card); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 500; color: var(--text);
  padding: 0.35rem 0.9rem; border-radius: 30px;
}
.service-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* ─── PAGE HERO (services/about/contact) ─── */
.page-hero {
  padding: 8rem 0 3rem; text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 540px; margin: 0 auto; }

/* ─── QUICK NAV ─── */
.quick-nav {
  position: sticky; top: 1.25rem; z-index: 90;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 0.85rem 1.25rem; margin-bottom: 3rem;
  display: flex; gap: 0.6rem; overflow-x: auto;
}
.quick-nav a {
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  padding: 0.4rem 0.9rem; border-radius: 30px; white-space: nowrap; transition: 0.2s;
  flex-shrink: 0;
}
.quick-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* ─── ABOUT PAGE ─── */
.about-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
}
.value-card .icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card .icon-box svg { width: 22px; height: 22px; color: var(--red); }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

.compliance-row {
  display: flex; gap: 1rem; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem;
}
.compliance-row .icon-box {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--red-dim); display: flex; align-items: center; justify-content: center;
}
.compliance-row .icon-box svg { width: 20px; height: 20px; color: var(--red); }
.compliance-row h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--text); font-family: 'Sora', sans-serif; font-weight: 600; }
.compliance-row p { font-size: 0.85rem; margin: 0; }

/* ─── CONTACT PAGE ─── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
}
.contact-row {
  display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem;
}
.contact-row .icon-box {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--red-dim); display: flex; align-items: center; justify-content: center;
}
.contact-row .icon-box svg { width: 18px; height: 18px; color: var(--red); }
.contact-row .label { font-size: 0.84rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.contact-row .value { font-size: 0.95rem; color: var(--text); font-weight: 500; }

.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: #0c0c0e; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.8rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red);
}
.form-field select option { background: #1a1a1e; }
.form-field textarea { resize: vertical; min-height: 120px; }
.note-card {
  background: var(--red-dim); border: 1px solid rgba(22,204,65,0.25);
  border-radius: 12px; padding: 1.1rem 1.25rem; margin-top: 1.5rem; font-size: 0.85rem;
}
.note-card code { color: var(--red); background: rgba(22,204,65,0.12); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; }


@media (max-width: 1000px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-grid.gear-grid { grid-template-columns: repeat(2, 1fr); }
  .package-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-stage { height: 460px; }
  .callout, .spec-card, .price-tag { position: static; display: inline-block; margin: 0.5rem; }
  .connector { display: none; }
  .bottom-bar { flex-direction: column; gap: 0.5rem; align-items: flex-start; margin-top: 1rem; }
  .service-block-grid { grid-template-columns: 1fr; }
  .service-block-grid.reverse .img-col { order: 0; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-right .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .quick-nav { gap: 0.4rem; }
  .spotlight-grid.gear-grid { grid-template-columns: 1fr; }
  .spotlight-grid.spotlight-grid-4 { grid-template-columns: 1fr; }
  .package-strip { grid-template-columns: 1fr; }
}
