@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1117;
  --bg-card: #151b25;
  --bg-card-60: rgba(21,27,37,.6);
  --bg-secondary: #1a2130;
  --fg: #d4dce8;
  --fg-muted: #7a8599;
  --fg-dim: rgba(122,133,153,.5);
  --primary: #3dd8c5;
  --primary-dark: #2bb5a5;
  --border: #263040;
  --radius: 4px;
  --font-sans: 'Poppins', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

::selection { background: rgba(61,216,197,.3); color: #fff; }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media(min-width:640px){ .container { padding: 0 24px; } }
@media(min-width:1024px){ .container { padding: 0 32px; } }

.clip-bio { clip-path: polygon(12px 0,100% 0,100% calc(100% - 12px),calc(100% - 12px) 100%,0 100%,0 12px); }
.clip-bio-sm { clip-path: polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px); }

.neon-glow { text-shadow: 0 0 7px rgba(61,216,197,.8), 0 0 20px rgba(61,216,197,.4), 0 0 40px rgba(61,216,197,.2); }
.neon-box { box-shadow: 0 0 15px rgba(61,216,197,.15), inset 0 0 15px rgba(61,216,197,.05); }
.neon-line { box-shadow: 0 0 8px rgba(61,216,197,.6); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(61,216,197,.4); }
  70% { box-shadow: 0 0 0 10px rgba(61,216,197,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,216,197,0); }
}
.pulse-ring { animation: pulse-ring 2s infinite; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s, border-color .5s, backdrop-filter .5s;
}
.header.scrolled {
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61,216,197,.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media(min-width:1024px){ .header-inner { height: 80px; } }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px; border: 1px solid rgba(61,216,197,.6);
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,216,197,.1);
}
.logo-icon span { color: var(--primary); font-weight: 700; font-size: 14px; font-family: var(--font-heading); letter-spacing: .15em; }
.logo-text-main { font-size: 16px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; font-family: var(--font-heading); color: var(--fg); display: block; }
.logo-text-sub { font-size: 9px; letter-spacing: .4em; text-transform: uppercase; font-family: var(--font-mono); color: rgba(61,216,197,.8); display: block; }

.nav-desktop { display: none; align-items: center; gap: 4px; }
@media(min-width:1024px){ .nav-desktop { display: flex; } }
.nav-desktop a {
  position: relative; padding: 8px 12px; font-size: 11px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--fg-muted);
  transition: color .3s;
}
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--primary); transition: width .3s;
}
.nav-desktop a:hover::after { width: 75%; box-shadow: 0 0 8px rgba(61,216,197,.6); }

.header-cta { display: none; }
@media(min-width:1024px){ .header-cta { display: flex; align-items: center; gap: 12px; } }
.header-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid rgba(61,216,197,.3);
  background: rgba(61,216,197,.05); font-size: 12px;
  font-family: var(--font-mono); letter-spacing: .1em; color: var(--fg);
  transition: background .3s;
}
.header-cta a:hover { background: rgba(61,216,197,.1); }
.header-cta .messenger-icons { display: flex; gap: 6px; margin-left: 4px; }
.header-cta .messenger-icons a {
  border: none; padding: 4px; background: transparent;
  color: var(--primary); transition: opacity .3s;
}
.header-cta .messenger-icons a:hover { opacity: .7; }

.mobile-toggle {
  display: block; padding: 8px; background: transparent; color: var(--fg);
  border: 1px solid rgba(61,216,197,.3); transition: background .3s;
}
@media(min-width:1024px){ .mobile-toggle { display: none; } }
.mobile-toggle:hover { background: rgba(61,216,197,.1); }
.mobile-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none; flex-direction: column; padding: 16px 0;
  border-top: 1px solid rgba(61,216,197,.1);
  background: rgba(13,17,23,.95); backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; font-size: 12px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--fg-muted);
  transition: color .3s, background .3s;
}
.mobile-menu a:hover { color: var(--primary); background: rgba(61,216,197,.05); }
.mobile-phone-link {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; margin-top: 8px;
  border-top: 1px solid rgba(61,216,197,.1); color: var(--primary);
  font-size: 12px; font-family: var(--font-mono);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .3;
}
.hero-bg .overlay1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(13,17,23,.9), rgba(13,17,23,.6));
}
.hero-bg .overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, rgba(13,17,23,.8));
}
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(61,216,197,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(61,216,197,.5) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-line {
  position: absolute; height: 1px;
  background: linear-gradient(to right, transparent, rgba(61,216,197,.4), transparent);
}
.hero-line.l1 { top: 25%; left: 0; width: 160px; }
.hero-line.l2 { top: 66%; right: 0; width: 224px; }
.hero-content {
  position: relative; z-index: 10; padding-top: 96px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border: 1px solid rgba(61,216,197,.3);
  background: rgba(61,216,197,.05); margin-bottom: 40px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.hero-badge span { font-size: 10px; color: var(--primary); font-family: var(--font-mono); letter-spacing: .3em; text-transform: uppercase; }
.hero h1 span {
  display: block; font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(3rem,8vw,6.5rem); letter-spacing: .15em; line-height: .95;
}
.hero h1 .t1 { color: var(--fg); }
.hero h1 .t2 { color: var(--primary); }

.hero-tagline {
  display: flex; align-items: center; gap: 16px; margin: 8px 0 32px;
}
.hero-tagline .line { height: 1px; width: 32px; background: var(--primary); flex-shrink: 0; }
.hero-tagline .words { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-tagline .words span { font-size: 14px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-muted); transition: color .3s; }
.hero-tagline .words span:hover { color: var(--primary); }
.hero-tagline .sep { color: var(--primary); font-size: 11px; }

.hero-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 48px; max-width: 420px; font-weight: 300; }

.hero-cta { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
@media(min-width:640px){ .hero-cta { flex-direction: row; } }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; height: 56px; padding: 0 32px; font-size: 13px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .15em;
  border: none; transition: all .3s;
}
.btn-primary {
  background: var(--primary); color: var(--bg); font-weight: 600;
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(61,216,197,.3); }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1px solid rgba(61,216,197,.3);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(61,216,197,.05); }

.hero-location {
  display: flex; align-items: center; gap: 8px; color: rgba(122,133,153,.7);
  font-size: 12px; font-family: var(--font-mono); letter-spacing: .1em;
}
.hero-location svg { color: rgba(61,216,197,.6); }
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to top, var(--bg), transparent); z-index: 10;
}
.hero-corner {
  position: absolute; bottom: 128px; right: 32px; opacity: .3; display: none;
}
@media(min-width:1024px){ .hero-corner { display: block; } }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.section-label span {
  color: var(--primary); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
}
.section-label .line {
  height: 1px; flex: 1;
  background: linear-gradient(to right, rgba(61,216,197,.4), transparent);
}
.section-title {
  font-size: clamp(1.75rem,4vw,3rem); font-weight: 700;
  font-family: var(--font-heading); letter-spacing: .15em; color: var(--fg);
}
.section-sub { color: var(--fg-muted); font-size: 14px; font-weight: 300; max-width: 420px; margin-top: 12px; }

/* ===== FLEET ===== */
.fleet { padding: 80px 0 80px; position: relative; overflow: hidden; }
@media(min-width:1024px){ .fleet { padding: 128px 0; } }

.fleet-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width:640px){ .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .fleet-grid { grid-template-columns: repeat(3,1fr); } }

.fleet-card {
  position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  transition: box-shadow .5s;
}
.fleet-card:hover { box-shadow: 0 0 25px rgba(61,216,197,.3), inset 0 0 25px rgba(61,216,197,.08); }
.fleet-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s, filter .7s;
  filter: brightness(.5);
}
.fleet-card:hover img { transform: scale(1.1); filter: brightness(.75); }
.fleet-card .gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(13,17,23,.4), transparent);
}
.fleet-card .scanline-overlay {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(61,216,197,.03) 3px, rgba(61,216,197,.03) 6px);
}
.fleet-card:hover .scanline-overlay { opacity: 1; }
.fleet-card .tag {
  position: absolute; top: 16px; right: 16px; padding: 4px 12px;
  background: rgba(13,17,23,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(61,216,197,.3); font-size: 9px;
  font-family: var(--font-mono); color: var(--primary); letter-spacing: .3em;
}
.fleet-card .card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.fleet-card .accent-line {
  height: 1px; width: 32px; background: var(--primary); margin-bottom: 12px;
  transition: width .5s;
}
.fleet-card:hover .accent-line { width: 64px; }
.fleet-card h3 {
  font-size: 18px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .15em; color: var(--fg); margin-bottom: 4px;
}
.fleet-card .subtitle {
  font-size: 12px; color: var(--fg-muted); font-weight: 300;
  opacity: 0; transform: translateY(8px); transition: all .5s;
}
.fleet-card:hover .subtitle { opacity: 1; transform: translateY(0); }
.fleet-card .corner-tl, .fleet-card .corner-br {
  position: absolute; width: 12px; height: 12px; transition: all .3s;
}
.fleet-card .corner-tl { top: 12px; left: 12px; border-top: 1px solid rgba(61,216,197,.4); border-left: 1px solid rgba(61,216,197,.4); }
.fleet-card .corner-br { bottom: 12px; right: 12px; border-bottom: 1px solid rgba(61,216,197,.4); border-right: 1px solid rgba(61,216,197,.4); }
.fleet-card:hover .corner-tl, .fleet-card:hover .corner-br { width: 20px; height: 20px; border-color: rgba(61,216,197,.8); }

/* ===== SERVICES ===== */
.services { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .services { padding: 128px 0; } }
.services .bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(21,27,37,.5), var(--bg));
}
.services .dot-pattern {
  position: absolute; inset: 0; opacity: .03;
  background-image: radial-gradient(rgba(61,216,197,.5) 1px, transparent 1px);
  background-size: 30px 30px;
}
.services-header {
  display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px;
}
@media(min-width:1024px){
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .services-header .section-sub { max-width: 280px; text-align: right; }
}

.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; z-index: 2;
}
@media(min-width:768px){ .services-grid { grid-template-columns: repeat(2,1fr); } }

.service-card {
  position: relative; padding: 24px 32px; background: var(--bg-card-60);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  transition: border-color .5s, box-shadow .5s; overflow: hidden;
}
.service-card:hover {
  border-color: rgba(61,216,197,.4);
  box-shadow: 0 0 25px rgba(61,216,197,.15), inset 0 0 25px rgba(61,216,197,.05);
}
.service-card .code {
  position: absolute; top: 16px; right: 16px; font-size: 10px;
  font-family: var(--font-mono); color: rgba(61,216,197,.4);
  letter-spacing: .3em; transition: color .3s;
}
.service-card:hover .code { color: rgba(61,216,197,.6); }
.service-card .icon-box {
  width: 48px; height: 48px; border: 1px solid rgba(61,216,197,.3);
  background: rgba(61,216,197,.05); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; transition: all .3s;
}
.service-card:hover .icon-box { background: rgba(61,216,197,.1); border-color: rgba(61,216,197,.5); }
.service-card .icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.service-card h3 {
  font-size: 16px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px;
}
.service-card .desc { font-size: 14px; color: var(--fg-muted); font-weight: 300; margin-bottom: 20px; line-height: 1.6; }
.service-card ul li {
  display: flex; align-items: center; gap: 12px; color: var(--fg-muted); margin-bottom: 8px;
}
.service-card ul li .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.service-card ul li span { font-size: 12px; font-weight: 300; }
.service-card .bottom-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width .7s;
}
.service-card:hover .bottom-line { width: 100%; box-shadow: 0 0 8px rgba(61,216,197,.6); }

/* Workshop strip */
.workshop-strip {
  margin-top: 48px; position: relative; overflow: hidden; z-index: 2;
}
.workshop-strip .inner { position: relative; aspect-ratio: 3/1; min-height: 160px; }
.workshop-strip img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.5);
}
.workshop-strip .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,.8), transparent, rgba(13,17,23,.8));
}
.workshop-strip .text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.workshop-strip .text p:first-child {
  color: var(--primary); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .4em; text-transform: uppercase; margin-bottom: 8px;
}
.workshop-strip .text p:last-child {
  font-family: var(--font-heading); font-size: clamp(16px,2.5vw,24px);
  letter-spacing: .15em; color: var(--fg);
}

/* ===== WHY ===== */
.why { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .why { padding: 128px 0; } }
.why .border-line-top, .why .border-line-bottom {
  position: absolute; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(61,216,197,.2), transparent);
}
.why .border-line-top { top: 0; }
.why .border-line-bottom { bottom: 0; }
.why .section-header-center { text-align: center; margin-bottom: 64px; }
.why .section-header-center .section-sub { margin: 12px auto 0; }

.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width:640px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .why-grid { grid-template-columns: repeat(5,1fr); } }

.why-card {
  position: relative; padding: 20px; background: var(--bg-card-60);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  transition: border-color .5s, box-shadow .5s; overflow: hidden;
}
.why-card:hover {
  border-color: rgba(61,216,197,.4);
  box-shadow: 0 0 25px rgba(61,216,197,.15), inset 0 0 25px rgba(61,216,197,.05);
}
.why-card .index {
  position: absolute; top: 12px; right: 12px; font-size: 9px;
  font-family: var(--font-mono); color: rgba(61,216,197,.3); letter-spacing: .15em;
}
.why-card .icon-box {
  width: 40px; height: 40px; border: 1px solid rgba(61,216,197,.2);
  background: rgba(61,216,197,.05); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; transition: all .3s;
}
.why-card:hover .icon-box { background: rgba(61,216,197,.1); border-color: rgba(61,216,197,.4); }
.why-card .icon-box svg { width: 16px; height: 16px; color: var(--primary); }
.why-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; letter-spacing: .05em; }
.why-card p { font-size: 12px; color: var(--fg-muted); font-weight: 300; line-height: 1.6; }
.why-card .bottom-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--primary); transition: width .5s;
}
.why-card:hover .bottom-line { width: 100%; }

/* ===== PROCESS ===== */
.process { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .process { padding: 128px 0; } }
.process .dot-pattern {
  position: absolute; inset: 0; opacity: .03;
  background-image: radial-gradient(rgba(61,216,197,.6) 1px, transparent 1px);
  background-size: 20px 20px;
}
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 2;
}
@media(min-width:640px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .process-grid { grid-template-columns: repeat(4,1fr); } }

.process-card {
  position: relative; padding: 24px; background: var(--bg-card-60);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  transition: border-color .5s, box-shadow .5s; overflow: hidden;
}
.process-card:hover {
  border-color: rgba(61,216,197,.4);
  box-shadow: 0 0 25px rgba(61,216,197,.15), inset 0 0 25px rgba(61,216,197,.05);
}
.process-card .number-badge {
  position: absolute; top: -4px; left: -4px; width: 32px; height: 32px;
  background: var(--bg); border: 1px solid rgba(61,216,197,.6);
  display: flex; align-items: center; justify-content: center;
}
.process-card .number-badge span {
  font-size: 10px; font-family: var(--font-mono); color: var(--primary); font-weight: 700;
}
.process-card .icon-box {
  width: 48px; height: 48px; border: 1px solid rgba(61,216,197,.2);
  background: rgba(61,216,197,.05); display: flex; align-items: center;
  justify-content: center; margin: 8px 0 16px; transition: background .3s;
}
.process-card:hover .icon-box { background: rgba(61,216,197,.1); }
.process-card .icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.process-card h3 {
  font-size: 15px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px;
}
.process-card p { font-size: 12px; color: var(--fg-muted); font-weight: 300; line-height: 1.6; }
.process-card .bottom-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--primary); transition: width .5s;
}
.process-card:hover .bottom-line { width: 100%; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .pricing { padding: 128px 0; } }
.pricing .bg-img {
  position: absolute; inset: 0;
}
.pricing .bg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.15); }
.pricing .bg-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,.9), rgba(13,17,23,.7), rgba(13,17,23,.9));
}
.pricing .content {
  position: relative; z-index: 10; text-align: center; max-width: 600px; margin: 0 auto;
}
.pricing .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid rgba(61,216,197,.3);
  background: rgba(61,216,197,.05); margin-bottom: 32px;
  font-size: 10px; color: var(--primary); font-family: var(--font-mono);
  letter-spacing: .3em; text-transform: uppercase;
}
.pricing .section-title { margin-bottom: 24px; }
.pricing .desc { font-size: 14px; color: var(--fg-muted); font-weight: 300; max-width: 480px; margin: 0 auto 12px; }
.pricing .note { font-size: 12px; color: var(--fg-dim); font-family: var(--font-mono); margin-bottom: 40px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .faq { padding: 128px 0; } }
.faq .dot-pattern {
  position: absolute; inset: 0; opacity: .02;
  background-image: radial-gradient(rgba(61,216,197,.5) 1px, transparent 1px);
  background-size: 24px 24px;
}
.faq-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.faq .section-header-center { text-align: center; margin-bottom: 64px; }

.faq-items { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); background: rgba(21,27,37,.2);
  transition: all .5s;
}
.faq-item.open {
  border-color: rgba(61,216,197,.4);
  box-shadow: 0 0 15px rgba(61,216,197,.15), inset 0 0 15px rgba(61,216,197,.05);
  background: rgba(21,27,37,.5);
}
.faq-item:hover { border-color: rgba(61,216,197,.2); }
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px; text-align: left; background: transparent; border: none; color: var(--fg);
}
.faq-item button .left { display: flex; align-items: center; gap: 16px; }
.faq-item button .num { font-size: 10px; font-family: var(--font-mono); color: rgba(61,216,197,.5); letter-spacing: .15em; }
.faq-item button .question { font-size: 14px; font-weight: 500; }
.faq-item button .chevron {
  width: 16px; height: 16px; color: var(--primary); flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open button .chevron { transform: rotate(180deg); }
.faq-item .answer {
  max-height: 0; overflow: hidden; transition: max-height .5s ease;
}
.faq-item.open .answer { max-height: 200px; }
.faq-item .answer-inner {
  padding: 0 20px 20px 56px; font-size: 14px; color: var(--fg-muted);
  font-weight: 300; line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:1024px){ .contact { padding: 128px 0; } }
.contact .top-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(61,216,197,.2), transparent);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media(min-width:1024px){ .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  background: var(--bg-card-60); backdrop-filter: blur(8px);
  border: 1px solid var(--border); transition: border-color .3s, box-shadow .5s;
}
.contact-info-card:hover {
  border-color: rgba(61,216,197,.3);
  box-shadow: 0 0 25px rgba(61,216,197,.15), inset 0 0 25px rgba(61,216,197,.05);
}
.contact-info-card .icon-box {
  width: 40px; height: 40px; border: 1px solid rgba(61,216,197,.2);
  background: rgba(61,216,197,.05); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-info-card .icon-box svg { width: 16px; height: 16px; color: var(--primary); }
.contact-info-card .label {
  font-size: 10px; font-family: var(--font-mono); color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: .3em;
}
.contact-info-card .value { font-size: 14px; color: var(--fg); }
.contact-info-card a.value { transition: color .3s; }
.contact-info-card a.value:hover { color: var(--primary); }
.contact-info-card .messenger-inline { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.contact-info-card .messenger-inline a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 1px solid rgba(61,216,197,.2);
  background: rgba(61,216,197,.05); color: var(--primary); transition: all .3s;
}
.contact-info-card .messenger-inline a:hover {
  background: rgba(61,216,197,.15); border-color: rgba(61,216,197,.5);
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact-actions a {
  flex: 1; min-width: 120px; height: 44px; display: flex; align-items: center;
  justify-content: center; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  border: 1px solid rgba(61,216,197,.3); background: transparent;
  color: var(--fg); transition: all .3s;
}
.contact-actions a:hover { border-color: var(--primary); background: rgba(61,216,197,.05); }
.contact-actions a svg { width: 14px; height: 14px; }

.contact-image {
  margin-top: 32px; position: relative; overflow: hidden; display: none;
}
@media(min-width:1024px){ .contact-image { display: block; } }
.contact-image .inner { position: relative; aspect-ratio: 16/9; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.4); }
.contact-image .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.8), transparent, rgba(13,17,23,.4));
}
.contact-image .status {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
}
.contact-image .status .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.contact-image .status span { font-size: 10px; font-family: var(--font-mono); color: rgba(61,216,197,.8); letter-spacing: .15em; }

/* Contact form */
.contact-form-wrapper {
  background: var(--bg-card-60); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 24px 32px;
}
.contact-form-wrapper h3 {
  font-size: 16px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 4px;
}
.contact-form-wrapper .form-sub {
  font-size: 12px; color: var(--fg-muted); font-weight: 300; margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 10px; font-family: var(--font-mono);
  color: var(--fg-dim); text-transform: uppercase; letter-spacing: .3em; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; height: 40px; padding: 0 12px; background: rgba(13,17,23,.5);
  border: 1px solid var(--border); color: var(--fg); font-size: 14px;
  font-family: var(--font-sans); transition: border-color .3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(61,216,197,.5);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(122,133,153,.3);
}
.form-group textarea { height: auto; padding: 8px 12px; resize: none; }
.form-group select option { background: var(--bg); color: var(--fg); }

.form-submit {
  width: 100%; height: 48px; display: flex; align-items: center;
  justify-content: center; gap: 8px; background: var(--primary); color: var(--bg);
  border: none; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .15em; font-weight: 600;
  transition: box-shadow .3s;
}
.form-submit:hover { box-shadow: 0 0 30px rgba(61,216,197,.3); }
.form-submit svg { width: 14px; height: 14px; }

/* ===== FOOTER ===== */
.footer {
  position: relative; background: rgba(21,27,37,.3);
  border-top: 1px solid rgba(61,216,197,.1);
}
.footer .glow-top {
  position: absolute; top: 0; left: 25%; right: 25%; height: 1px;
  background: rgba(61,216,197,.2);
}
.footer-inner { padding: 48px 0 48px; }
@media(min-width:1024px){ .footer-inner { padding: 64px 0; } }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; } }

.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
  font-size: 12px; color: var(--fg-muted); font-weight: 300;
  max-width: 320px; line-height: 1.6; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; background: rgba(26,33,48,.5);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--fg-muted); transition: all .3s;
}
.footer-socials a:hover { color: var(--primary); border-color: rgba(61,216,197,.4); }
.footer-socials a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: .3em; color: rgba(61,216,197,.6); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 12px; color: var(--fg-muted); font-weight: 300; transition: color .3s;
}
.footer-col ul a:hover { color: var(--primary); }

.footer-legal-links { margin-top: 8px; }
.footer-legal-links a {
  display: inline-block; font-size: 11px; color: var(--fg-dim);
  border-bottom: 1px dotted rgba(61,216,197,.3); margin-right: 16px; margin-bottom: 6px;
  transition: color .3s;
}
.footer-legal-links a:hover { color: var(--primary); }

.footer-bottom {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(38,48,64,.5);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
@media(min-width:640px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p {
  font-size: 10px; font-family: var(--font-mono); color: rgba(122,133,153,.4); letter-spacing: .1em;
}
.footer-req { font-size: 10px; font-family: var(--font-mono); color: rgba(122,133,153,.35); letter-spacing: .05em; margin-top: 8px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(21,27,37,.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(61,216,197,.2); padding: 16px 24px;
  display: none; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 13px; color: var(--fg-muted); font-weight: 300; flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--primary); border-bottom: 1px dotted rgba(61,216,197,.4); }
.cookie-banner button {
  padding: 8px 24px; background: var(--primary); color: var(--bg);
  border: none; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .15em; font-weight: 600;
  transition: box-shadow .3s; white-space: nowrap;
}
.cookie-banner button:hover { box-shadow: 0 0 20px rgba(61,216,197,.3); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 32px; position: relative;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; background: transparent;
  border: 1px solid var(--border); color: var(--fg-muted); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.modal-close:hover { color: var(--primary); border-color: rgba(61,216,197,.4); }
.modal h2 {
  font-family: var(--font-heading); font-size: 18px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg); margin-bottom: 24px; padding-right: 40px;
}
.modal p, .modal li {
  font-size: 13px; color: var(--fg-muted); font-weight: 300; line-height: 1.7; margin-bottom: 12px;
}
.modal ul { padding-left: 20px; }
.modal li { list-style: disc; margin-bottom: 6px; }
.modal strong { color: var(--fg); font-weight: 500; }
