/* Core variables (ported from src/app/globals.css) */
:root {
  --background: 220 8% 12%;
  --foreground: 210 15% 95%;
  --card: 220 10% 15%;
  --card-foreground: 210 15% 95%;
  --popover: 220 12% 18%;
  --popover-foreground: 210 15% 95%;
  --primary: 220 15% 20%;
  --primary-foreground: 210 20% 98%;
  --secondary: 215 20% 25%;
  --secondary-foreground: 210 20% 95%;
  --muted: 220 12% 22%;
  --muted-foreground: 215 12% 65%;
  --accent: 205 35% 45%;
  --accent-foreground: 210 20% 98%;
  --destructive: 0 65% 55%;
  --destructive-foreground: 210 20% 98%;
  --border: 220 15% 25%;
  --input: 220 15% 25%;
  --ring: 205 35% 45%;
  --radius: 12px;
  --gradient-titan: linear-gradient(135deg, hsl(205 35% 45%), hsl(210 30% 40%));
  --gradient-luxury: linear-gradient(135deg, hsl(220 8% 12%), hsl(215 20% 20%));
  --gradient-elegant: linear-gradient(180deg, hsl(220 10% 16%), hsl(220 8% 12%));
  --gradient-titanium: linear-gradient(135deg, hsl(220 15% 20%), hsl(215 20% 25%), hsl(220 12% 18%));
  --gradient-steel: linear-gradient(90deg, hsl(205 35% 45%), hsl(210 30% 40%), hsl(205 35% 45%));
  --gradient-hero: linear-gradient(135deg, hsl(220 8% 12%) 0%, hsl(220 15% 20%) 25%, hsl(215 20% 25%) 50%, hsl(220 12% 18%) 75%, hsl(220 8% 12%) 100%);
  --shadow-luxury: 0 25px 50px -12px hsl(220 15% 10% / 0.35);
  --shadow-titan: 0 10px 30px -10px hsl(205 35% 45% / 0.25);
  --shadow-titanium: 0 10px 40px -10px hsl(220 15% 20% / 0.8);
  --shadow-steel: 0 8px 32px -8px hsl(205 35% 45% / 0.4);
  --glow-accent: 0 0 20px hsl(205 35% 45% / 0.3);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: hsl(var(--foreground));
  background: var(--gradient-hero);
  background-attachment: fixed;
  font-family: Inter, Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: hsl(var(--foreground)); text-decoration: none; }
a:hover { color: hsl(var(--accent)); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
.small { font-size: 0.875rem; }
.tiny { font-size: 0.75rem; }
.center { text-align: center; }
.mt { margin-top: 2rem; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border) / 0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-title { font-weight: 700; font-size: 1rem; display: none; }
@media (min-width: 1024px) { .brand-title { display: inline; font-size: 1.125rem; } }
.nav { display: none; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav a { position: relative; font-weight: 500; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: hsl(var(--accent)); transition: right .3s; }
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 2px; border-radius: 999px; border: 1px solid hsl(var(--border) / 0.5); background: hsl(var(--background) / 0.5); }
.lang-switch a { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; border-radius: 999px; font-size: 0.8rem; color: hsl(var(--muted-foreground)); border: 1px solid transparent; line-height: 1; }
.lang-switch a:hover { color: hsl(var(--accent)); }
.lang-switch a.active { background: hsl(var(--accent) / 0.2); color: hsl(var(--accent-foreground)); border-color: hsl(var(--accent) / 0.35); box-shadow: var(--glow-accent); }
.menu-toggle { display: inline-flex; flex-direction: column; gap: 4px; width: 36px; height: 36px; align-items: center; justify-content: center; background: transparent; border: 0; color: inherit; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.nav.mobile { display: none; gap: 0.5rem; padding: 0 1.25rem 1rem; border-bottom: 1px solid hsl(var(--border) / 0.4); }
.nav.mobile { position: absolute; top: 100%; left: 0; right: 0; z-index: 60; background: hsl(var(--background) / 0.95); backdrop-filter: blur(8px); }
.nav.mobile.open { display: grid; }
@media (min-width: 768px) { .nav.mobile { display: none !important; } }

/* Sections */
.section { position: relative; padding: 6rem 0; }
.section-default { background: hsl(var(--background) / 0.6); overflow: hidden; }
.section-muted { background: hsl(var(--muted) / 0.5); overflow: hidden; }
.section-hero { min-height: 100vh; display: grid; align-items: center; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header.small-left { text-align: left; }
.section-underline { display: inline-block; position: relative; }
.section-underline::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -8px; width: 56px; height: 2px; background: linear-gradient(90deg, transparent, hsl(var(--accent)), transparent); opacity: 0.8; }

/* Hero */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsl(var(--background)/0.9), hsl(var(--background)/0.7), transparent); }
.hero-vignette { position: absolute; inset: 0; mix-blend-mode: multiply; background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%); }
.grid-titanium { position: absolute; inset: 0; background-image: linear-gradient(hsl(220 15% 25% / 0.1) 1px, transparent 1px), linear-gradient(90deg, hsl(220 15% 25% / 0.1) 1px, transparent 1px); background-size: 20px 20px; opacity: .35; }
.hero-content { position: relative; z-index: 1; padding-top: 6rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .hero-content { grid-template-columns: 7fr 5fr; } }
.hero-left { padding: 1.5rem; border-radius: 16px; }
.hero-title { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15; font-weight: 800; margin: 0 0 1rem; }
.text-steel { background: var(--gradient-steel); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lead { font-size: 1.125rem; color: #fff; opacity: .9; max-width: 56ch; }
.feature-list { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1rem; align-items: center; }
.feature-item { display: inline-flex; align-items: center; gap: .5rem; color: #fff; opacity: .95; }
/* Unified icon badges */
.icon-circle,
.icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient-steel); box-shadow: var(--glow-accent); color: #fff;
}
.icon { vertical-align: middle; margin-right: .5rem; }
.icon.sm, .icon-circle.sm { width: 32px; height: 32px; }
.icon.lg, .icon-circle.lg { width: 56px; height: 56px; }
.icon-circle svg,
.icon svg { width: 22px; height: 22px; color: currentColor; stroke: currentColor; stroke-width: 2; }
/* Heading icons: keep slight right margin */
h4 .icon, h3 .icon { margin-right: .5rem; }

/* Make hero feature icons more airy */
.section-hero .feature-list .icon-circle {
  width: 32px; height: 32px; border-radius: 999px;
  background: hsl(var(--accent) / 0.15);
  border: 1px solid hsl(var(--accent) / 0.25);
  box-shadow: none; color: #fff;
}
.section-hero .feature-list .icon-circle svg { width: 18px; height: 18px; stroke-width: 1.75; }
.section-hero .feature-item span:last-child { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.company-info { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); color: #fff; opacity: .9; }
.hero-right { display: none; position: relative; border-radius: 16px; padding: 1.25rem; border: 1px solid hsl(var(--border) / .4); overflow: hidden; }
@media (min-width: 1024px) {
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: center; /* vertically balance next to the left card */
    height: auto; /* shrink-wrap to content */
    max-width: 520px;
  }
}
.rail-item { display: flex; align-items: center; justify-content: flex-start; padding: 0.875rem 1rem; background: hsl(var(--background) / .4); border: 1px solid hsl(var(--border) / .4); border-radius: 14px; gap: .75rem; width: 100%; }
.rail-item .icon-circle.sm { flex: 0 0 auto; }
.rail-item span:last-child { flex: 1 1 auto; text-align: left; color: hsl(var(--foreground) / 0.9); font-weight: 500; }
.rail-item .icon-circle.sm svg { width: 18px; height: 18px; }
@keyframes pulse { 0%{ opacity:.6 } 50%{ opacity:1 } 100%{ opacity:.6 } }
.scroll-indicator { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); }
.mouse { width: 24px; height: 40px; border-radius: 12px; border: 2px solid hsl(var(--accent)/.6); display: grid; place-items: start center; }
.wheel { width: 4px; height: 10px; margin-top: 8px; background: hsl(var(--accent)/.6); border-radius: 999px; animation: pulse 1.6s infinite; }

/* Cards & visual utilities */
.glass { background: linear-gradient(180deg, hsl(220 12% 18% / 0.6), hsl(220 10% 16% / 0.4)); backdrop-filter: blur(8px); border: 1px solid hsl(220 15% 30% / 0.6); box-shadow: var(--shadow-titanium); }
.surface-titanium { background: var(--gradient-titanium); box-shadow: var(--shadow-titanium), inset 0 1px 0 hsl(220 15% 35% / 0.5); }
.card-spotlight { position: relative; isolation: isolate; }
.card-spotlight::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: radial-gradient(600px 200px at var(--x, 50%) var(--y, 0%), hsl(var(--accent) / 0.15), transparent 40%); pointer-events: none; z-index: -1; }

.grid.two { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid.two { grid-template-columns: 7fr 5fr; } }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
@media (min-width: 1024px) { .stats-grid { gap: 1.5rem; } }
.stat { text-align: center; padding: 2rem; border-radius: 16px; transition: transform .3s; border: 1px solid hsl(var(--border)/.4); }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-steel); }
.stat .stat-icon { margin: 0 auto .75rem; }
.stat-value { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.stat-label { color: hsl(var(--muted-foreground)); }

.section .accent { color: hsl(var(--accent)); font-weight: 700; }
.accent-80 { color: hsl(var(--accent) / 0.8); }
.muted { color: hsl(var(--muted-foreground)); }
.text-titan { color: hsl(var(--titan, 205 35% 45%)); }

blockquote.glass { padding: 1rem; border-radius: 12px; }
.address { padding: 1rem; border-radius: 12px; border: 1px solid hsl(var(--border) / .4); }
.address .phones { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.link { color: hsl(var(--accent)); }

.cards { display: grid; gap: 1rem; }
.cards.four { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { padding: 2rem; border-radius: 16px; border: 1px solid hsl(var(--border)/.4); transition: transform .3s, box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-steel); border-color: hsl(var(--accent)/.4); }

.trust-inline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
@media (min-width: 768px) { .trust-inline { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Contact */
.contact-list { display: grid; gap: 1rem; }
.contact-item { padding: 1rem; border-radius: 16px; border: 1px solid hsl(var(--border)/.4); }
.company-blurb { margin-top: 1rem; padding: 1rem; border-radius: 16px; }
.cta-panel { padding: 1.5rem; border-radius: 24px; border: 1px solid hsl(var(--border)/.4); }
.icon-circle { width: 80px; height: 80px; border-radius: 999px; background: var(--gradient-steel); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1rem; box-shadow: var(--glow-accent); }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; text-align: center; padding-top: 1rem; border-top: 1px solid hsl(var(--border)/.4); }
.quick-contacts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }

/* Footer */
.site-footer { background: hsl(var(--background)); border-top: 1px solid hsl(var(--border)/.4); }
.footer-top { display: grid; gap: 1.5rem; padding: 4rem 0; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col { display: grid; gap: .5rem; }
.footer-col.span-2 { grid-column: span 1; }
.brand-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.phones-inline { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-badges { margin-top: .75rem; display: grid; gap: .25rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0 2rem; gap: 1rem; flex-wrap: wrap; }
.status-dot { width: 8px; height: 8px; border-radius: 999px; background: hsl(var(--accent)); display: inline-block; vertical-align: middle; margin-right: .25rem; animation: pulse 2s infinite; }

/* Angled dividers */
.divider-angled-top::before,
.divider-angled-bottom::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 120px; pointer-events: none;
}
.divider-angled-top::before { top: -1px; background: linear-gradient(to top left, transparent 49%, hsl(var(--background)) 50%); opacity: 0.6; }
.section-default.divider-angled-top::before { background: linear-gradient(to top left, transparent 49%, hsl(var(--muted) / 0.6) 50%); opacity: 1; }
#about.section-default.divider-angled-top::before { display: none; }
.divider-angled-bottom::after { bottom: -1px; background: linear-gradient(to bottom right, transparent 49%, hsl(var(--background)) 50%); opacity: 1; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1rem; border-radius: 12px; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s; font-weight: 600; }
.btn-sm { padding: .5rem .75rem; font-size: .875rem; }
.btn-premium { background: var(--gradient-titan); color: white; box-shadow: var(--shadow-steel); }
.btn-premium:hover { transform: translateY(-2px); box-shadow: var(--shadow-titanium), var(--glow-accent); }
.btn-elegant { background: hsl(var(--muted) / 0.6); color: hsl(var(--foreground)); border-color: hsl(var(--border)/.4); }
.btn-elegant:hover { border-color: hsl(var(--accent)/.4); }
.btn-luxury { background: var(--gradient-luxury); color: hsl(var(--foreground)); box-shadow: var(--shadow-luxury); }
.btn-link { background: transparent; color: hsl(var(--accent)); padding: 0; height: auto; border: 0; }
.w-full { width: 100%; }

/* Hover spotlight pointer tracking */
.document-body-listener { position: fixed; inset: 0; pointer-events: none; }
