/* ============ VERTEXLED — STYLES ============ */
:root {
  --bg: #0a0e17;
  --bg-alt: #0f1522;
  --surface: #141c2e;
  --surface-2: #1a2438;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --text-dim: #9aa7bd;
  --accent: #5ba3f5;
  --accent-2: #e03a3e;
  --gradient: linear-gradient(135deg, #1e6ad1 0%, #d92b30 100%);
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }

a { color: var(--accent); text-decoration: none; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(217, 43, 48, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217, 43, 48, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-phone { color: #fff; font-weight: 800; white-space: nowrap; }

/* ============ SOCIAL BAR ============ */
.social-bar { display: flex; align-items: center; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-1px); }
.social-bar-footer { margin-top: 18px; }
.social-bar-footer .social-link {
  width: 38px;
  height: 38px;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
}
.social-bar-footer .social-link svg { width: 18px; height: 18px; }
.social-bar-footer .social-link:hover { color: #fff; background: var(--surface-2); border-color: var(--accent); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-text { font-size: 1.35rem; font-weight: 900; letter-spacing: 0.03em; color: var(--text); }
.logo-accent { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s;
}
.nav a:not(.btn):hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 2px; transition: 0.2s; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: 90px 0 70px; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-glow-1 { width: 500px; height: 500px; background: var(--accent-2); top: -150px; left: -100px; }
.hero-glow-2 { width: 450px; height: 450px; background: var(--accent); bottom: -180px; right: -80px; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(91, 163, 245, 0.1);
  border: 1px solid rgba(91, 163, 245, 0.35);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-sub { color: var(--text-dim); font-size: 1.15rem; margin: 20px 0 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 44px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.stat span { color: var(--text-dim); font-size: 0.85rem; }

/* LED screen mockup (hero video frame) */
.led-screen-mock {
  background: #05080f;
  border: 10px solid #1c2536;
  border-radius: 10px;
  box-shadow: var(--shadow), 0 0 80px rgba(33, 104, 209, 0.18);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.led-screen-mock video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.led-screen-caption {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 8px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-banner {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 686;
  object-fit: cover;
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--bg-alt); border-block: 1px solid var(--border); padding: 18px 0; }
.trust-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.trust-item { font-size: 0.88rem; font-weight: 600; color: var(--text-dim); }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-note { text-align: center; color: var(--text-dim); margin-top: 36px; }

/* ============ PRODUCT CARDS ============ */
.product-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.outdoor-grid { grid-template-columns: repeat(3, 1fr); }
.video-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card, .package-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover, .package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 163, 245, 0.45);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}
.product-card.featured, .package-card.featured { border-color: rgba(224, 58, 62, 0.55); }
.best-seller {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}
.product-visual {
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pitch-label {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}
.pitch-fine  { background: radial-gradient(circle at 30% 30%, #14395c, #0a1626 70%), repeating-conic-gradient(#0e2036 0% 25%, #12283f 0% 50%); background-blend-mode: overlay; }
.pitch-mid   { background: radial-gradient(circle at 60% 40%, #113a5f, #0a1626 75%); }
.pitch-wide  { background: radial-gradient(circle at 45% 60%, #0f3050, #0a1626 75%); }
.pitch-fine::after, .pitch-mid::after, .pitch-wide::after,
.outdoor-1::after, .outdoor-2::after, .outdoor-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(91, 163, 245, 0.4) 1px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.5;
}
.pitch-mid::after { background-size: 14px 14px; }
.pitch-wide::after { background-size: 20px 20px; }
.outdoor-1 { background: linear-gradient(160deg, #123a5a 0%, #0a1626 80%); }
.outdoor-2 { background: linear-gradient(200deg, #0f4468 0%, #0a1626 85%); }
.outdoor-3 { background: linear-gradient(140deg, #0d3350 0%, #0a1626 80%); }
.outdoor-1::after { background-size: 12px 12px; background-image: radial-gradient(rgba(224, 58, 62, 0.4) 1px, transparent 1.5px); }
.outdoor-2::after { background-size: 16px 16px; background-image: radial-gradient(rgba(224, 58, 62, 0.4) 1px, transparent 1.5px); }
.outdoor-3::after { background-size: 22px 22px; background-image: radial-gradient(rgba(224, 58, 62, 0.4) 1px, transparent 1.5px); }

.product-body { padding: 24px; }
.product-body h3 { margin-bottom: 14px; }
.product-body ul { list-style: none; margin-bottom: 20px; }
.product-body li {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 5px 0 5px 22px;
  position: relative;
}
.product-body li::before { content: "•"; color: var(--accent); position: absolute; left: 6px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { color: var(--text-dim); font-size: 0.85rem; }
.price strong { color: var(--text); font-size: 1.15rem; font-weight: 800; }

/* ============ HOME THEATER ============ */
.theater-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(33, 104, 209, 0.14), transparent 60%), var(--bg-alt);
  border-block: 1px solid var(--border);
}
.theater-card {
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.theater-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.theater-body { padding: 34px 36px; }
.theater-pitches { display: inline-block; color: var(--accent); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.theater-pitches strong { color: var(--text); }
@media (max-width: 860px) {
  .theater-card { grid-template-columns: 1fr; }
  .theater-img img { height: auto; }
}

/* ============ LED WALL CALCULATOR ============ */
.calc-card {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  max-width: 1000px;
  margin: 0 auto;
}
.calc-form .form-field { margin-bottom: 18px; }
.calc-form .form-row .form-field { margin-bottom: 0; }
.calc-form .form-row { margin-bottom: 18px; }
.calc-note { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 20px; }
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}
.calc-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.calc-stat-wide { grid-column: 1 / -1; }
.calc-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}
.calc-stat strong { display: block; font-size: 1.25rem; font-weight: 900; }
.calc-stat .calc-price { font-size: 1.7rem; color: var(--accent); }
.calc-sub { display: block; color: var(--text-dim); font-size: 0.78rem; margin-top: 4px; }
.calc-preview-wrap {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.calc-preview {
  display: grid;
  gap: 2px;
  margin: 10px auto 8px;
  padding: 5px;
  background: #05080f;
  border: 4px solid #1c2536;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(33, 104, 209, 0.2);
}
.calc-cell {
  background: linear-gradient(160deg, #164470 0%, #0c2a4a 60%, #0a1626 100%);
  border-radius: 1px;
  min-height: 4px;
}
@media (max-width: 860px) {
  .calc-card { grid-template-columns: 1fr; padding: 26px 20px; }
}

/* ============ PITCH TABLE ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.pitch-table { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 640px; }
.pitch-table th, .pitch-table td { padding: 15px 20px; text-align: left; font-size: 0.92rem; }
.pitch-table thead { background: var(--surface-2); }
.pitch-table th { font-weight: 800; color: var(--accent); text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.08em; }
.pitch-table tbody tr { border-top: 1px solid var(--border); }
.pitch-table tbody tr:hover { background: rgba(91, 163, 245, 0.05); }
.pitch-table td { color: var(--text-dim); }
.pitch-table td:first-child { color: var(--text); font-weight: 700; }

/* ============ PACKAGES ============ */
.package-card { padding: 30px 26px; }
.package-img {
  display: block;
  width: calc(100% + 52px);
  margin: -30px -26px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.price-tbd { font-size: 1.25rem !important; }
.package-size { color: var(--accent); font-weight: 700; font-size: 0.9rem; margin: 8px 0 4px; }
.package-price { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 20px; }
.package-price strong { font-size: 1.9rem; color: var(--text); font-weight: 900; }
.package-card ul { list-style: none; margin-bottom: 26px; }
.package-card li { padding: 6px 0; color: var(--text-dim); font-size: 0.92rem; }

.promo-banner {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(91, 163, 245, 0.14), rgba(91, 163, 245, 0.05));
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
  font-size: 1rem;
}
.promo-banner strong { color: var(--accent); font-weight: 800; }

/* ============ IMAGE GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  padding: 0;
  background: var(--surface);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.ig-handle { color: var(--accent); font-weight: 700; }
.gallery-cta { text-align: center; margin-top: 32px; }
.gallery-item figcaption, .gallery-item .gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  text-align: left;
}
.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  padding-left: 4px;
  pointer-events: none;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 6, 12, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 76px 40px;
}
.lightbox[hidden] { display: none; }
.lightbox-content { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.lightbox-content img, .lightbox-content video {
  max-width: 100%;
  max-height: 74vh;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.lightbox-caption {
  margin-top: 14px;
  max-width: 720px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}
.lightbox-caption a { color: var(--accent); font-weight: 700; white-space: nowrap; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: color 0.15s ease;
  z-index: 2;
}
.lightbox-close:hover, .lightbox-nav:hover { color: #fff; }
.lightbox-close { top: 16px; right: 22px; font-size: 2.4rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 20px; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
@media (max-width: 680px) {
  .lightbox { padding: 52px 12px 30px; }
  .lightbox-nav { font-size: 2.4rem; padding: 10px; top: auto; bottom: 6px; transform: none; }
  .lightbox-prev { left: 22%; }
  .lightbox-next { right: 22%; }
}

/* ============ APPLICATIONS ============ */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(91, 163, 245, 0.4); }
.app-icon { font-size: 2.2rem; margin-bottom: 14px; }
.app-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.app-card p { color: var(--text-dim); font-size: 0.92rem; }
.rental-cta { text-align: center; margin-top: 40px; }

/* ============ WHY US ============ */
.why-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.why-content h2 { margin-bottom: 24px; }
.why-list { list-style: none; margin-bottom: 34px; }
.why-list li {
  padding: 12px 0 12px 34px;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.why-list li strong { color: var(--text); }
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
}
.why-visual { display: flex; flex-direction: column; gap: 22px; }
.quote-card-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #ffd54f; letter-spacing: 3px; margin-bottom: 12px; }
.quote-card-testimonial p { color: var(--text-dim); font-style: italic; margin-bottom: 14px; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--accent); }
.customers { grid-column: 1 / -1; margin-top: 30px; padding-top: 40px; border-top: 1px solid var(--border); }
.customers-img { display: block; width: 100%; max-width: 980px; margin: 0 auto; border-radius: var(--radius); }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
}
.process-step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 0.88rem; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--text-dim); }

/* ============ QUOTE SECTION ============ */
.quote-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(33, 104, 209, 0.16), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(217, 43, 48, 0.12), transparent 55%),
    var(--bg-alt);
}
.quote-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.quote-info h2 { margin-bottom: 16px; }
.quote-info p { color: var(--text-dim); margin-bottom: 28px; }
.quote-contact-list { list-style: none; }
.quote-contact-list li { padding: 9px 0; font-weight: 600; }
.quote-contact-list a { color: var(--text); }
.quote-contact-list a:hover { color: var(--accent); }

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; }
.form-note { text-align: center; color: var(--text-dim); font-size: 0.8rem; margin-top: 14px; }

/* ============ FOOTER ============ */
.footer { background: #070a11; border-top: 1px solid var(--border); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 14px; max-width: 320px; }
.footer-logo { height: 72px; width: auto; display: block; }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--text-dim); padding: 5px 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--text-dim); font-size: 0.92rem; padding-top: 5px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; color: var(--text-dim); font-size: 0.82rem; }

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(217, 43, 48, 0.45);
  transition: transform 0.15s;
}
.floating-cta:hover { transform: scale(1.06); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner, .why-inner, .quote-inner { grid-template-columns: 1fr; }
  .product-grid, .package-grid, .app-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
}

@media (max-width: 680px) {
  .product-grid, .package-grid, .app-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    z-index: 99;
  }
  .nav.open { transform: none; }
  .nav a:not(.btn) { padding: 12px 0; font-size: 1.05rem; }
  .nav .btn { margin-top: 12px; }
  .nav-toggle { display: flex; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { justify-content: center; flex-wrap: wrap; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; }
}
