/* ── FONTS ── */
@font-face {
  font-family: 'Barlow';
  font-weight: 300;
  font-style: normal;
  src: url('/fonts/Barlow-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 400;
  font-style: normal;
  src: url('/fonts/Barlow-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 500;
  font-style: normal;
  src: url('/fonts/Barlow-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 600;
  font-style: normal;
  src: url('/fonts/Barlow-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 700;
  font-style: normal;
  src: url('/fonts/Barlow-Bold.ttf') format('truetype');
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 15px; font-weight: 400;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: #f60; }
.nav-linkedin {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.nav-linkedin:hover { background: #0077b5; }
.nav-linkedin svg { width: 15px; height: 15px; fill: #fff; }
.nav-lang {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px; padding: 5px 10px;
  font-size: 14px; font-weight: 500; color: #fff; cursor: pointer;
  transition: border-color .2s;
}
.nav-lang:hover { border-color: #f60; }
.nav-lang svg { width: 12px; height: 12px; fill: #fff; opacity:0.6; }

/* ── HERO ── */
#hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 80px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover; background-position: center top;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content h1 {
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.6; margin-bottom: 44px; max-width: 520px;
}
.btn-orange {
  display: inline-block; background: #f60; color: #fff;
  font-size: 15px; font-weight: 500; font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em; padding: 16px 42px; border-radius: 3px;
  transition: background .2s, transform .15s;
}
.btn-orange:hover { background: #e05500; transform: translateY(-1px); }

/* ── SERVICES ── */
#services {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.services-left {
  position: relative;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 100px 60px 100px 80px; overflow: hidden;
}
.services-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/services-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.services-left-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 25% 55%, rgba(15,35,75,0.55) 0%, transparent 65%),
    linear-gradient(to right, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.1) 100%);
}
.services-left-text { position: relative; z-index: 2; max-width: 400px; }
.services-left-text h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500; line-height: 1.25; color: #fff;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.services-left-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.58); line-height: 1.78;
}
.services-right {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 50px; gap: 14px;
  background: rgba(13,13,13,0.6);
}
.services-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(15,30,70,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.service-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 10px; padding: 24px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: background .25s, border-color .25s;
}
.service-card:hover {
  background: rgba(255,100,0,0.055);
  border-color: rgba(255,100,0,0.22);
}
.service-icon {
  width: 46px; min-width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card-text h3 {
  font-size: 16px; font-weight: 600; color: #f60;
  margin-bottom: 7px; letter-spacing: 0.01em;
}
.service-card-text h3 a { color: #f60; }
.service-card-text h3 a:hover { opacity: 0.8; }
.service-card-text p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.58); line-height: 1.7;
}
.card-divider {
  width: 55px; height: 1px;
  background: rgba(255,100,0,0.32); margin-top: 13px;
}

/* ── ABOUT ── */
#about {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.about-left {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/about-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.about-left-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(30,10,5,0.3) 0%, rgba(13,13,13,0.5) 100%);
}
.about-left-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px;
}
.about-spiral { width: 300px; height: 300px; margin: 0 auto 28px; }
.about-left-content h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500; color: #fff;
  letter-spacing: -0.01em; line-height: 1.2;
}
.about-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 60px;
}
.about-right p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.88;
  margin-bottom: 18px;
}
.btn-orange-sm {
  display: inline-block; background: #f60; color: #fff;
  font-size: 14px; font-weight: 500; font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em; padding: 13px 34px; border-radius: 3px;
  margin-top: 10px; transition: background .2s; align-self: flex-start;
}
.btn-orange-sm:hover { background: #e05500; }

/* ── CTA ── */
#cta {
  width: 100%; min-height: 78vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.cta-left {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/cta-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.cta-left-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(80,20,5,0.25) 0%, rgba(13,13,13,0.55) 100%);
}
.cta-globe {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.globe-ring {
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(200,70,40,0.28);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(160,40,15,0.12) 0%, transparent 70%);
  position: relative;
}
.globe-ring::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 38%, rgba(200,60,25,0.35) 0%, transparent 28%),
    radial-gradient(circle at 72% 62%, rgba(180,40,15,0.2) 0%, transparent 22%);
}
.play-btn {
  width: 62px; height: 62px;
  background: rgba(90,90,150,0.72);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.play-btn:hover { background: rgba(110,110,185,0.85); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 4px; }
.cta-label {
  margin-top: 28px;
  font-size: 17px; font-weight: 400; color: #fff;
  text-align: center; line-height: 1.4;
}
.cta-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 60px;
}
.cta-right p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.88;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 80px 28px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 2fr 1.4fr;
  gap: 40px; align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 40px; margin-bottom: 22px; }
.footer-brand address {
  font-style: normal; font-size: 13px;
  line-height: 2; color: rgba(255,255,255,0.42);
}
.footer-brand address a {
  color: rgba(255,255,255,0.5); transition: color .2s;
}
.footer-brand address a:hover { color: #f60; }
.footer-nav {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px 28px; align-items: center;
}
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,0.48); transition: color .2s;
}
.footer-nav a:hover { color: #f60; }
.footer-nav .italic { font-style: italic; }
.footer-social {
  text-align: center; margin-top: 20px;
}
.footer-social p {
  font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 10px;
}
.li-circle {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.li-circle:hover { background: #0077b5; }
.li-circle svg { width: 15px; height: 15px; fill: #fff; }
.footer-legal {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.38); transition: color .2s;
}
.footer-legal a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.28);
}
.footer-bottom strong { font-weight: 600; color: rgba(255,255,255,0.45); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #services, #about, #cta { grid-template-columns: 1fr; }
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  #hero { padding: 110px 32px 70px; }
  .services-left { padding: 60px 32px; justify-content: flex-start; }
  .services-right { padding: 40px 32px 60px; }
  .about-right { padding: 60px 32px; }
  .cta-left { min-height: 360px; }
  .cta-right { padding: 60px 32px; }
  footer { padding: 40px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { align-items: center; }
}
