/* Clear Cut Creative — v4 Final */
/* Fonts loaded via <link> in HTML head — no @import here */

:root {
  --bg: #0B0D12;
  --bg-raised: #10131A;
  --bg-card: #161A24;
  --bg-card-hover: #1C2030;
  --bg-accent: #1A2242;
  --bg-surface: #111520;
  --bg-blue-card: #173060;
  --blue: #2D7AE8;
  --blue-bright: #5B9CF5;
  --blue-dim: #1F5FBF;
  --blue-glow: rgba(45, 122, 232, 0.12);
  --blue-glow-md: rgba(45, 122, 232, 0.18);
  --blue-border: rgba(45, 122, 232, 0.25);
  --yellow: #F5B731;
  --yellow-soft: #FCC846;
  --white: #FFFFFF;
  --text: #B8C5DA;
  --text-muted: #7A8BA8;
  --text-dim: #4A5568;
  --border: #1E2338;
  --border-light: #2A3050;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 8px 32px rgba(45, 122, 232, 0.15);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
  --ease: 250ms ease;
  --ease-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: #0B0D12; background: #0B0D12;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-bright); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--yellow); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font); color: var(--white); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 1.5rem; }
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.text-center { text-align: center; }

.section-label {
  display: inline-block; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--blue-bright); background: var(--blue-glow);
  padding: 0.375rem 1rem; border-radius: 99px; margin-bottom: 1.25rem;
  border: 1px solid var(--blue-border);
}

.section-sub { font-size: 1.125rem; color: var(--text-muted); max-width: 580px; margin: 0.75rem auto 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Animations ── */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow); }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gridPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-family: var(--font); font-size: 1rem; font-weight: 600;
  border-radius: var(--radius); border: none; cursor: pointer; transition: all var(--ease);
  text-decoration: none; line-height: 1.2; min-height: 50px; white-space: nowrap;
}

.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-dim); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn--secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn--secondary:hover { border-color: var(--blue); color: var(--blue-bright); background: var(--blue-glow); }

.btn--yellow { background: var(--yellow); color: var(--bg); font-weight: 700; }
.btn--yellow:hover { background: var(--yellow-soft); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245, 183, 49, 0.2); }

.btn--large { padding: 1.1rem 2.5rem; font-size: 1.125rem; min-height: 56px; }
.btn--ghost { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--blue); color: var(--white); }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 480px) { .btn-group { flex-direction: column; } .btn-group .btn { width: 100%; } }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 13, 18, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; transition: border-color var(--ease), background var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(11, 13, 18, 0.96); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}

.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 36px; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color var(--ease);
  padding: 0.5rem 0; position: relative;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transition: transform var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--white); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Mobile menu */
.menu-toggle {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white); position: relative; transition: background 0.15s;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; width: 22px; height: 2px; background: var(--white); left: 0; transition: transform 0.2s;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg); padding: 2rem; z-index: 999;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
  display: block; padding: 1rem 0; font-size: 1.125rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn { margin-top: 1.5rem; text-align: center; }

/* ── Hero ── */
.hero {
  padding: calc(72px + 4rem) 0 4rem; position: relative; overflow: hidden;
  min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0B0D12 0%, #0F1420 40%, #121B30 70%, #0B0D12 100%);
  background-size: 200% 200%;
  animation: heroShift 15s ease-in-out infinite;
}
@keyframes heroShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@media (min-width: 768px) { .hero { padding: calc(72px + 6rem) 0 6rem; } }

.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(45, 122, 232, 0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(45, 122, 232, 0.03) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none; animation: gridPulse 8s ease-in-out infinite;
}

.hero::after {
  content: ''; position: absolute; top: -20%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45, 122, 232, 0.08) 0%, transparent 55%);
  border-radius: 50%; pointer-events: none; animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute; bottom: -10%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 183, 49, 0.04) 0%, transparent 55%);
  border-radius: 50%; pointer-events: none; animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero h1 { margin-bottom: 1.25rem; animation: fadeUp 0.8s var(--ease-slow) both; }
.hero h1 .hl { color: var(--yellow); display: block; }

.hero-sub {
  font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8;
  animation: fadeUp 0.8s var(--ease-slow) 0.15s both;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }

.hero .btn-group { animation: fadeUp 0.8s var(--ease-slow) 0.25s both; }

.hero-img {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  animation: fadeUp 0.8s var(--ease-slow) 0.35s both;
}
.hero-img img { width: 100%; display: block; }

.hero-micro {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 1.75rem;
  animation: fadeUp 0.8s var(--ease-slow) 0.3s both;
}
.hero-trust-line {
  font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem;
}
.hero-trust-line svg { color: var(--blue-bright); flex-shrink: 0; }

.hero-phone {
  font-size: 0.875rem; color: var(--text-dim); margin-top: 0.5rem;
  animation: fadeUp 0.8s var(--ease-slow) 0.35s both;
}
.hero-phone a { color: var(--text-muted); font-weight: 500; transition: color var(--ease); }
.hero-phone a:hover { color: var(--white); }

/* ── Trust Strip ── */
.trust-strip {
  padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
  border-radius: var(--radius); transition: background var(--ease);
}
.trust-item:hover { background: rgba(45, 122, 232, 0.06); }

.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--blue-glow-md);
  border: 1px solid var(--blue-border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--blue-bright);
}
.trust-item p { font-size: 0.875rem; font-weight: 600; color: var(--white); margin: 0; }

/* ── Package Cards ── */
.pkg-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch;
}
@media (min-width: 768px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.pkg {
  background: #161A24; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem; display: flex; flex-direction: column;
  transition: all var(--ease); position: relative; box-shadow: var(--shadow-card);
}
.pkg:hover {
  border-color: var(--border-light); background: var(--bg-card-hover);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}

.pkg--feat {
  border-color: var(--blue); background: linear-gradient(170deg, var(--bg-accent) 0%, var(--bg-blue-card) 100%);
  box-shadow: var(--shadow-blue);
}
.pkg--feat:hover { border-color: var(--blue-bright); box-shadow: 0 12px 48px rgba(45, 122, 232, 0.2); }
@media (min-width: 768px) {
  .pkg--feat { transform: scale(1.04); }
  .pkg--feat:hover { transform: scale(1.04) translateY(-4px); }
}

.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--bg); font-size: 0.8125rem; font-weight: 700;
  padding: 0.375rem 1.2rem; border-radius: 99px; text-transform: uppercase;
  letter-spacing: 0.05em; white-space: nowrap; box-shadow: 0 4px 12px rgba(245, 183, 49, 0.25);
}

.pkg h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.pkg-descriptor { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; font-style: italic; }
.pkg-price { font-size: 2.75rem; font-weight: 800; color: var(--yellow); line-height: 1.1; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .pkg-price { font-size: 2rem; } }

.pkg-price-note {
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg-list { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.pkg-list li {
  padding: 0.5rem 0; font-size: 0.875rem; color: var(--text); display: flex; align-items: center; gap: 0.625rem;
}
.pkg-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--blue-glow-md); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232D7AE8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pkg .btn { width: 100%; }

/* ── Why Cards ── */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-card {
  background: #161A24; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; transition: all var(--ease); box-shadow: var(--shadow-card);
}
.why-card:hover { border-color: var(--blue); background: var(--bg-card-hover); transform: translateY(-2px); }

.why-icon {
  width: 48px; height: 48px; background: var(--blue-glow-md); border: 1px solid var(--blue-border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright); margin-bottom: 1.25rem;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ── Bridge ── */
.bridge {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 0; background: var(--bg-raised);
}
.bridge-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.bridge-inner h2 { margin-bottom: 1rem; }
.bridge-inner p {
  font-family: var(--font-serif); font-size: 1.125rem; color: var(--text-muted);
  font-style: italic; line-height: 1.9;
}

/* ── Service Cards (ongoing) ── */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.svc {
  background: linear-gradient(170deg, #142952 0%, #0F2040 100%);
  border: 1px solid var(--blue-border); border-radius: var(--radius-xl);
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: all var(--ease); box-shadow: var(--shadow-card);
}
.svc:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-blue); }

.svc h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.svc-pricing {
  margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-pricing .setup { font-size: 1.125rem; font-weight: 700; color: var(--white); }
.svc-pricing .setup-label { font-size: 0.875rem; color: var(--text-muted); margin-left: 0.25rem; }
.svc-pricing .monthly {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--yellow); line-height: 1.2; margin-top: 0.35rem;
}
.svc-pricing .monthly-label { font-size: 0.875rem; color: var(--text-muted); font-weight: 400; }

.svc-includes {
  font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue-bright); margin-bottom: 0.5rem;
}
.svc-list { list-style: none; padding: 0; margin: 0 0 1.75rem; flex: 1; }
.svc-list li {
  padding: 0.375rem 0; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.78);
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.65;
}
.svc-list li::before {
  content: ''; width: 6px; height: 6px; flex-shrink: 0; background: var(--blue-bright);
  border-radius: 50%; margin-top: 7px;
}
.svc .btn { width: 100%; }

/* ── Media / Video ── */
.media-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }

.media-card {
  background: #161A24; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; transition: all var(--ease); box-shadow: var(--shadow-card);
}
.media-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.media-card .video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000;
}
.media-card .video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.media-card-body { padding: 1.25rem 1.5rem; }
.media-card-body h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.media-card-body p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center; padding: 2rem 1.5rem; background: #161A24;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all var(--ease); box-shadow: var(--shadow-card);
}
.step:hover { border-color: var(--blue-border); background: var(--bg-card-hover); }

.step-num { font-size: 2rem; font-weight: 800; color: var(--blue); opacity: 0.4; line-height: 1; margin-bottom: 0.75rem; }
.step h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── Calendly ── */
.cal-wrap {
  background: #161A24; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 1.25rem; margin-top: 2rem; box-shadow: var(--shadow-card);
}
.calendly-inline-widget { border-radius: var(--radius); overflow: hidden; }
.cal-reassurance { font-size: 0.875rem; color: var(--text-dim); margin-top: 0.75rem; font-style: italic; }

/* ── Contact Strip ── */
.contact-strip {
  border-top: 1px solid var(--border); padding: 3rem 0; background: var(--bg-raised);
}
.cs-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
@media (min-width: 768px) {
  .cs-inner { flex-direction: row; justify-content: center; gap: 2rem; text-align: left; }
}
.cs-inner p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 500;
  color: var(--white); transition: color var(--ease);
}
.contact-link:hover { color: var(--blue-bright); }
.contact-link svg { color: var(--blue); flex-shrink: 0; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem; font-family: var(--font); font-size: 1rem;
  color: var(--white); background: var(--bg-surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color var(--ease), box-shadow var(--ease); min-height: 50px;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); outline: none; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }

.form-success {
  display: none; text-align: center; padding: 3rem 1.5rem; background: #161A24;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--yellow); margin-bottom: 0.5rem; }

/* ── Contact Info ── */
.ci-block {
  background: #161A24; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-card);
}
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--blue-glow-md);
  border: 1px solid var(--blue-border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--blue-bright);
}
.ci-item p { font-size: 0.875rem; margin: 0; }
.ci-item a { color: var(--white); font-weight: 500; }
.ci-item a:hover { color: var(--blue-bright); }

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .checklist { grid-template-columns: 1fr 1fr; } }

.checklist li {
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text);
  padding: 0.625rem 1rem; background: #161A24; border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color var(--ease);
}
.checklist li:hover { border-color: var(--blue-border); }
.checklist li::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--blue-glow-md); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D7AE8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Tags ── */
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.tag {
  background: #161A24; border: 1px solid var(--border); border-radius: 99px;
  padding: 0.55rem 1.3rem; font-size: 0.875rem; color: var(--text); font-weight: 500;
  transition: all var(--ease);
}
.tag:hover { border-color: var(--blue); color: var(--white); background: var(--blue-glow); }

/* ── Split ── */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

/* ── Page Header ── */
.page-header { padding: calc(72px + 4rem) 0 3rem; position: relative; background: linear-gradient(160deg, #0B0D12 0%, #0F1525 50%, #101830 100%); background-size: 200% 200%; animation: heroShift 20s ease-in-out infinite; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(45, 122, 232, 0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(45, 122, 232, 0.03) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; }

/* ── Footer ── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.5rem 0 1.5rem; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-brand img { height: 28px; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
@media (min-width: 768px) { .footer-contact { justify-content: flex-end; } }
.footer-contact a { font-size: 0.875rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 1.5rem; padding-top: 1.5rem;
  text-align: center; font-size: 0.8125rem; color: var(--text-dim);
}

/* ── BG variants ── */
.bg-raised { background: #10131A; }
.bg-surface { background: #111520; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; background: var(--blue); color: var(--white);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm); z-index: 10000; font-size: 0.875rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ── Mobile ── */
@media (max-width: 767px) {
  .hero { min-height: auto; padding-top: calc(72px + 2.5rem); padding-bottom: 2.5rem; }
  .section { padding: 3.5rem 0; }
  .bridge { padding: 3rem 0; }
  .pkg { padding: 1.75rem 1.5rem; }
  .svc { padding: 1.5rem 1.25rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .nav-mobile, .menu-toggle { display: none; }
  body { color: #000; background: #fff; }
  h1, h2, h3, h4 { color: #000; }
  .section { padding: 1rem 0; }
  a { color: #000; }
}
