@charset "UTF-8";
/* Variables */
:root {
  --blue-900: #071e35;
  --blue-800: #0b3259;
  --blue-700: #0e4880;
  --blue-600: #1260a8;
  --blue-500: #1a7fc1;
  --blue-400: #2e97d6;
  --blue-300: #6bbde8;
  --blue-200: #a8d8f5;
  --blue-100: #d4ecfb;
  --blue-50:  #edf6fd;
  --bg:       #eef5fb;
  --bg2:      #f5f9fd;
  --white:    #ffffff;
  --text:     #071e35;
  --text2:    #2a4a6b;
  --text3:    #5a7a99;
  --border:   #c0d9ee;
  --radius:   14px;
  --radius-lg:22px;
  --shadow:   0 4px 24px rgba(26,127,193,0.13);
  --shadow-lg:0 12px 48px rgba(10,50,100,0.16);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Utilities */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,127,193,0.1);
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-600);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.btn-primary:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,127,193,0.35);
}

.btn-blue:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,127,193,0.45);
}

.btn-blue.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Language Selection Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,30,53,0.72);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: overlayIn 0.3s ease;
}

.modal-overlay.visible {
  display: flex;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.modal-logo-img {
  width: 56px; height: 56px;
  border-radius: 50%;
}

.modal-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-600);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text3);
  margin-bottom: 32px;
}

.lang-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg2);
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.lang-btn:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  color: var(--blue-600);
  transform: translateX(4px);
}

.lang-flag { font-size: 1.6rem; }
.lang-name { font-size: 1rem; font-weight: 600; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--blue-900);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--blue-400);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
}

.cookie-btn-accept:hover { background: var(--blue-300); }

.cookie-btn-details {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.cookie-btn-details:hover { background: rgba(255,255,255,0.18); }

/* Cookie Details Modal */
.cookie-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.cookie-modal-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.cookie-modal-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.cookie-modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.2rem;
  color: var(--text2);
  transition: var(--transition);
}

.cookie-modal-close:hover { background: var(--blue-100); color: var(--blue-600); }

.cookie-modal-body {
  padding: 28px 36px 32px;
}

.cookie-modal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.cookie-modal-body h3:first-child { margin-top: 0; }

.cookie-modal-body p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
}

.cookie-type-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}

.cookie-type-card strong {
  display: block;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.cookie-type-card p {
  font-size: 0.88rem;
  color: var(--text2);
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7,30,53,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img { width: 38px; height: 38px; border-radius: 50%; }

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-toggle:hover, .nav-dropdown.open .dropdown-toggle {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.dropdown-arrow {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}

.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px;
  padding-top: 16px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  animation: dropIn 0.2s ease;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown:hover .dropdown-toggle {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.dropdown-menu a svg { width: 16px; height: 16px; opacity: 0.6; }

/* Nav right: hamburger only (lang widget is fixed separately) */
.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* Fixed Language Widget */
#langWidget {
  position: fixed;
  top: 14px;
  right: 24px;
  z-index: 9999;
}

#langWidgetBtn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(7,30,53,0.82);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  font-family: inherit;
}

#langWidgetBtn:hover {
  background: rgba(26,127,193,0.55);
  border-color: rgba(255,255,255,0.38);
}

#langArrow {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

#langMenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--blue-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

#langMenu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
  transition: var(--transition);
}

#langMenu button:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Footer language switcher */
.footer-lang {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-lang-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.footer-lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

.footer-lang-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 40%, var(--blue-700) 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,127,193,0.35) 0%, transparent 70%);
  top: -150px; right: -100px;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,151,214,0.2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(107,189,232,0.2) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation-delay: -5s;
}

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

/* Grid dots overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--blue-200);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-300);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .gradient-text {
  background: linear-gradient(120deg, var(--blue-300) 0%, #7dd3fa 50%, var(--blue-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual - floating card mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
  animation: cardFloat 6s ease-in-out infinite;
}

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

.hc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hc-logo {
  width: 44px; height: 44px;
  background: var(--blue-400);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.hc-title { font-size: 1rem; font-weight: 700; color: var(--white); }
.hc-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.hc-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.hc-bar {
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-300));
  animation: barGrow 3s ease-in-out infinite alternate;
}

@keyframes barGrow {
  from { width: 30%; }
  to   { width: 100%; }
}

.hc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hc-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}

.hc-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.hc-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* About Section */
.about {
  padding: 96px 0;
  background: var(--bg2);
}

.about-header { margin-bottom: 64px; }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--blue-100);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.stats-header .section-badge {
  background: rgba(255,255,255,0.1);
  color: var(--blue-200);
  border: 1px solid rgba(255,255,255,0.15);
}

.stats-header .section-badge::before { background: var(--blue-300); }

.stats-header .section-title { color: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-item:hover { background: rgba(255,255,255,0.07); }

.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Services Preview */
.services-preview {
  padding: 96px 0;
  background: var(--bg);
}

.services-preview .section-desc { max-width: 580px; }

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(26,127,193,0.3);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--blue-600); }

/* References Section */
.references-section {
  padding: 96px 0;
  background: var(--bg);
}

.references-header {
  margin-bottom: 56px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ref-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ref-preview {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--bg);
  overflow: hidden;
}

.ref-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.ref-card:hover .ref-preview img {
  transform: scale(1.03);
}

.ref-preview-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.ref-preview img.broken + .ref-preview-fallback,
.ref-preview-fallback.show {
  display: flex;
}

.ref-domain-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.ref-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.ref-browser-dots {
  display: flex;
  gap: 4px;
}

.ref-browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.ref-body {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}

.ref-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ref-url {
  font-size: 0.82rem;
  color: var(--text3);
}

.ref-visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--blue-200);
  white-space: nowrap;
  transition: var(--transition);
}

.ref-visit:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

/* CTA Section */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-section .section-badge {
  background: rgba(255,255,255,0.12);
  color: var(--blue-100);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
}
.cta-section .section-badge::before { background: var(--blue-200); }

.cta-section .section-title { color: var(--white); margin-bottom: 20px; }

.cta-section .section-desc {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 40px;
}

.cta-btn-wrap {
  position: relative;
  display: inline-block;
}

/* References Teaser */
.ref-teaser-section {
  padding: 80px 0;
  background: var(--bg2);
}

.ref-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}

.ref-teaser-text .section-badge { margin-bottom: 12px; }

.ref-teaser-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.ref-teaser-text p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
}

@media (max-width: 768px) {
  .ref-teaser-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
  .ref-teaser-inner .btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* Footer */
.footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img { width: 36px; height: 36px; border-radius: 50%; }

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-rights {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* Scroll To Top */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,127,193,0.45);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,127,193,0.55);
}

.scroll-top-btn svg { width: 22px; height: 22px; }

/* Service Page */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero .hero-badge { margin-bottom: 20px; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

.features-section {
  padding: 96px 0;
  background: var(--bg2);
}

.features-header { margin-bottom: 64px; }

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

.features-grid .feature-card { padding: 32px 28px; }

.process-section {
  padding: 96px 0;
  background: var(--bg);
}

.process-header { margin-bottom: 64px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-300), var(--blue-200));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(26,127,193,0.4);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
}

/* Contact Page */
.contact-section {
  padding: 96px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

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

.contact-info-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Form */
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  font-size: 0.92rem;
  color: var(--text);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,127,193,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success, .form-error {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}

.form-success.visible { display: block; background: #d1fae5; color: #065f46; }
.form-error.visible   { display: block; background: #fee2e2; color: #991b1b; }

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 12px;
  line-height: 1.5;
}
.form-privacy-note a {
  color: var(--blue-500);
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hero-content  { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 24px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    border-radius: var(--radius);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    margin-top: 4px;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .hamburger { display: flex; z-index: 1000; }
  #langWidget { display: none; }

  .modal-box { padding: 36px 24px; }
  .cookie-modal-body { padding: 24px; }
  .cookie-modal-header, .cookie-modal-footer { padding: 20px 24px; }
  .contact-form-box { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .scroll-top-btn { bottom: 20px; right: 20px; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-btn-accept, .cookie-btn-details { width: 100%; text-align: center; }
}
