/* ============================================================
   PRECISION MOUNT & MEDIA — Premium stylesheet
   No frameworks · Static-safe · GitHub Pages
   ============================================================ */

/* Inter font via Google Fonts (subset, fast) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── 1. Design tokens ─────────────────────────────────────── */
:root {
  --c-bg:        #07090f;
  --c-surface:   #0d1120;
  --c-panel:     rgba(255,255,255,0.055);
  --c-panel-hi:  rgba(255,255,255,0.08);
  --c-border:    rgba(255,255,255,0.10);
  --c-border-hi: rgba(255,255,255,0.18);
  --c-text:      rgba(255,255,255,0.93);
  --c-muted:     rgba(255,255,255,0.62);
  --c-muted2:    rgba(255,255,255,0.42);

  /* Light section tokens */
  --c-light-bg:      #ffffff;
  --c-light-alt:     #f4f6f9;
  --c-light-neutral: #eef1f5;
  --c-dark-text:     #0f1624;
  --c-dark-muted:    #4a5568;
  --c-dark-muted2:   #718096;
  --c-light-border:  rgba(0,0,0,0.09);
  --c-light-card:    #ffffff;
  --c-light-card-border: rgba(0,0,0,0.10);

  --accent:      #1a8cff;
  --accent-cyan: #00d7ff;
  --accent-glow: rgba(0,180,255,0.22);
  --accent-grad: linear-gradient(135deg, #1a8cff 0%, #00d7ff 100%);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.30);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.40);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.55);
  --shadow-light-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-light-md: 0 6px 24px rgba(0,0,0,0.10);
  --glow-blue:   0 0 40px rgba(26,140,255,0.18);
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  28px;
  --r-pill:999px;
  --fs-xs:  11px;
  --fs-sm:  13px;
  --fs-base:15px;
  --fs-md:  17px;
  --fs-lg:  20px;
  --fs-xl:  24px;
  --fs-2xl: 30px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10:40px;
  --space-12:48px;
  --space-16:64px;
  --section-pad: 110px;
  --max-w: 1140px;
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
  --t-slow: 350ms ease;
}

/* ── 2. Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── 3. Focus ring ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 4. Typography ───────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.3px; color: var(--c-text); }

h1 { font-size: clamp(36px, 4vw, 54px); font-weight: 900; letter-spacing: -0.6px; margin: 14px 0 12px; }
h2 { font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; letter-spacing: -0.4px; }
h3 { font-size: var(--fs-lg); font-weight: 700; }

.muted  { color: var(--c-muted); }
.muted2 { color: var(--c-muted2); }
.tiny   { font-size: var(--fs-sm); }
.micro  { font-size: var(--fs-sm); color: var(--c-muted2); margin-top: var(--space-4); }
.micro a { color: var(--c-muted); }
.micro a:hover { color: var(--c-text); text-decoration: none; }
.dot    { opacity: 0.45; padding: 0 10px; }

/* Light-section text overrides */
.section-light .tiny,
.section-light-alt .tiny,
.section-light-neutral .tiny,
.section-light .micro,
.section-light-alt .micro,
.section-light-neutral .micro { color: var(--c-dark-muted2); }
.section-light .micro a,
.section-light-alt .micro a { color: var(--c-dark-muted); }

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

/* ── 5. Layout ───────────────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

.section     { padding: var(--section-pad) 0; }
.section-alt {
  background: rgba(255,255,255,0.025);
  border-top:    1px solid rgba(255,255,255,0.055);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

/* ── Section contrast system ─────────────────────────────── */
.section-light {
  background: var(--c-light-bg);
  color: var(--c-dark-text);
  padding: var(--section-pad) 0;
}
.section-light-alt {
  background: var(--c-light-alt);
  color: var(--c-dark-text);
  padding: var(--section-pad) 0;
}
.section-light-neutral {
  background: var(--c-light-neutral);
  color: var(--c-dark-text);
  padding: var(--section-pad) 0;
}

/* Typography overrides in light sections */
.section-light h2,
.section-light h3,
.section-light h4,
.section-light-alt h2,
.section-light-alt h3,
.section-light-alt h4,
.section-light-neutral h2,
.section-light-neutral h3,
.section-light-neutral h4 { color: var(--c-dark-text); }

.section-light .muted,
.section-light-alt .muted,
.section-light-neutral .muted { color: var(--c-dark-muted); }

.section-light .muted2,
.section-light-alt .muted2,
.section-light-neutral .muted2 { color: var(--c-dark-muted2); }

.section-light .section-head p,
.section-light-alt .section-head p,
.section-light-neutral .section-head p { color: var(--c-dark-muted); }

.section-head          { margin-bottom: var(--space-8); }
.section-head h2       { margin-bottom: var(--space-2); }
.section-head p        { font-size: var(--fs-md); color: var(--c-muted); max-width: 560px; }

.grid   { display: grid; gap: var(--space-5); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── 6. Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(7,9,15,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(7,9,15,0.90);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none !important;
}
.brand-logo {
  width: 72px; height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(26,140,255,0.30);
  padding: 6px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  filter: drop-shadow(0 2px 8px rgba(0,140,255,0.18));
}
.brand:hover .brand-logo {
  border-color: rgba(26,140,255,0.60);
  box-shadow: 0 0 22px rgba(26,140,255,0.30);
  transform: scale(1.04);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-weight: 800; font-size: var(--fs-lg); white-space: nowrap; letter-spacing: -0.3px; }
.brand-tag  { font-size: var(--fs-xs); color: var(--c-muted); white-space: nowrap; margin-top: 1px; }

.nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
.nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-muted);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav a:hover { background: rgba(255,255,255,0.07); color: var(--c-text); text-decoration: none; }

.header-cta { display: flex; gap: 8px; flex-shrink: 0; }

/* ── 7. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none !important;
  transition: filter var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast), transform var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent-grad);
  color: #03101e;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  filter: brightness(1.07);
  box-shadow: 0 6px 28px rgba(0,180,255,0.38);
  text-decoration: none;
}
.btn-primary:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.13);
  color: var(--c-text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); text-decoration: none; }

/* Ghost button for light/white backgrounds */
.section-light .btn-ghost,
.section-light-alt .btn-ghost,
.section-light-neutral .btn-ghost {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.14);
  color: var(--c-dark-text);
}
.section-light .btn-ghost:hover,
.section-light-alt .btn-ghost:hover,
.section-light-neutral .btn-ghost:hover {
  background: rgba(26,140,255,0.08);
  border-color: rgba(26,140,255,0.28);
  color: #1a8cff;
  text-decoration: none;
}

.btn-sm    { padding: 8px 14px; font-size: var(--fs-xs); }
.btn-lg    { padding: 16px 34px; font-size: var(--fs-md); font-weight: 800; letter-spacing: -0.1px; }
.btn-block { width: 100%; }

/* ── 8. Hero ─────────────────────────────────────────────── */
.hero {
  padding: 80px 0 56px;
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 10% 0%,  rgba(26,140,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 700px 400px at 85% 5%,  rgba(0,200,255,0.14) 0%, transparent 55%),
    linear-gradient(180deg, #070a12 0%, #0b0f1e 60%, #080c18 100%);
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
/* hero content */
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-10);
  align-items: center;
}

/* Hero photo panel */
.hero-photo-panel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(26,140,255,0.14) 0%, rgba(0,0,0,0.40) 100%);
  border: 1px solid rgba(26,140,255,0.22);
  box-shadow: var(--shadow-lg), var(--glow-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: var(--space-6);
}
.hero-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}
.hero-photo-panel-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-lg);
  background: rgba(26,140,255,0.15);
  border: 1px solid rgba(26,140,255,0.30);
  color: var(--accent-cyan);
  flex-shrink: 0;
}
.hero-photo-panel-title {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--c-text);
  margin-top: 4px;
}
.hero-photo-panel-sub {
  font-size: var(--fs-xs);
  color: var(--c-muted2);
  max-width: 200px;
  line-height: 1.5;
}
.hero-photo-panel img {
  position: relative;
  z-index: 1;
  width: 72%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(26,140,255,0.30));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(26,140,255,0.10);
  border: 1px solid rgba(26,140,255,0.25);
  color: #7dcfff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 6px #00e676;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

.lede {
  font-size: var(--fs-md);
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 520px;
}

.hero-seo-line {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.2px;
  margin-top: 6px;
  opacity: 0.88;
}

.hero-actions { margin-top: var(--space-6); display: flex; gap: 12px; flex-wrap: wrap; }

.trust-row {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
}
.trust-item {
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--c-muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.trust-item:hover { background: rgba(26,140,255,0.08); border-color: rgba(26,140,255,0.22); }

.hero-card {
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.085) 0%, rgba(255,255,255,0.038) 100%);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow-md), var(--glow-blue);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,215,255,0.5), transparent);
}
.hero-card-inner { padding: var(--space-5); }
.hero-card h2   { font-size: var(--fs-lg); margin-bottom: 4px; }

.price-cards {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
}
.price-card {
  border-radius: var(--r-md);
  padding: 12px 10px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.price-card:hover { background: rgba(26,140,255,0.10); border-color: rgba(0,215,255,0.28); transform: translateY(-2px); }

.price-title { font-size: var(--fs-xs); font-weight: 700; color: var(--c-muted2); text-transform: uppercase; letter-spacing: 0.4px; }
.price       { font-size: 24px; font-weight: 900; margin-top: 5px; }
.price-sub   { font-size: var(--fs-xs); color: var(--c-muted2); margin-top: 2px; }

.addons { margin-top: var(--space-3); display: grid; gap: 6px; }
.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  font-weight: 600;
}
.addon span:last-child { color: var(--c-text); font-weight: 700; }

/* ── 9. Feature icon row ─────────────────────────────────── */
.features {
  padding: var(--space-10) 0;
  background: var(--c-light-bg);
  border-bottom: 1px solid var(--c-light-border);
}

.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--space-5); }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-4);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.feature-item:hover {
  background: #f0f7ff;
  border-color: rgba(26,140,255,0.20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-md);
}

.feature-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(26,140,255,0.12) 0%, rgba(0,215,255,0.10) 100%);
  border: 1px solid rgba(26,140,255,0.22);
  color: #1a8cff;
  flex-shrink: 0;
}
.feature-label { font-weight: 700; font-size: var(--fs-sm); margin-top: 2px; color: var(--c-dark-text); }
.feature-desc  { font-size: var(--fs-xs); color: var(--c-dark-muted2); line-height: 1.5; }

/* ── 10. Cards ───────────────────────────────────────────── */
.card {
  padding: var(--space-6);
  border-radius: var(--r-lg);
  background: var(--c-light-card);
  border: 1px solid var(--c-light-card-border);
  box-shadow: var(--shadow-light-sm);
  transition: background var(--t-base), border-color var(--t-base),
              box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(26,140,255,0.22);
  box-shadow: var(--shadow-light-md), 0 0 0 1px rgba(26,140,255,0.10);
  transform: translateY(-4px);
}
.card h3 { margin-bottom: var(--space-2); color: var(--c-dark-text); }
.card p  { color: var(--c-dark-muted); line-height: 1.65; }

/* Card icon badge */
.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(26,140,255,0.10) 0%, rgba(0,215,255,0.08) 100%);
  border: 1px solid rgba(26,140,255,0.18);
  color: #1a8cff;
  margin-bottom: var(--space-3);
  flex-shrink: 0;
}

/* Dark variant card (for dark sections like hero card / contact) */
.card-dark {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.10);
  box-shadow: var(--shadow-sm);
}
.card-dark:hover {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.17);
  box-shadow: var(--shadow-md);
}
.card-dark h3 { color: var(--c-text); }
.card-dark p  { color: var(--c-muted); }
.card-dark::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.card-dark:hover::after { opacity: 1; }

.card-highlight {
  background: linear-gradient(155deg, rgba(26,140,255,0.06) 0%, #ffffff 60%);
  border-color: rgba(26,140,255,0.28);
  box-shadow: var(--shadow-light-sm), 0 0 0 2px rgba(26,140,255,0.08);
}
.card-highlight:hover {
  border-color: rgba(26,140,255,0.45);
  box-shadow: var(--shadow-light-md), 0 0 0 2px rgba(26,140,255,0.15);
}

.checklist { margin: var(--space-3) 0 0; padding: 0; list-style: none; display: grid; gap: 6px; color: var(--c-dark-muted); }
.checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--fs-sm); }
.card-dark .checklist { color: var(--c-muted); }
.checklist li::before {
  content: "";
  display: block;
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(0,215,255,0.14);
  border: 1px solid rgba(0,215,255,0.30);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%2300d7ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-light-border);
  color: var(--c-dark-muted);
  font-size: var(--fs-sm);
}
.line strong { color: var(--c-dark-text); font-weight: 700; font-size: var(--fs-base); }
.line:last-of-type { border-bottom: none; }
.card-dark .line { border-bottom-color: rgba(255,255,255,0.07); color: var(--c-muted); }
.card-dark .line strong { color: var(--c-text); }

/* ── 11. Pricing extras ──────────────────────────────────── */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(26,140,255,0.10) 0%, rgba(0,215,255,0.08) 100%);
  border: 1px solid rgba(26,140,255,0.22);
  color: #1a6abf;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.callout {
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1px solid rgba(26,140,255,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.callout h3  { margin-bottom: 4px; color: var(--c-dark-text); }
.callout p   { color: var(--c-dark-muted); font-size: var(--fs-sm); }
.callout-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── 12. Gallery ─────────────────────────────────────────── */
.photo {
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-light-card-border);
  background: var(--c-light-card);
  box-shadow: var(--shadow-light-sm);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.photo:hover {
  border-color: rgba(26,140,255,0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-light-md);
}

.photo-img-wrap {
  position: relative;
  width: 100%; height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0fb 0%, #dde7f5 100%);
}
.photo-img-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 2.2s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.photo-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.photo-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}
.photo-placeholder-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(26,140,255,0.12);
  border: 1px solid rgba(26,140,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #1a8cff;
}
.photo-placeholder-text {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #4a6fa5;
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
}
.photo-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.photo:hover .photo-img-wrap img { transform: scale(1.04); }

.photo figcaption {
  padding: 12px 16px;
  font-size: var(--fs-sm);
  color: var(--c-dark-muted);
  font-weight: 600;
  border-top: 1px solid var(--c-light-border);
  background: var(--c-light-card);
}

/* ── 13. Areas ───────────────────────────────────────────── */
.areas { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: var(--space-6); align-items: start; }
.areas-text p { color: var(--c-dark-muted); line-height: 1.65; margin-bottom: var(--space-5); }

.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(26,140,255,0.20);
  background: #ffffff;
  color: #2d5a8e;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  box-shadow: var(--shadow-light-sm);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.pill2:hover {
  background: #1a8cff;
  border-color: #1a8cff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,140,255,0.30);
}

.areas-card {
  padding: var(--space-6);
  border-radius: var(--r-lg);
  background: var(--c-light-card);
  border: 1px solid var(--c-light-card-border);
  box-shadow: var(--shadow-light-sm);
}
.areas-card h3 { margin-bottom: var(--space-3); color: var(--c-dark-text); }

/* ── 14. About ───────────────────────────────────────────── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.about-actions { margin-top: var(--space-5); display: flex; gap: 10px; flex-wrap: wrap; }
.about-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(26,140,255,0.08) 0%, rgba(0,215,255,0.06) 100%);
  border: 1px solid rgba(26,140,255,0.18);
  margin-bottom: var(--space-4);
}
.about-profile-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: #03101e;
  flex-shrink: 0;
}
.about-profile-name { font-weight: 700; font-size: var(--fs-sm); color: var(--c-dark-text); }
.about-profile-role { font-size: var(--fs-xs); color: var(--c-dark-muted2); }

/* ── 15. Contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-5); }

.contact-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-light-border);
  align-items: center;
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line .label { color: var(--c-dark-muted2); font-weight: 700; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-line .value { color: var(--c-dark-text); font-weight: 600; font-size: var(--fs-base); }
.contact-actions { margin-top: var(--space-5); display: grid; gap: 10px; }

.field { margin-top: var(--space-4); }
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--c-dark-muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(0,0,0,0.14);
  background: #ffffff;
  color: var(--c-dark-text);
  font-size: var(--fs-base);
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
input::placeholder, textarea::placeholder { color: #aab4c0; }
input:hover,  textarea:hover { border-color: rgba(26,140,255,0.35); }
input:focus,  textarea:focus {
  border-color: #1a8cff;
  background: #f8fbff;
  box-shadow: 0 0 0 3px rgba(26,140,255,0.12);
}
textarea { resize: vertical; min-height: 100px; }
#quoteForm .btn-primary { margin-top: var(--space-5); }

/* ── 16. FAQ Accordion ───────────────────────────────────── */
.faq       { margin-top: var(--space-10); }
.faq-title { font-size: var(--fs-xl); font-weight: 800; margin-bottom: var(--space-6); color: var(--c-dark-text); }

.faq-item {
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-light-border);
  background: #ffffff;
  box-shadow: var(--shadow-light-sm);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.faq-item + .faq-item { margin-top: 10px; }
.faq-item.open {
  border-color: rgba(26,140,255,0.30);
  background: #f8fbff;
  box-shadow: 0 4px 18px rgba(26,140,255,0.10);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: 18px var(--space-6);
  background: none;
  border: none;
  color: var(--c-dark-text);
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-question:hover { color: #1a8cff; }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #f0f4f8;
  border: 1.5px solid rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-dark-muted2);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), color var(--t-base);
}
.faq-item.open .faq-icon {
  background: rgba(26,140,255,0.12);
  border-color: rgba(26,140,255,0.30);
  color: #1a8cff;
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 380ms cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--c-dark-muted);
  font-size: var(--fs-sm);
  line-height: 1.75;
  border-top: 1px solid var(--c-light-border);
  padding-top: var(--space-4);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── 17. Footer ──────────────────────────────────────────── */
.footer {
  padding: var(--space-10) 0 100px;
  background: #07090f;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--c-text);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
}
.footer-left        { display: flex; flex-direction: column; gap: 5px; font-size: var(--fs-sm); }
.footer-left strong { font-weight: 800; font-size: var(--fs-base); color: var(--c-text); }
.footer-left span   { color: var(--c-muted2); font-size: var(--fs-xs); }
.footer-right       { display: flex; align-items: center; color: var(--c-muted2); font-size: var(--fs-sm); }
.footer-right a     { color: var(--c-muted); transition: color var(--t-fast); }
.footer-right a:hover { color: var(--c-text); text-decoration: none; }

/* ── 18. Sticky mobile CTA ───────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  padding: 10px 14px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  background: rgba(6,9,16,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: var(--fs-base);
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: filter var(--t-fast), transform var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.sticky-btn:active { transform: scale(0.97); }
.sticky-call { background: var(--accent-grad); color: #03101e; box-shadow: 0 4px 18px var(--accent-glow); }
.sticky-call:hover { filter: brightness(1.08); }
.sticky-text { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.14); color: var(--c-text); }
.sticky-text:hover { background: rgba(255,255,255,0.14); }

/* ── 19. Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  :root { --section-pad: 88px; }
}
@media (max-width: 980px) {
  .hero            { padding: 60px 0 40px; }
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-photo-panel { display: none; }
  .nav             { display: none; }
  .grid-3          { grid-template-columns: 1fr; }
  .grid-2          { grid-template-columns: 1fr; }
  .price-cards     { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .areas           { grid-template-columns: 1fr; }
  .about           { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .callout         { flex-direction: column; align-items: flex-start; }
  :root { --section-pad: 72px; }
}
@media (max-width: 680px) {
  .hero                  { padding: 44px 0 28px; }
  .brand-logo            { width: 52px; height: 52px; }
  .brand-name            { font-size: var(--fs-base); }
  .header-cta .btn-ghost { display: none; }
  .sticky-cta            { display: flex; }
  .footer-inner          { flex-direction: column; align-items: flex-start; }
  .footer                { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
  .features-grid         { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-cards           { grid-template-columns: 1fr; }
  h1                     { font-size: clamp(30px, 8vw, 40px); }
  :root { --section-pad: 56px; }
}
@media (max-width: 420px) {
  .trust-row     { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .brand-tag     { display: none; }
}

/* ── 20. Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
