/* ============================================
   Top Schele — Dark Theme One-Pager
   ============================================ */

:root {
  --bg-primary: #060606;
  --bg-secondary: #0c0c0c;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --accent: #FF6B1A;
  --accent-light: #FF8533;
  --accent-hot: #FF4500;
  --accent-glow: rgba(255, 107, 26, 0.35);
  --accent-glow-soft: rgba(255, 107, 26, 0.12);
  --text-primary: #F5F5F5;
  --text-secondary: #949EAE;
  --text-muted: #5C6678;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(255, 107, 26, 0.35);
  --glass: rgba(18, 18, 18, 0.65);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --container: 1200px;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---- Global ambient background ---- */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255, 107, 26, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(255, 69, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255, 107, 26, 0.04) 0%, transparent 55%);
}

.site-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

.site-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.text-accent { color: var(--accent); }
.text-white { color: var(--text-primary); }

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-scaffold {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 48px;
}

.loader-scaffold span {
  width: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scaffoldBuild 1.2s ease-in-out infinite;
}

.loader-scaffold span:nth-child(1) { animation-delay: 0s; height: 24px; }
.loader-scaffold span:nth-child(2) { animation-delay: 0.15s; height: 36px; }
.loader-scaffold span:nth-child(3) { animation-delay: 0.3s; height: 48px; }

@keyframes scaffoldBuild {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

/* Custom hanging logo — large & visible, nav height unchanged */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1001;
  margin-bottom: -32px;
  padding: 10px 20px 14px 12px;
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.95) 0%, rgba(10, 10, 10, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 107, 26, 0.06) inset;
  transition: margin var(--transition), padding var(--transition), border-radius var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.nav-logo:hover {
  transform: translateY(2px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(255, 107, 26, 0.08);
}

.header.scrolled .nav-logo {
  margin-bottom: 0;
  padding: 6px 16px 6px 8px;
  border-top: 1px solid var(--border);
  border-radius: 12px;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 68px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 107, 26, 0.25));
  transition: width var(--transition), height var(--transition);
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.header.scrolled .nav-logo-icon {
  width: 38px;
  height: 50px;
}

.nav-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: font-size var(--transition);
  white-space: nowrap;
}

.header.scrolled .nav-logo-name {
  font-size: 1.125rem;
}

.nav-logo-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  line-height: 1.2;
  transition: opacity var(--transition), max-height var(--transition);
}

.nav-logo-services {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-top: 2px;
  opacity: 0.85;
  transition: opacity var(--transition), max-height var(--transition);
}

.header.scrolled .nav-logo-tag,
.header.scrolled .nav-logo-services {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link--cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
}

.nav-link--cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 6px 32px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 26, 0.05);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 133, 51, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-scaffold {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(280px, 30vw);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
}

.scaffold-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2.5s ease forwards;
}

.scaffold-line:nth-child(1) { animation-delay: 0.2s; }
.scaffold-line:nth-child(2) { animation-delay: 0.4s; }
.scaffold-line:nth-child(3) { animation-delay: 0.6s; }
.scaffold-line:nth-child(4) { animation-delay: 0.8s; }
.scaffold-line:nth-child(5) { animation-delay: 1s; }
.scaffold-line:nth-child(6) { animation-delay: 1.2s; }
.scaffold-line--diag { animation-delay: 1.4s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 64px;
  row-gap: 24px;
  align-items: start;
  padding: 80px 24px 100px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-title {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

.hero-stats-row {
  grid-column: 1;
  grid-row: 4;
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-stats-row .stat-card {
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
}

/* Hero gallery preview — mobile only */
.hero-gallery-preview {
  display: none;
  grid-column: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

.hero-gallery-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-gallery-thumb:hover,
.hero-gallery-thumb:active {
  border-color: var(--border-accent);
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.15);
}

.hero-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 5;
  align-self: stretch;
  position: relative;
  min-height: 0;
}

.hero-image-frame {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 107, 26, 0.08);
}

.hero-image-border {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent-hot));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame:hover img {
  transform: scale(1.04);
}

.hero-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light);
}

.hero-image-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 4;
}

.hero-float-card--1 {
  bottom: 60px;
  left: -24px;
  animation-delay: 0s;
}

.hero-float-card--2 {
  top: 80px;
  right: -20px;
  animation-delay: -2.5s;
}

.hero-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Ticker ---- */
.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 14px 0;
  max-width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.ticker-dot {
  color: var(--accent) !important;
  font-size: 0.5rem !important;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker--footer {
  border-top: none;
  padding: 12px 0;
}

.ticker--footer .ticker-track span {
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.ticker--footer .ticker-track {
  animation-duration: 40s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-subtitle {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.7;
}

.hero-actions {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
  min-width: 160px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  margin-left: -14px;
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color var(--transition);
}

.hero-scroll:hover {
  border-color: var(--accent);
}

.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -4px, 0);
  }
  30% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
  position: relative;
  overflow-x: clip;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  opacity: 0.5;
}

.section--no-divider::before {
  display: none;
}

.section--dark {
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(4px);
}

.section--accent {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 107, 26, 0.06) 0%, transparent 70%),
    rgba(12, 12, 12, 0.4);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section-tag::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-header--left .section-tag::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header--left .section-desc {
  margin: 0;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.about-card:hover::after {
  opacity: 1;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.about-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 107, 26, 0.1);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-light);
  background: rgba(255, 107, 26, 0.14);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 26, 0.08);
}

.service-card:hover .service-number {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.3);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.services-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.services-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-image:hover img {
  transform: scale(1.03);
}

.services-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.services-tag svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.services-image:hover .services-tag {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(255, 107, 26, 0.2);
}

/* ---- Applications ---- */
.applications-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 32px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.applications-layout .section-header {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.applications-list {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.application-item:hover {
  border-color: var(--border-accent);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--accent);
}

.application-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.1);
  border-radius: 8px;
}

.application-check svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.application-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.application-item p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.applications-visual {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.applications-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 6, 6, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.applications-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.applications-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.applications-visual-badge svg {
  width: 24px;
  height: 24px;
}

/* ---- Coverage ---- */
.coverage {
  text-align: center;
}

.coverage-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.coverage-tag {
  padding: 12px 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: default;
}

.coverage-tag:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 26, 0.12);
  color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.15);
}

.coverage-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- SEO crawler-only (ascuns vizual) ---- */
.seo-crawler-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 280px 280px;
  gap: 16px;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
  min-height: 0;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
}

.gallery-item:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.gallery-item:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}

.gallery-item:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(255, 107, 26, 0.12);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 26, 0);
  transition: box-shadow var(--transition);
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 0 1px rgba(255, 107, 26, 0.3);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  row-gap: 32px;
  align-items: stretch;
}

.contact-grid .section-header {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.contact-details {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

a.contact-item:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.1);
  border-radius: 10px;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.contact-icon--facebook svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  stroke: none;
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
  margin-top: 12px;
}

.btn-facebook:hover {
  background: #166FE5;
  box-shadow: 0 6px 28px rgba(24, 119, 242, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.contact-cta .btn {
  position: relative;
  z-index: 1;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-cta {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.4), transparent 50%, rgba(255, 69, 0, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Shared brand logo (contact, footer) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.brand-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 107, 26, 0.25));
}

.brand-logo-icon svg {
  width: 100%;
  height: 100%;
}

.brand-logo-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-logo--cta {
  margin-bottom: 20px;
  justify-content: center;
}

.brand-logo--cta .brand-logo-icon {
  width: 40px;
  height: 52px;
}

.brand-logo--cta .brand-logo-name {
  font-size: 1.5rem;
}

.brand-logo--footer {
  justify-content: center;
  margin-bottom: 4px;
}

.brand-logo--footer .brand-logo-icon {
  width: 32px;
  height: 42px;
}

.brand-logo--footer .brand-logo-name {
  font-size: 1.25rem;
}

.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-cta p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

/* ---- Footer ---- */
.footer {
  padding: 40px 0;
  border-top: none;
  background: var(--bg-primary);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-tagline {
  color: var(--accent) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 24px;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.35);
  border-radius: 100px;
  color: #6CB6FF;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
}

.footer-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
  transform: translateY(-2px);
}

.footer-facebook svg {
  flex-shrink: 0;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }

  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-stats-row,
  .hero-gallery-preview,
  .hero-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-visual {
    align-self: auto;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-image-frame {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 280px;
  }

  .hero-image-frame img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero-scaffold {
    display: none;
  }

  .hero-float-card--1 {
    left: 12px;
    bottom: 40px;
  }

  .hero-float-card--2 {
    right: 12px;
    top: 60px;
  }

  @media (max-width: 900px) {
    .hero-float-card {
      display: none;
    }
  }

  .hero-stats-row .stat-card {
    flex: 1;
    min-width: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .applications-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }

  .applications-layout .section-header,
  .applications-list,
  .applications-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .applications-visual {
    align-self: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    overflow: hidden;
  }

  .applications-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .applications-visual-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
  }

  .gallery .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .gallery .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .gallery .gallery-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .gallery .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-grid .section-header,
  .contact-details,
  .contact-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-item {
    flex: none;
  }

  .contact-cta {
    align-self: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hero {
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 32px);
    min-height: 100dvh;
  }

  .hero-scroll {
    bottom: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .header {
    overflow: visible;
  }

  .nav {
    gap: 8px;
    overflow: visible;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-logo {
    margin-bottom: -18px;
    padding: 6px 10px 12px 8px;
    gap: 8px;
    max-width: calc(100% - 44px);
    min-width: 0;
    border-radius: 0 0 14px 14px;
  }

  .nav-logo-icon {
    width: 34px;
    height: 46px;
  }

  .nav-logo-copy {
    min-width: 0;
    overflow: hidden;
  }

  .nav-logo-name {
    font-size: 0.9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-logo-tag,
  .nav-logo-services {
    display: none;
  }

  .header.scrolled .nav-logo {
    margin-bottom: 0;
    padding: 5px 10px 5px 6px;
    max-width: calc(100% - 44px);
  }

  .header.scrolled .nav-logo-icon {
    width: 30px;
    height: 40px;
  }

  .header.scrolled .nav-logo-name {
    font-size: 0.875rem;
  }

  .header.scrolled .nav-logo-tag {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 24px;
    gap: 10px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--accent-light);
    background: rgba(255, 107, 26, 0.1);
    border-color: var(--border-accent);
  }

  .nav-link--cta {
    margin-top: 6px;
    text-align: center;
    padding: 18px 20px;
    font-size: 1.0625rem;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 26, 0.25);
  }

  .nav-link--cta:hover,
  .nav-link--cta.active {
    background: var(--accent-light);
    color: #fff !important;
    border: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid {
    padding: 28px 16px 88px;
    gap: 16px;
  }

  .hero-title {
    margin-top: 0;
  }

  .stat-card--hide-mobile {
    display: none;
  }

  .hero-stats-row {
    flex-direction: row;
    margin-top: 0;
    gap: 10px;
  }

  .hero-stats-row .stat-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 12px;
    text-align: center;
  }

  .hero-stats-row .stat-number {
    font-size: 1.75rem;
  }

  .hero-stats-row .stat-label {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .hero-gallery-preview {
    display: grid;
    gap: 6px;
  }

  .hero-visual {
    display: none;
  }

  .hero-image-frame {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .hero-float-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 24px 20px;
  }

  .about-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .about-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .about-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 12px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 24px 20px;
  }

  .service-number {
    grid-column: 1;
    grid-row: 1;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .service-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 12px;
  }

  .contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
  }

  .contact-icon {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }

  .contact-item > div {
    display: contents;
  }

  .contact-label {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .contact-value {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
  }

  .application-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
  }

  .application-check {
    grid-column: 1;
    grid-row: 1;
    width: 32px;
    height: 32px;
  }

  .application-item > div {
    display: contents;
  }

  .application-item strong {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .application-item p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
  }

  .application-item:hover {
    transform: none;
    box-shadow: none;
  }

  main {
    overflow-x: clip;
  }

  .services-image img {
    height: 260px;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .gallery .gallery-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
  }

  /* Rând 1: 2 pătrate egale */
  .gallery .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1 / 1;
  }

  .gallery .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1 / 1;
  }

  /* Rând 2–3: dreptunghiulare full width */
  .gallery .gallery-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    aspect-ratio: 16 / 10;
  }

  .gallery .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
    aspect-ratio: 16 / 10;
  }

  .gallery .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery .gallery-item:hover img {
    transform: none;
  }

  .gallery-overlay {
    padding: 12px;
  }

  .gallery-overlay span {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .applications-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .applications-visual-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-cta {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .coverage-tags {
    gap: 8px;
  }

  .coverage-tag {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero-grid {
    padding: 20px 12px 80px;
    gap: 14px;
  }

  .section-tag::before,
  .section-tag::after {
    width: 12px;
  }

  .services-image-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .services-tag {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .applications-visual-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.8125rem;
    max-width: calc(100% - 24px);
  }

  .stat-card {
    min-width: 0;
    padding: 16px 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
