/* ===== SmartEye — Static HTML/CSS Landing ===== */

:root {
  --se-bg: #050608;
  --se-bg-2: #0a0d12;
  --se-panel: #0f141b;
  --se-line: #1a2230;
  --se-navy: #1e3a5f;
  --se-navy-2: #2d4a7a;
  --se-navy-3: #4a6b9c;
  --se-red: #d62828;
  --se-red-2: #ff3a3a;
  --se-red-glow: rgba(214, 40, 40, 0.45);
  --se-text: #e8edf5;
  --se-text-dim: #8a93a3;
  --se-text-muted: #5a6373;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--se-bg);
  color: var(--se-text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: var(--se-red); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* Utilities */
.text-red { color: var(--se-red); }
.text-navy { color: var(--se-navy-3); }
.text-navy-light { color: var(--se-navy-3); }
.text-stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
  color: transparent;
}
.center { display: inline-flex; }

/* Grain */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}
.scanlines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
}
.circuit-bg {
  background-image:
    linear-gradient(rgba(74,107,156,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,107,156,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Section common */
.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--se-text-dim); font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.section-tag::before { content: ""; width: 36px; height: 1px; background: var(--se-red); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.05;
  margin-top: 20px;
  font-size: 36px;
}
.section-title.center { text-align: center; display: block; }
@media (min-width: 640px) { .section-title { font-size: 48px; } }
@media (min-width: 1024px) { .section-title { font-size: 60px; } }

.section-desc {
  margin-top: 24px;
  color: var(--se-text-dim);
  max-width: 540px;
  line-height: 1.7;
}

/* Buttons */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  background: var(--se-red); color: #fff;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  box-shadow: 0 8px 30px -8px var(--se-red-glow);
}
.btn-primary:hover { background: var(--se-red-2); transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--se-red-glow); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; color: var(--se-text);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px; transition: all 220ms ease;
}
.btn-ghost:hover { border-color: var(--se-red); color: var(--se-red-2); background: rgba(214,40,40,0.06); }

/* Pill */
.brand-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(214,40,40,0.08);
  border: 1px solid rgba(214,40,40,0.35);
  color: #ff8585;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.brand-pill::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--se-red); box-shadow: 0 0 10px var(--se-red); }

/* ===== NAVBAR (bigger logo) ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 300ms ease; }
.navbar.scrolled {
  background: rgba(5,6,8,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--se-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 64px; width: 64px; object-fit: contain; background: rgba(0,0,0,0.4); padding: 6px; border-radius: 6px; }
@media (min-width: 640px) { .brand-logo { height: 72px; width: 72px; } }
.brand-logo.lg { height: 64px; width: 64px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand-name.lg { font-size: 22px; }
.brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--se-text-muted); margin-top: 2px; }
@media (max-width: 640px) { .brand-text { display: none; } }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--se-text-dim); font-weight: 500; transition: color 200ms; }
.nav-links a:hover { color: #fff; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: none; align-items: center; gap: 8px; font-size: 14px; color: var(--se-text-dim); }
.nav-phone i { color: var(--se-red); font-size: 12px; }
.nav-phone:hover { color: #fff; }
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }
.nav-quote { display: none; }
@media (min-width: 640px) { .nav-quote { display: inline-flex; } }
.mobile-toggle { color: #fff; font-size: 22px; padding: 8px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none; border-top: 1px solid var(--se-line);
  background: rgba(5,6,8,0.95); backdrop-filter: blur(20px);
  padding: 24px; flex-direction: column; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: var(--se-text); font-weight: 500; }
@media (min-width: 1024px) { .mobile-menu, .mobile-menu.open { display: none !important; } }

/* ===== HERO (logo upper, less padding) ===== */
.hero { position: relative; min-height: 100vh; padding: 120px 0 60px; overflow: hidden; }
.hero-radial {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center top, rgba(214,40,40,0.18), transparent 55%),
    radial-gradient(ellipse at center, rgba(30,58,95,0.35), transparent 60%);
}
.hero-grid { position: relative; display: grid; gap: 48px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; padding-top: 16px; } }

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 0.98; margin-top: 24px; font-size: 44px;
}
@media (min-width: 640px) { .hero-title { font-size: 62px; } }
@media (min-width: 1024px) { .hero-title { font-size: 82px; } }
.hero-sub { margin-top: 24px; font-size: 16px; color: var(--se-text-dim); max-width: 560px; line-height: 1.7; }
@media (min-width: 640px) { .hero-sub { font-size: 18px; } }
.hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--se-line); padding-top: 28px; max-width: 560px;
}
.stat-num { font-family: 'Manrope', sans-serif; font-size: 32px; font-weight: 700; color: #fff; }
@media (min-width: 640px) { .stat-num { font-size: 38px; } }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--se-text-muted); margin-top: 6px; }

/* Hero Logo Stage */
.hero-right { display: flex; justify-content: center; }
.logo-stage { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; }
.ring { position: absolute; border-radius: 50%; }
.ring-outer { inset: 0; border: 1px dashed rgba(45,74,122,0.4); animation: spin-slow 32s linear infinite; }
.ring-mid { inset: 24px; border: 1px solid rgba(30,58,95,0.6); }
.ring-pulse { inset: 48px; border: 2px solid rgba(214,40,40,0.3); animation: pulse-ring 2.4s cubic-bezier(0.4,0,0.6,1) infinite; }
.logo-glow {
  position: absolute; inset: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,40,40,0.2), rgba(30,58,95,0.3), transparent);
  filter: blur(40px);
}
.logo-float {
  position: absolute; inset: 11%; width: 78%; height: 78%; object-fit: contain;
  animation: float-slow 6s ease-in-out infinite;
}
.float-chip {
  position: absolute;
  display: none; align-items: center; gap: 8px;
  background: rgba(15,20,27,0.9); border: 1px solid var(--se-line); border-radius: 6px;
  padding: 8px 12px; backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 500;
}
.float-chip i { color: var(--se-red); }
@media (min-width: 768px) { .float-chip { display: inline-flex; } }
.chip-1 { left: -16px; top: 33%; }
.chip-2 { right: -8px; top: 50%; }
.chip-3 { left: 24px; bottom: -8px; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes float-slow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(2deg); } }

/* ===== ABOUT (reduced padding) ===== */
.about { padding: 80px 0; background: #070a0f; }
@media (min-width: 1024px) { .about { padding: 96px 0; } }
.about-grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; } }

.vm-block { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.vm-item { padding-left: 20px; border-left: 2px solid var(--se-line); }
.vm-item.vm-red { border-left-color: var(--se-red); }
.vm-item.vm-navy { border-left-color: var(--se-navy); }
.vm-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: var(--se-text-muted); margin-bottom: 8px; }
.vm-item p { color: var(--se-text); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card {
  background: linear-gradient(180deg, rgba(15,20,27,0.9), rgba(10,13,18,0.9));
  border: 1px solid var(--se-line); border-radius: 6px; padding: 28px;
  transition: all 320ms ease;
}
.value-card:hover { border-color: rgba(214,40,40,0.55); transform: translateY(-4px); }
.value-icon {
  width: 44px; height: 44px; border-radius: 6px;
  background: linear-gradient(135deg, var(--se-navy), var(--se-panel));
  border: 1px solid rgba(45,74,122,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 300ms ease;
}
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--se-red), #7a1818); border-color: var(--se-red); }
.value-icon i { color: #fff; }
.value-card h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--se-text-dim); line-height: 1.65; }
.promise-card {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--se-panel), rgba(30,58,95,0.3));
  border-color: rgba(45,74,122,0.4);
}
.promise-row { display: flex; align-items: flex-start; gap: 20px; }
.promise-star { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--se-red); line-height: 1; }

/* ===== SERVICES (with images) ===== */
.services { position: relative; padding: 80px 0; overflow: hidden; }
@media (min-width: 1024px) { .services { padding: 96px 0; } }
.services-bg { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.services-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px; background: rgba(214,40,40,0.08);
  filter: blur(120px); pointer-events: none;
}
.services-head { position: relative; display: flex; flex-direction: column; gap: 32px; margin-bottom: 56px; }
@media (min-width: 1024px) { .services-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.services-head-left { max-width: 640px; }
.services-head-desc { color: var(--se-text-dim); max-width: 380px; line-height: 1.7; }

.services-grid { position: relative; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(15,20,27,0.9), rgba(10,13,18,0.9));
  border: 1px solid var(--se-line); border-radius: 6px;
  display: flex; flex-direction: column;
  transition: all 320ms ease;
}
.service-card:hover { border-color: rgba(214,40,40,0.55); transform: translateY(-4px); }

.service-img-wrap {
  position: relative; height: 160px; overflow: hidden;
  background: var(--se-bg-2);
}
.service-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.service-card:hover .service-img { transform: scale(1.1); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--se-panel), rgba(15,20,27,0.3) 60%, transparent);
}
.service-num {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; color: #fff;
  background: var(--se-red); padding: 4px 8px; border-radius: 3px;
  letter-spacing: 0.08em;
}
.service-icon-badge {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(10,13,18,0.9); border: 1px solid var(--se-line);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: border-color 300ms;
}
.service-card:hover .service-icon-badge { border-color: var(--se-red); }
.service-icon-badge i { color: var(--se-red); font-size: 14px; }

.service-body { padding: 20px; flex: 1; }
.service-body h3 { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.service-body p { font-size: 14px; color: var(--se-text-dim); line-height: 1.65; }

/* ===== SHOWCASE (5 projects) ===== */
.showcase { padding: 80px 0; background: var(--se-bg); }
@media (min-width: 1024px) { .showcase { padding: 96px 0; } }
.showcase-head { max-width: 640px; margin-bottom: 48px; }
.showcase-hint { margin-top: 20px; font-size: 13px; color: var(--se-text-muted); }
.showcase-hint i { color: var(--se-red); margin-right: 8px; }

.showcase-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); } }

.showcase-card {
  position: relative; overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--se-line);
  background: var(--se-panel);
  cursor: pointer;
  transition: border-color 500ms ease;
  aspect-ratio: 4/3;
  text-align: left; padding: 0; width: 100%;
}
.showcase-card:hover { border-color: rgba(214,40,40,0.6); }

.showcase-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.showcase-card:hover .showcase-img { transform: scale(1.1); }
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--se-bg), rgba(5,6,8,0.6) 40%, transparent);
}
.showcase-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: #fff;
  background: var(--se-red); padding: 6px 12px; border-radius: 4px;
}
.showcase-zoom {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,20,27,0.9); border: 1px solid var(--se-line);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity 300ms;
}
.showcase-card:hover .showcase-zoom { opacity: 1; }
.showcase-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.showcase-content h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
@media (min-width: 1024px) { .showcase-content h3 { font-size: 20px; } }
.showcase-content p { font-size: 13px; color: var(--se-text-dim); margin-bottom: 12px; }
.showcase-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--se-red);
}
.showcase-cta .photos { color: var(--se-text-muted); font-weight: 400; text-transform: none; letter-spacing: normal; margin-left: 8px; }
.showcase-card:hover .showcase-cta i { transform: translateX(4px); }
.showcase-cta i { transition: transform 300ms; }

/* ===== WHY US ===== */
.why { padding: 80px 0; background: linear-gradient(to bottom, var(--se-bg), var(--se-bg-2), var(--se-bg)); }
@media (min-width: 1024px) { .why { padding: 96px 0; } }
.why-grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 5fr 7fr; } }
.why-stats { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat { padding-left: 20px; border-left: 2px solid var(--se-red); }

.why-right { display: flex; flex-direction: column; gap: 12px; }
.reason-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: linear-gradient(180deg, rgba(15,20,27,0.9), rgba(10,13,18,0.9));
  border: 1px solid var(--se-line); border-radius: 6px;
  padding: 24px; transition: all 320ms ease;
}
@media (min-width: 1024px) { .reason-card { padding: 28px; } }
.reason-card:hover { border-color: rgba(214,40,40,0.55); transform: translateY(-4px); }
.reason-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--se-bg-2); border: 1px solid var(--se-line);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  transition: all 300ms ease;
}
.reason-icon i { color: var(--se-navy-3); transition: color 300ms ease; }
.reason-card:hover .reason-icon { background: var(--se-red); border-color: var(--se-red); }
.reason-card:hover .reason-icon i { color: #fff; }
.reason-text { flex: 1; }
.reason-text h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.reason-text p { font-size: 14px; color: var(--se-text-dim); line-height: 1.65; }
.reason-num { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--se-line); transition: color 300ms ease; }
.reason-card:hover .reason-num { color: var(--se-red); }

/* ===== PARTNERS (smaller cards, no white BG) ===== */
.partners { position: relative; padding: 72px 0; background: #070a0f; overflow: hidden; }
@media (min-width: 1024px) { .partners { padding: 96px 0; } }
.partners-glow-l, .partners-glow-r {
  position: absolute; width: 384px; height: 384px;
  filter: blur(120px); pointer-events: none;
}
.partners-glow-l { top: 0; left: 25%; background: rgba(30,58,95,0.2); }
.partners-glow-r { bottom: 0; right: 25%; background: rgba(214,40,40,0.08); }

.partners-head-wrap { position: relative; text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.partners-head-wrap .section-tag { display: inline-flex; }
.partners-desc { margin-top: 20px; color: var(--se-text-dim); line-height: 1.7; }

.marquee-wrap { position: relative; }
.marquee-wrap + .marquee-wrap { margin-top: 12px; }
.marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 128px; z-index: 10; pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(to right, #070a0f, transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, #070a0f, transparent); }
.marquee-overflow { overflow: hidden; }
.marquee-track { display: flex; width: max-content; }
.marquee-rtl { animation: marquee-rtl 45s linear infinite; }
.marquee-ltr { animation: marquee-ltr 55s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.partner-card {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; margin: 0 8px;
  border-radius: 6px;
  border: 1px solid var(--se-line);
  background: rgba(15,20,27,0.6);
  transition: border-color 300ms ease;
}
.partner-card:hover { border-color: rgba(214,40,40,0.6); }
.partner-logo {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-logo .initials { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: var(--se-navy-3); letter-spacing: -0.02em; }
.partner-name { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500; color: #fff; white-space: nowrap; }

/* ===== CONTACT ===== */
.contact { position: relative; padding: 80px 0; background: var(--se-bg); overflow: hidden; }
@media (min-width: 1024px) { .contact { padding: 96px 0; } }
.contact-bg { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.contact-glow-l {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  width: 384px; height: 384px; background: rgba(214,40,40,0.1); filter: blur(120px); pointer-events: none;
}
.contact-glow-r {
  position: absolute; top: 33%; right: 0;
  width: 384px; height: 384px; background: rgba(30,58,95,0.3); filter: blur(120px); pointer-events: none;
}
.contact-grid { position: relative; display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--se-panel); border: 1px solid var(--se-line); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 200ms;
}
.info-icon i { color: var(--se-red); }
.info-item:hover .info-icon { border-color: var(--se-red); }
.info-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--se-text-muted); margin-bottom: 4px; }
.info-val { color: #fff; font-weight: 500; transition: color 200ms; }
.info-item:hover .info-val { color: var(--se-red); }

/* Form */
.contact-form {
  background: linear-gradient(180deg, rgba(15,20,27,0.9), rgba(10,13,18,0.9));
  border: 1px solid var(--se-line); border-radius: 6px;
  padding: 28px; display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 1024px) { .contact-form { padding: 40px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--se-text-muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--se-line);
  color: var(--se-text);
  padding: 14px 16px;
  border-radius: 4px; font-size: 14px;
  transition: all 220ms ease;
}
.form-field textarea { resize: none; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--se-red); background: rgba(255,255,255,0.05);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--se-text-muted); }
.form-field select option { background: var(--se-bg-2); }
.form-submit { width: 100%; }
.form-note { font-size: 12px; color: var(--se-text-muted); text-align: center; }
.btn-primary.loading .btn-icon { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.footer { background: #030405; border-top: 1px solid var(--se-line); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }

.footer-about { margin-top: 24px; max-width: 440px; font-size: 14px; color: var(--se-text-dim); line-height: 1.7; }
.socials { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 40px; height: 40px;
  background: var(--se-panel); border: 1px solid var(--se-line); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--se-text-dim); transition: all 300ms ease;
}
.socials a:hover { color: #fff; border-color: var(--se-red); background: var(--se-red); }

.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.22em; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li { font-size: 14px; color: var(--se-text-dim); }
.footer-col ul li a { transition: color 200ms; }
.footer-col ul li a:hover { color: var(--se-red); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact i { color: var(--se-red); margin-top: 4px; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--se-line);
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--se-text-muted);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 200;
  background: var(--se-panel); border: 1px solid var(--se-line);
  color: var(--se-text); padding: 14px 18px; border-radius: 6px;
  font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease; max-width: 380px;
}
.toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast.success { border-color: rgba(34,197,94,0.5); }
.toast.error { border-color: rgba(214,40,40,0.7); }

/* ===== FLOATING SOCIAL SIDEBAR (LEFT) ===== */
.floating-socials {
  display: none; position: fixed; left: 16px; top: 50%; transform: translateY(-50%);
  flex-direction: column; gap: 12px; z-index: 40;
}
@media (min-width: 768px) { .floating-socials { display: flex; } }
.floating-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--se-line), var(--se-line)); margin: 0 auto; }
.floating-line:last-child { background: linear-gradient(to top, transparent, var(--se-line), var(--se-line)); }
.floating-social {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,20,27,0.9); border: 1px solid var(--se-line);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--se-text-dim); font-size: 14px;
  transition: all 300ms ease;
}
.floating-social:hover { color: #fff; border-color: var(--se-red); transform: translateX(4px); }
.floating-social span {
  position: absolute; left: 48px; top: 50%; transform: translateY(-50%);
  padding: 6px 12px;
  background: var(--se-panel); border: 1px solid var(--se-line);
  border-radius: 4px; font-size: 12px; font-weight: 500; color: #fff;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
.floating-social:hover span { opacity: 1; }

/* ===== WHATSAPP FLOATER (RIGHT, GIF) ===== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-pulse {
  position: absolute; inset: 8px; border-radius: 50%;
  background: #25D366; opacity: 0.25;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 75%,100% { transform: scale(1.5); opacity: 0; } }
.whatsapp-icon {
  position: relative; width: 64px; height: 64px; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.5));
  transition: transform 300ms ease;
}
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute; right: 76px; top: 50%; transform: translateY(-50%);
  padding: 8px 14px;
  background: var(--se-panel); border: 1px solid var(--se-line);
  border-radius: 4px; font-size: 12px; font-weight: 500; color: #fff;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,6,8,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; border-bottom: 1px solid var(--se-line);
  height: 80px;
}
.lb-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: var(--se-text-muted); }
.lb-title { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-top: 4px; }
.lb-controls { display: flex; align-items: center; gap: 16px; }
.lb-counter { font-family: monospace; font-size: 14px; color: var(--se-text-dim); }
.lb-close {
  width: 40px; height: 40px;
  background: var(--se-panel); border: 1px solid var(--se-line); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 200ms;
}
.lb-close:hover { color: var(--se-red); border-color: var(--se-red); }

.lightbox-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lightbox-stage img {
  max-height: 78vh; max-width: 100%; object-fit: contain; border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(15,20,27,0.9); border: 1px solid var(--se-line);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
}
.lb-nav:hover { background: var(--se-red); border-color: var(--se-red); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
@media (min-width: 640px) { .lb-prev { left: 32px; } .lb-next { right: 32px; } }

.lightbox-thumbs {
  border-top: 1px solid var(--se-line);
  padding: 16px 32px;
  overflow-x: auto;
  display: flex; gap: 12px; justify-content: flex-start;
}
@media (min-width: 1024px) { .lightbox-thumbs { justify-content: center; } }
.lb-thumb {
  flex-shrink: 0; width: 80px; height: 56px; border-radius: 4px;
  border: 2px solid var(--se-line); overflow: hidden;
  opacity: 0.6; transition: all 200ms;
  cursor: pointer; padding: 0;
}
@media (min-width: 640px) { .lb-thumb { width: 96px; height: 64px; } }
.lb-thumb:hover { opacity: 1; }
.lb-thumb.active { border-color: var(--se-red); opacity: 1; transform: scale(1.05); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CUSTOM CURSOR (desktop only) ===== */
body.cursor-active,
body.cursor-active * { cursor: none !important; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--se-red);
  box-shadow: 0 0 12px rgba(214,40,40,0.8), 0 0 2px #fff;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(214,40,40,0.8);
  background: rgba(214,40,40,0.05);
  backdrop-filter: blur(1.5px);
  transition: width 220ms ease, height 220ms ease, margin 220ms ease, background 220ms ease, border-color 220ms ease;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  margin: -14px 0 0 -14px;
  background: rgba(214,40,40,0.12);
  border-color: var(--se-red-2);
}
.cursor-ring.is-click { background: rgba(214,40,40,0.25); }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.cursor-active, body.cursor-active * { cursor: auto !important; }
}

/* ===== HEARTBEAT DIVIDER ===== */
.ecg-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}
.ecg-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ecg-path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: ecg-run 3.2s linear infinite;
}
.ecg-pulse {
  offset-path: path("M0 30 L260 30 L275 30 L285 15 L300 45 L315 8 L330 52 L345 30 L600 30 L615 30 L625 15 L640 45 L655 8 L670 52 L685 30 L1200 30");
  animation: ecg-pulse-move 3.2s linear infinite;
  opacity: 0;
}
@keyframes ecg-run {
  0% { stroke-dashoffset: 2400; opacity: 0; }
  8% { opacity: 1; }
  100% { stroke-dashoffset: -2400; opacity: 1; }
}
@keyframes ecg-pulse-move {
  0% { opacity: 0; offset-distance: 0%; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { opacity: 0; offset-distance: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ecg-path { animation: none; stroke-dashoffset: 0; opacity: 0.5; }
  .ecg-pulse { animation: none; display: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
