:root {
  --navy: #060b18;
  --navy-2: #0b1530;
  --navy-3: #101f45;
  --blue: #1450c4;
  --blue-2: #2d6df0;
  --blue-light: #6fa2ff;
  --white: #ffffff;
  --off-white: #f4f7fd;
  --ink: #0b1530;
  --muted: #5b6786;
  --muted-light: #a9b6d6;
  --border: rgba(255,255,255,0.1);
  --border-dark: rgba(11,21,48,0.1);
  --radius: 18px;
  --shadow: 0 20px 60px -20px rgba(6,11,24,0.35);
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.section { padding: 110px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); color: var(--navy); }
.section-sub { margin-top: 16px; font-size: 17px; color: var(--muted); line-height: 1.6; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(20,80,196,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(20,80,196,0.65); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-small { padding: 10px 20px; font-size: 13px; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(6,11,24,0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 17px;
  color: #fff;
}
.logo-text strong { font-weight: 800; color: var(--blue-light); }

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blue-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch { display: flex; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 4px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: none; color: rgba(255,255,255,0.7);
  padding: 6px 10px; border-radius: 100px; font-weight: 700; font-size: 12px;
  transition: background .2s ease, color .2s ease;
}
.lang-btn .flag { width: 20px; height: 14px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }
.lang-btn.active { background: rgba(255,255,255,0.16); color: #fff; }
.lang-btn:hover { color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(45,109,240,0.35), transparent 45%),
    linear-gradient(180deg, rgba(6,11,24,0.55) 0%, rgba(6,11,24,0.75) 55%, var(--navy) 100%);
}
.hero-domain-tag {
  position: absolute;
  top: 20%;
  right: 8%;
  z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  animation: domainFloat 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes domainFloat {
  0%, 100% { transform: translateY(0); text-shadow: 0 0 30px rgba(111,162,255,0.75), 0 0 8px rgba(111,162,255,0.9); }
  50% { transform: translateY(-14px); text-shadow: 0 0 46px rgba(111,162,255,0.95), 0 0 14px rgba(111,162,255,1); }
}
@media (max-width: 860px) {
  .hero-domain-tag { display: none; }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 100px;
  color: #fff;
}
.hero .eyebrow { color: var(--blue-light); }
.hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 820px;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 2vw, 19px);
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
.hero-tagline {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-light);
}
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); }
.badge svg { width: 20px; height: 20px; color: var(--blue-light); flex-shrink: 0; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--blue-light);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 8px; }
}

/* Trust strip */
.trust-strip {
  background: var(--navy-2);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner p {
  text-align: center;
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Services */
.services { position: relative; background: var(--navy); overflow: hidden; }
.services > .container { position: relative; z-index: 2; }
.services .eyebrow { color: var(--blue-light); }
.services .section-head h2 { color: #fff; }
.services .section-sub { color: rgba(255,255,255,0.72); }
.services-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.8; }
.services-bg canvas { display: block; width: 100%; height: 100%; }
.services-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(45,109,240,0.3), transparent 50%),
    linear-gradient(180deg, rgba(6,11,24,0.25) 0%, rgba(6,11,24,0.55) 60%, var(--navy) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -18px rgba(45,109,240,0.5); border-color: rgba(111,162,255,0.4); }
.service-card.featured {
  background: linear-gradient(160deg, rgba(45,109,240,0.3), rgba(16,31,69,0.65));
  border-color: rgba(111,162,255,0.35);
}
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.14); color: var(--blue-light); }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(111,162,255,0.14);
  color: var(--blue-light);
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon-logos { background: transparent; width: auto; height: auto; padding: 0; display: flex; gap: 8px; }
.service-icon-logos .brand-badge { width: 34px; height: 34px; filter: drop-shadow(0 4px 10px rgba(6,11,24,0.35)); }
.service-card h3 { font-size: 19px; margin-bottom: 12px; color: #fff; }
.service-card p { color: rgba(255,255,255,0.68); font-size: 14.5px; line-height: 1.6; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 22% 18%, rgba(45,109,240,0.55), transparent 62%),
    radial-gradient(circle at 82% 88%, rgba(111,162,255,0.45), transparent 58%);
}
.about-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  border: 4px solid transparent;
  background: linear-gradient(var(--off-white), var(--off-white)) padding-box,
              linear-gradient(135deg, var(--blue-2), var(--blue-light)) border-box;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: calc(var(--radius) - 4px); }
.about-text h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy); margin-bottom: 22px; }
.about-text p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.about-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink); font-weight: 600;
}
.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px; margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

/* Stats */
.stats { background: var(--navy); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--blue-light); }
.stat-label { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; }

/* Portfolio / gallery */
.portfolio { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.gallery-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  color: #fff;
}
.gallery-tile.large { grid-column: span 2; grid-row: span 2; }
.gallery-tile img, .gallery-tile video {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(6,11,24,0.85), transparent);
  font-size: 13px; font-weight: 700;
}
.gallery-play {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,11,24,0.15);
  border: none; padding: 0; margin: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
}
.gallery-play svg {
  width: 56px; height: 56px;
  filter: drop-shadow(0 6px 16px rgba(6,11,24,0.5));
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-play:hover { background: rgba(6,11,24,0.35); }
  .gallery-play:hover svg { transform: scale(1.08); }
}

.video-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,11,24,0.92);
  padding: 40px 20px;
}
.video-lightbox[hidden] { display: none; }
.video-lightbox-inner {
  max-width: 1100px; width: 100%;
}
.video-lightbox-inner video {
  width: 100%; max-height: 85vh;
  border-radius: 12px;
  background: #000;
  display: block;
}
.video-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.gallery-tile.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.55);
  border: 1px dashed rgba(255,255,255,0.25);
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  font-size: 13px; font-weight: 600; text-align: center; padding: 20px;
}
.gallery-tile.placeholder svg { width: 30px; height: 30px; }

/* Process */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-num {
  font-family: var(--font-body);
  font-size: 34px; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-2);
  display: block; margin-bottom: 18px;
}
.process-step h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.process-trust {
  margin-top: 50px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.process-trust svg { width: 26px; height: 26px; color: var(--blue-2); flex-shrink: 0; margin-top: 2px; }
.process-trust p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.process-trust a { color: var(--blue-2); font-weight: 700; text-decoration: underline; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 55%, var(--blue) 140%);
  padding: 90px 0;
  text-align: center;
}
.cta-banner-inner h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; }
.cta-banner-inner p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 34px; }

/* Contact */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy); margin-bottom: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; font-weight: 700; font-size: 15.5px;
}
.contact-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.contact-item a:hover { color: var(--blue); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.hp-field { display: none; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit;
  border: 1.5px solid #dde3f0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--blue-2);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 6px; }

/* Footer */
.site-footer { background: var(--navy); padding: 50px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-tagline { color: var(--blue-light); font-weight: 700; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { display: block; line-height: 0; transition: transform .2s ease; }
.footer-social a:hover { transform: translateY(-3px); }
.footer-social .brand-badge { width: 34px; height: 34px; }
.footer-copy { color: rgba(255,255,255,0.55); font-size: 13.5px; }
.footer-copy a:hover { color: #fff; }

/* Responsive */
.main-nav.open {
  display: flex !important;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  gap: 0;
  background: rgba(6,11,24,0.97);
  backdrop-filter: blur(14px);
  padding: 10px 24px 24px;
  border-bottom: 1px solid var(--border);
}
.main-nav.open a { padding: 14px 0; border-bottom: 1px solid var(--border); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.large { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 18px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-tile.large { grid-column: span 1; grid-row: span 1; }
  .header-actions .btn-small { display: none; }
}
@media (max-width: 460px) {
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .logo { font-size: 14px; gap: 6px; }
  .lang-switch { gap: 2px; padding: 3px; }
  .lang-btn { padding: 6px 7px; }
  .lang-btn span { display: none; }
  .lang-btn .flag { width: 18px; height: 13px; }
}
