/*
Theme Name: Robotizuokis
Theme URI: https://robotizuokis.lt
Author: Robotizuokis.lt
Description: Custom tema robotizuokis.lt — verslo procesų automatizavimas su RPA technologijomis.
Version: 2.0.1
License: GNU General Public License v2 or later
Text Domain: robotizuokis
*/

/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy:       #0D1B2A;
  --navy-deep:  #080F18;
  --blue:       #1A56A0;
  --blue-mid:   #2368B8;
  --blue-light: #3B82F6;
  --cyan:       #06B6D4;
  --accent:     #00D4AA;
  --white:      #F8FAFF;
  --gray-50:    #F5F7FF;
  --gray-100:   #EEF2F9;
  --gray-300:   #C4CEDF;
  --gray-400:   #8B9BB4;
  --gray-600:   #4A5568;
  --gray-800:   #1E2A3A;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(26,86,160,0.08);
  --shadow-lg:  0 12px 48px rgba(26,86,160,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 72px;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  gap: 2rem;
}

/* WP admin bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo-text span { color: var(--cyan); }

/* Logo img */
.site-logo-img { display: block; height: auto; width: auto; max-width: 200px; }

.main-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-menu li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(248,250,255,0.65);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: block;
}
.nav-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--cyan); }

.nav-menu li.menu-item-cta > a {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.1rem !important;
  margin-left: 0.5rem;
}
.nav-menu li.menu-item-cta > a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  background: var(--cyan) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,15,24,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  padding: 1rem 5vw 1.5rem;
  z-index: 9998;
  flex-direction: column;
  gap: 0.25rem;
}
.admin-bar .nav-mobile { top: calc(72px + 32px); }
.nav-mobile.open { display: flex; }

.nav-mobile a,
.nav-mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(248,250,255,0.7);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: block;
  text-decoration: none;
}
.nav-mobile a:hover,
.nav-mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-mobile .nav-cta,
.nav-mobile-menu .nav-cta,
.nav-mobile-menu .menu-item-cta > a {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.85rem 1rem !important;
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════ */
.site-main {
  padding-top: 72px;
}
.admin-bar .site-main { padding-top: calc(72px + 32px); }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(248,250,255,0.4);
  padding: 0.75rem 0 1.5rem;
}
.breadcrumbs a { color: var(--cyan); transition: opacity 0.2s; }
.breadcrumbs a:hover { opacity: 0.75; }
.breadcrumbs span { color: rgba(248,250,255,0.25); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--cyan); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 580px;
  margin-bottom: 3rem;
}
.section-center .section-sub { margin-left: auto; margin-right: auto; }
.section-sub.light { color: rgba(248,250,255,0.55); }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { padding: 96px 5vw; }
.section.dark { background: var(--navy); }
.section.darker { background: var(--navy-deep); }
.section.light-bg { background: var(--gray-100); }
.section.white { background: var(--white); }

.container { max-width: 1200px; margin: 0 auto; }
.section-center { text-align: center; }

/* ═══════════════════════════════════════════
   HERO — PAGRINDINIS
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5vw;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 72% 38%, rgba(26,86,160,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 18% 72%, rgba(6,182,212,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 80%, rgba(0,212,170,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.3; transform:scale(0.6); }
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--cyan) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.78;
  color: rgba(248,250,255,0.62);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex; gap: 0.875rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(6,182,212,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(6,182,212,0.5);
  color: var(--navy);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: rgba(248,250,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  border: 1px solid rgba(248,250,255,0.18);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(248,250,255,0.45);
  background: rgba(248,250,255,0.05);
  color: rgba(248,250,255,0.85);
}

.btn-blue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(26,86,160,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,86,160,0.5);
  color: white;
}

/* Hero stats */
.hero-stats {
  display: flex; flex-direction: column; gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.stat-card:hover {
  border-color: rgba(6,182,212,0.4);
  background: rgba(255,255,255,0.06);
}

.stat-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,86,160,0.5), rgba(6,182,212,0.25));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.stat-icon svg { width: 22px; height: 22px; stroke: var(--cyan); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; width: 32px; height: 32px; color: var(--blue); }
.benefit-icon svg { width: 32px; height: 32px; stroke: var(--blue); }
.service-card-icon { font-size: 1.5rem; margin-bottom: 0.875rem; width: 28px; height: 28px; color: var(--blue); }
.service-card-icon svg { width: 28px; height: 28px; stroke: var(--blue); }

.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-content > *:nth-child(3) { animation-delay: .35s; }
.hero-content > *:nth-child(4) { animation-delay: .48s; }
.stat-card:nth-child(1) { opacity:0; animation: fadeUp .6s .3s forwards; }
.stat-card:nth-child(2) { opacity:0; animation: fadeUp .6s .45s forwards; }
.stat-card:nth-child(3) { opacity:0; animation: fadeUp .6s .6s forwards; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { opacity: 1; animation: none; }
  .stat-card { opacity: 1 !important; animation: none !important; }
}

/* ═══════════════════════════════════════════
   PAGE HERO MINI (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 80px 5vw 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 25% 50%, rgba(26,86,160,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 80% 30%, rgba(6,182,212,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 600px;
}
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(248,250,255,0.6);
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   BENEFIT CARDS
═══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.875rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,86,160,0.08), rgba(6,182,212,0.06));
  border: 1px solid rgba(26,86,160,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.benefit-card:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, rgba(26,86,160,0.15), rgba(6,182,212,0.1));
  border-color: rgba(6,182,212,0.3);
}
.benefit-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.benefit-card p { font-size: 0.875rem; line-height: 1.7; color: var(--gray-600); }

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,160,0.08);
}
.service-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,86,160,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.service-card:hover .service-icon-wrap { background: rgba(6,182,212,0.1); }
.service-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card ul { list-style: none; }
.service-card li {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding: 0.22rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-card li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* Offered services grid (5 cards, centruoti) */
.services-offered-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.services-offered-grid .service-card {
  flex: 1 1 calc(20% - 1.25rem);
  min-width: 190px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
}
.service-card--tall .svc-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.svc-badge {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.2rem 0.65rem;
  background: rgba(6,182,212,0.1);
  color: var(--cyan);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════
   RPA LEVELS
═══════════════════════════════════════════ */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(59,130,246,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.18);
}
.level-card {
  background: rgba(13,27,42,0.96);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
  cursor: default;
}
.level-card:hover { background: rgba(26,86,160,0.22); }

.level-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.level-icon-wrap.l1 { background: rgba(99,102,241,0.15); }
.level-icon-wrap.l2 { background: rgba(6,182,212,0.12); }
.level-icon-wrap.l3 { background: rgba(16,185,129,0.12); }
.level-icon-wrap.l4 { background: rgba(245,158,11,0.12); }

.level-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.badge-1 { background: rgba(99,102,241,0.15); color: #818CF8; }
.badge-2 { background: rgba(6,182,212,0.12);  color: var(--cyan); }
.badge-3 { background: rgba(16,185,129,0.12); color: #34D399; }
.badge-4 { background: rgba(245,158,11,0.12); color: #FBBF24; }

.level-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.level-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(248,250,255,0.5);
  margin-bottom: 1rem;
}
.level-example {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(248,250,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.875rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   STEPS
═══════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 1.25rem;
  padding-bottom: 1.875rem;
}
.step:last-child { padding-bottom: 0; }
.step-line {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.step-connector {
  width: 1px; flex: 1;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-top: 4px;
  min-height: 28px;
}
.step:last-child .step-connector { display: none; }
.step-content h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
  padding-top: 4px;
}
.step-content p { font-size: 0.875rem; line-height: 1.7; color: var(--gray-600); }

/* ═══════════════════════════════════════════
   COMPARE TABLE
═══════════════════════════════════════════ */
.compare-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: 0 4px 16px rgba(13,27,42,0.08);
  background: var(--white);
}
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-cell {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.compare-cell:last-child { border-left: 1px solid var(--gray-100); }
.compare-header { background: var(--navy); }
.compare-header .compare-cell {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none;
  border-color: rgba(255,255,255,0.08) !important;
}
.compare-header .compare-cell:last-child {
  border-left-color: rgba(255,255,255,0.08) !important;
  background: rgba(6,182,212,0.14);
  color: var(--cyan);
}
.compare-cell h5 {
  font-size: 0.72rem; font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.compare-row:not(.compare-header) { background: var(--white); }
.compare-row:last-child .compare-cell { border-bottom: none; }

/* ═══════════════════════════════════════════
   HYPER TECH STACK
═══════════════════════════════════════════ */
.tech-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.tech-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(26,86,160,0.1);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tech-item:hover {
  border-color: var(--blue-light);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.tech-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tech-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); min-width: 140px; }
.tech-desc { font-size: 0.82rem; color: var(--gray-600); }

.vs-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.vs-box h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  color: rgba(248,250,255,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.vs-header { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 0.5rem; padding-bottom: 0.5rem; }
.vs-header span:not(:first-child) {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center;
}
.vs-header span:nth-child(2) { color: rgba(248,250,255,0.85); }
.vs-header span:nth-child(3) { color: var(--cyan); }
.vs-row {
  display: grid; grid-template-columns: 120px 1fr 1fr;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 0.5rem;
}
.vs-label { font-size: 0.75rem; font-weight: 600; color: rgba(248,250,255,0.75); line-height: 1.5; }
.vs-rpa { font-size: 0.8rem; color: rgba(248,250,255,0.9); text-align: left; line-height: 1.5; }
.vs-hyper { font-size: 0.8rem; color: var(--cyan); font-weight: 500; text-align: left; line-height: 1.5; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(26,86,160,0.2); }
.faq-q {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  display: flex; align-items: flex-start; gap: 0.65rem;
}
.faq-q-badge {
  flex-shrink: 0;
  background: var(--blue);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  letter-spacing: 0.05em;
}
.faq-a { font-size: 0.875rem; line-height: 1.7; color: var(--gray-600); padding-left: 1.65rem; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section { background: var(--navy); text-align: center; }
.cta-box {
  background: linear-gradient(135deg, rgba(26,86,160,0.3), rgba(6,182,212,0.14));
  border: 1px solid rgba(6,182,212,0.22);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent);
  top: -120px; right: -80px;
  pointer-events: none;
}
.cta-contacts {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.cta-link {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(248,250,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cta-link:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.contact-info-item h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}
.contact-info-item a,
.contact-info-item p {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group textarea { height: 120px; resize: vertical; }

.form-message {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.form-message.success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  color: #059669;
}
.form-message.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #dc2626;
}

/* ═══════════════════════════════════════════
   TWO-COLUMN LAYOUT
═══════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.two-col-center { align-items: center; }

/* ═══════════════════════════════════════════
   INFO BOX / TIP
═══════════════════════════════════════════ */
.tip-box {
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-top: 1.5rem;
}
.tip-box strong { color: var(--navy); }

/* ═══════════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════════ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 5vw;
}
.privacy-content h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.privacy-content p,
.privacy-content li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}
.privacy-content ul { padding-left: 1.5rem; }
.privacy-content ul li { list-style: disc; }
.privacy-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 2rem; font-size: 0.875rem; }
.privacy-content th { background: var(--navy); color: var(--white); font-family: 'Manrope', sans-serif; font-weight: 600; padding: 0.65rem 1rem; text-align: left; }
.privacy-content td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); vertical-align: top; }
.privacy-content tr:last-child td { border-bottom: none; }
.privacy-content tr:nth-child(even) td { background: var(--gray-100); }

/* ═══════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════ */
.page-404 {
  background: var(--navy);
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 5vw;
}
.page-404-inner { max-width: 500px; }
.page-404-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 9rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.page-404 h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-404 p {
  color: rgba(248,250,255,0.55);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-logo-text span { color: var(--cyan); }
.footer-logo-img { display: block; height: auto; width: auto; max-width: 150px; }

.footer-copy { font-size: 0.8rem; color: rgba(248,250,255,0.65); }
.footer-link {
  font-size: 0.8rem;
  color: rgba(248,250,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 200px; }
  .levels-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .site-header { height: 64px; padding: 0 4vw; }
  .site-main { padding-top: 64px; }
  .admin-bar .site-header { top: 46px; }
  .admin-bar .site-main { padding-top: calc(64px + 46px); }

  .main-navigation { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { top: 64px; }
  .admin-bar .nav-mobile { top: calc(64px + 46px); }

  .hero { padding: 60px 4vw 50px; min-height: auto; }
  .hero h1 { font-size: 1.85rem; max-width: 100%; }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-blue { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: unset; }

  .section { padding: 64px 4vw; }
  .page-hero { padding: 56px 4vw 44px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-offered-grid .service-card { flex: 1 1 calc(50% - 1.25rem); max-width: none; }
  .levels-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Center card content on mobile */
  .benefit-card { text-align: center; }
  .benefit-icon-wrap { margin-left: auto; margin-right: auto; }

  .service-card { text-align: center; }
  .service-icon-wrap { margin-left: auto; margin-right: auto; }
  .service-card li { justify-content: center; }

  .level-card { text-align: center; }
  .level-icon-wrap { margin-left: auto; margin-right: auto; }
  .level-badge { display: inline-block; }

  .section-tag { display: block; }
  .section-sub { text-align: center; }

  .site-logo-img { max-width: 160px; }

  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 1rem; }

  .site-footer { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.65rem; }
  .section-sub { margin-bottom: 2rem; font-size: 0.975rem; }

  .vs-box { padding: 1.5rem; }
  .vs-header, .vs-row { grid-template-columns: 90px 1fr 1fr; }

  .contact-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .cta-box { padding: 2rem 1rem; }
  .services-offered-grid .service-card { flex: 1 1 100%; max-width: none; }
  .vs-box { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vs-header, .vs-row { grid-template-columns: 70px 1fr 1fr; min-width: 320px; }
  .vs-label { font-size: 0.68rem; }
  .vs-rpa, .vs-hyper { font-size: 0.72rem; }
}
