/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #29B6F6;
  --blue-hover: #4FC3F7;
  --blue-dark: #0288D1;
  --blue-glow: rgba(41,182,246,0.12);
  --blue-border: rgba(41,182,246,0.25);
  --black: #090909;
  --dark: #111111;
  --dark2: #161616;
  --dark3: #1E1E1E;
  --border: #252525;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --white: #F0F0F0;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--white); background: var(--black); line-height: 1; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,9,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { font-size: 0.97rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1.25; }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--blue); color: #000 !important;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue-hover) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: #000;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.97rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(41,182,246,0.22);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(41,182,246,0.32); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.97rem; text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-glow); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  padding: 12px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: 1px solid var(--blue);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--blue); color: #000; }

/* ── SECTION LAYOUT ── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue); flex-shrink: 0; }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 16px; line-height: 1.08;
}
.section-sub { color: var(--gray-light); font-size: 1rem; line-height: 1.72; max-width: 540px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex; justify-content: center; gap: 52px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; font-weight: 500; color: var(--gray-light); }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── SERVICE AREA BAR ── */
.area-bar { background: var(--blue); padding: 36px 48px; }
.area-bar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.area-bar h2 { font-size: 1.3rem; font-weight: 800; color: #000; letter-spacing: -0.02em; }
.area-bar p { font-size: 0.9rem; color: rgba(0,0,0,0.6); margin-top: 4px; }
.area-cta {
  background: #000; color: var(--blue);
  padding: 12px 26px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  white-space: nowrap; transition: background 0.2s;
}
.area-cta:hover { background: #1a1a1a; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
.form-full { grid-column: 1 / -1; }
label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: #444; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,182,246,0.1);
}
select option { background: var(--dark2); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 22px; width: 100%;
  background: var(--blue); color: #000;
  border: none; padding: 15px 28px;
  border-radius: 10px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(41,182,246,0.18);
}
.form-submit:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(41,182,246,0.28); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,182,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.82rem; color: var(--gray); margin-bottom: 18px; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-hover); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 1.05rem; color: var(--gray-light); line-height: 1.7; max-width: 560px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 48px 32px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; margin-bottom: 44px; }
.footer-brand img { height: 50px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand-name { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand-name span { color: var(--blue); }
.footer-brand p { color: var(--gray); font-size: 0.87rem; line-height: 1.65; max-width: 250px; }
.footer-col h4 { color: var(--blue); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray); text-decoration: none; font-size: 0.87rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; color: #444; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 64px 24px; }
  .page-hero { padding: 52px 24px; }
  .trust-bar { padding: 18px 24px; gap: 20px; }
  .area-bar { padding: 28px 24px; }
  .area-bar-inner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  footer { padding: 44px 24px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
}
