@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --navy: #0D1F38;
  --navy-soft: #14294a;
  --blue: #1B7FE8;
  --blue-light: #5AB4FF;
  --off-white: #F5F8FC;
  --white: #FFFFFF;
  --ink: #0A1728;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 4px 16px rgba(13, 31, 56, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 31, 56, 0.16);
  --shadow-lg: 0 24px 64px rgba(13, 31, 56, 0.28);
  --shadow-glow: 0 0 32px rgba(27, 127, 232, 0.45);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ==========================================================================
   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; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 10vw, 120px); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.section-lead { font-size: 1.1rem; color: #4A5A72; max-width: 620px; }
.center { text-align: center; margin-inline: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* ==========================================================================
   Loading screen
   ========================================================================== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 120px; height: 120px; position: relative; }
.loader-logo img { width: 100%; height: 100%; object-fit: contain; animation: loaderPulse 1.4s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(90,180,255,0.5)); }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 1; } }
.loader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; }
.loader-bar::after {
  content: ''; display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  animation: loaderFill 1.7s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13, 31, 56, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(27,127,232,0.35);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 46px; transition: height 0.4s var(--ease); }
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  position: relative; padding-block: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--blue-light); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: none; color: var(--white); font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 1100; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--navy); z-index: 1050;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-primary { display: none; }
}
@media (min-width: 961px) { .nav-phone { display: inline-block; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden; padding-top: 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,31,56,0.88) 0%, rgba(13,31,56,0.72) 45%, rgba(13,31,56,0.96) 100%);
}
#particle-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; color: var(--white); max-width: 820px; }
.hero-content h1 {
  color: var(--white); font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.04; margin-bottom: 18px;
}
.hero-typing-line { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.6rem); color: var(--blue-light); margin-bottom: 26px; min-height: 1.4em; }
.hero-typing-line .cursor { display: inline-block; width: 2px; background: var(--blue-light); margin-left: 3px; animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.trust-pills span { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.trust-pills span::before { content: '✓'; color: var(--blue-light); font-weight: 900; }
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.7); animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-band { background: var(--navy); border-block: 1px solid rgba(90,180,255,0.18); overflow: hidden; padding-block: 18px; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; white-space: nowrap; opacity: 0.9; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band { background: linear-gradient(120deg, var(--blue), #1668c0); padding-block: 56px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--white); }
.stat-label { color: rgba(255,255,255,0.9); font-weight: 600; margin-top: 6px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ==========================================================================
   Parallax
   ========================================================================== */
.parallax-section { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.parallax-bg { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.parallax-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,31,56,0.82), rgba(13,31,56,0.66)); }
.parallax-content { position: relative; z-index: 2; width: 100%; }

/* ==========================================================================
   Glass cards (Industries)
   ========================================================================== */
.glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.glass-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius); padding: 32px 24px; text-align: center; color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.glass-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.16); }
.glass-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.glass-card h3 { color: var(--white); font-size: 1.05rem; }
@media (max-width: 860px) { .glass-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .glass-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Split panels
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split-panel { position: relative; display: flex; align-items: center; padding: 64px; overflow: hidden; }
.split-panel.dark { background: var(--navy); }
.split-panel.light { background: var(--off-white); }
.split-panel .parallax-bg { opacity: 0.32; }
.split-panel.light .parallax-bg { opacity: 0.16; }
.split-panel-content { position: relative; z-index: 2; max-width: 440px; }
.split-panel.dark h2, .split-panel.dark p { color: var(--white); }
.split-panel.dark li { color: rgba(255,255,255,0.92); }
.split-panel ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.split-panel li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.split-panel li::before { content: '⚡'; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split-panel { padding: 48px 28px; } }

/* ==========================================================================
   Tilt cards (Why choose)
   ========================================================================== */
.tilt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tilt-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid #EAEFF6;
  transform-style: preserve-3d; transition: box-shadow 0.3s var(--ease);
  will-change: transform;
}
.tilt-card:hover { box-shadow: var(--shadow-lg); }
.tilt-card .icon { font-size: 2.2rem; margin-bottom: 16px; color: var(--blue); }
.tilt-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tilt-card p { color: #5A6B82; font-size: 0.94rem; }
@media (max-width: 960px) { .tilt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tilt-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-section {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(90,180,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,180,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-md); isolation: isolate;
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  background: linear-gradient(180deg, rgba(13,31,56,0) 30%, rgba(13,31,56,0.96) 100%);
}
.service-price {
  position: absolute; top: 16px; right: 16px; background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; padding: 6px 14px; border-radius: 999px;
}
.service-card-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.service-card-overlay .btn { opacity: 0; transform: translateY(12px); transition: all 0.4s var(--ease); margin-top: 10px; }
.service-card:hover .service-card-overlay .btn { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Before / After slider
   ========================================================================== */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-md); cursor: ew-resize; user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--blue-light);
  box-shadow: 0 0 16px rgba(90,180,255,0.8); pointer-events: none; transform: translateX(-50%);
}
.ba-handle::after {
  content: '⟺'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue);
  color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow-glow); border: 3px solid var(--white);
}
.ba-label { position: absolute; top: 14px; background: rgba(13,31,56,0.85); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 4px; }
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }
.ba-caption { text-align: center; margin-top: 14px; font-family: var(--font-head); font-weight: 700; color: var(--white); }
@media (max-width: 760px) { .ba-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Team parallax + credentials
   ========================================================================== */
.team-cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.cred-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); padding: 22px; text-align: center; color: var(--white); backdrop-filter: blur(8px); }
.cred-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
@media (max-width: 860px) { .team-cred-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid #EAEFF6; }
.stars { color: #F5B700; letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.testimonial-card p { color: #445269; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
.testimonial-author span { display: block; font-weight: 500; font-family: var(--font-body); color: #7A8AA0; font-size: 0.8rem; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Service area tags
   ========================================================================== */
.city-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-tag {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(90,180,255,0.35); color: var(--white);
  padding: 10px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.city-tag:hover { background: rgba(27,127,232,0.25); border-color: var(--blue-light); transform: translateY(-2px); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); position: relative; padding-top: 4px; }
.site-footer::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 64px 40px; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.04em; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--blue-light); }
.footer-logo { height: 40px; margin-bottom: 14px; }
.footer-tagline { font-family: var(--font-head); font-weight: 700; color: var(--blue-light); margin-bottom: 16px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { font-size: 0.75rem; background: rgba(255,255,255,0.08); padding: 5px 10px; border-radius: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.footer-social a:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 22px; text-align: center; font-size: 0.82rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Quote modal
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,23,40,0.72); backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--white); border-radius: var(--radius); width: 100%; max-width: 640px;
  max-height: 88vh; overflow-y: auto; padding: 40px; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; font-size: 1.6rem; color: #8A98AC; line-height: 1; }
.modal-close:hover { color: var(--navy); }
.modal-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-card > p { color: #5A6B82; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #DCE4EF; border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.show { display: block; }
.form-success .check {
  width: 70px; height: 70px; border-radius: 50%; background: #E8F7EE; color: #2FA84F;
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 18px;
  animation: popIn 0.5s var(--ease);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .modal-card { padding: 28px 22px; } }

/* ==========================================================================
   Mobile floating CTA
   ========================================================================== */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: none; }
.mobile-cta-inner { display: grid; grid-template-columns: 1fr 1fr; background: var(--blue); box-shadow: 0 -8px 24px rgba(0,0,0,0.2); }
.mobile-cta-inner a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 8px; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.mobile-cta-inner a:first-child { background: rgba(0,0,0,0.14); }
@media (max-width: 760px) { .mobile-cta { display: block; } body { padding-bottom: 60px; } }

/* ==========================================================================
   Ripple
   ========================================================================== */
.ripple {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998;
  background: radial-gradient(circle, rgba(90,180,255,0.55) 0%, rgba(27,127,232,0.15) 60%, transparent 70%);
  transform: translate(-50%, -50%) scale(0); animation: rippleOut 0.75s var(--ease) forwards;
}
@keyframes rippleOut { to { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.up { transform: translateY(48px); }
.reveal.left { transform: translateX(-48px); }
.reveal.right { transform: translateX(48px); }
.reveal.scale { transform: scale(0.92); }
.reveal.in { opacity: 1; transform: translate(0,0) scale(1); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative; padding-top: 160px; padding-bottom: 90px; background: var(--navy); overflow: hidden;
  color: var(--white); text-align: center;
}
.page-hero .parallax-scrim { background: linear-gradient(180deg, rgba(13,31,56,0.9), rgba(13,31,56,0.75)); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin-inline: auto; margin-top: 14px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--blue-light); margin-bottom: 14px; font-weight: 600; }

/* ==========================================================================
   Tabs (Services page)
   ========================================================================== */
.tab-nav { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.tab-btn {
  padding: 12px 26px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  border: 1.5px solid #DCE4EF; color: var(--navy); transition: all 0.3s var(--ease);
}
.tab-btn.active, .tab-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.service-detail {
  display: grid; grid-template-columns: 340px 1fr; gap: 32px; background: var(--white);
  border: 1px solid #EAEFF6; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.service-detail img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.service-detail-body { padding: 30px 30px 30px 0; display: flex; flex-direction: column; gap: 12px; }
.service-detail-body .price-tag { font-family: var(--font-head); font-weight: 800; color: var(--blue); font-size: 1.1rem; }
.service-detail-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-block: 6px; }
.service-detail-body li { font-size: 0.9rem; color: #4A5A72; }
.service-detail-body li::before { content: '✓ '; color: var(--blue); font-weight: 700; }
@media (max-width: 760px) { .service-detail { grid-template-columns: 1fr; } .service-detail-body { padding: 0 22px 26px; } .service-detail-body ul { grid-template-columns: 1fr; } }

/* ==========================================================================
   Industries page
   ========================================================================== */
.industry-block { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.industry-tags span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 7px 16px; border-radius: 999px; font-size: 0.82rem; }

/* ==========================================================================
   Gallery page
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border-radius: 999px; border: 1.5px solid #DCE4EF; font-weight: 700; font-family: var(--font-head); font-size: 0.85rem; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-label {
  position: absolute; inset: auto 0 0 0; padding: 14px; background: linear-gradient(180deg, transparent, rgba(13,31,56,0.9));
  color: var(--white); font-weight: 700; font-family: var(--font-head); font-size: 0.85rem;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-phone-big { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--blue); display: block; margin-block: 10px 20px; }
.hours-table { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hours-table div { display: flex; justify-content: space-between; border-bottom: 1px dashed #DCE4EF; padding-bottom: 8px; font-size: 0.94rem; }
.hours-table span:first-child { font-weight: 600; }
.map-embed {
  aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid #E4EBF4;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-form-card { background: var(--white); border: 1px solid #EAEFF6; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   About page
   ========================================================================== */
.founder-block { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: center; }
.founder-block img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 30px; }
.value-card .icon { font-size: 2.4rem; color: var(--blue); margin-bottom: 12px; }
.guarantee-block { background: var(--off-white); border-radius: var(--radius); padding: 40px; text-align: center; border: 1px solid #E4EBF4; }
@media (max-width: 860px) { .founder-block, .values-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   Focus ring
   Nothing in this stylesheet defined one, so keyboard and switch users had no
   visible indicator anywhere on the site. Brand blue is the only value in the
   palette that clears the WCAG 2.2 1.4.11 minimum of 3:1 against every surface
   here -- white 4.00, off-white 3.76, navy 4.13, navy-soft 3.63 -- so a single
   ring reads correctly on the light sections and on the dark hero, nav, mobile
   menu and footer alike. (blue-light and amber both fail on white.)

   :focus-visible, not :focus, so the ring appears for keyboard and assistive
   navigation without outlining every mouse click. The 2px offset keeps the
   ring on the page background rather than against a same-colour button fill.
--------------------------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* The input rules above set outline:none and lean on a border-colour change
   alone. Equal specificity, declared later, so the ring wins on keyboard
   focus while the border tint still shows on mouse focus. */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* misc */
.mt-lg { margin-top: 48px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
