/* ===========================
   ELTOMAS — MAIN STYLESHEET
   v1.0.2
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

/* Gilroy — įdėk failus į assets/fonts/ */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
       url('../fonts/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
       url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   VARIABLES
   =========================== */
:root {
  --yellow:      #fdca01;
  --yellow-dark: #e0b300;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark2:       #181818;
  --white:       #ffffff;
  --light:       #f7f7f5;
  --light2:      #eeeeeb;
  --text:        #1a1a1a;
  --text-muted:  #777777;
  --text-light:  #aaaaaa;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --font:        'Gilroy', 'Barlow', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.3s;
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ===========================
   TYPOGRAPHY — UNIFIED
   =========================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Section label — same everywhere */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
/* On dark bg */
.section--dark .section-label,
.section--black .section-label {
  color: var(--yellow);
}

/* Section title — same size everywhere */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}
.section--dark .section-title,
.section--black .section-title { color: var(--white); }

.section-title span { color: var(--yellow); }

/* Section desc — same everywhere */
.section-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
}
.section--dark .section-desc,
.section--black .section-desc { color: var(--text-light); }

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
}

.section        { padding: 96px 0; }
.section--dark  { background: var(--dark2); }
.section--black { background: var(--black); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

/* ===========================
   BUTTONS — UNIFIED
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease), border-color var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn--yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn--black {
  background: var(--black);
  color: var(--white);
}
.btn--black:hover { background: var(--dark2); color: var(--white); transform: translateY(-2px); }

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.2);
}
.btn--outline-dark:hover { box-shadow: inset 0 0 0 1.5px var(--yellow); color: var(--text); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.25);
}
.btn--outline-light:hover { box-shadow: inset 0 0 0 1.5px var(--yellow); color: var(--yellow); }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), border-color var(--t) var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(253,202,1,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }
.logo-text .logo-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-text .logo-name em { color: var(--yellow); font-style: normal; }
.logo-text .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
  display: block;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 36px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--t) var(--ease);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--t) var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.02em;
  transition: color var(--t) var(--ease);
}
.nav-phone:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-menu { flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu .nav-menu a { font-size: 1.4rem; color: var(--white); letter-spacing: 0.04em; }
.mobile-menu .nav-phone { font-size: 1.1rem; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(30%);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.70) 40%,
    rgba(10,10,10,0.25) 65%,
    rgba(10,10,10,0.05) 100%
  );
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
}

.hero-diagonal {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 46%;
  background: var(--white);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.025;
  z-index: 0;
}

/* Hero bolt visual */
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero-bolt svg {
  width: 300px;
  filter: drop-shadow(0 0 80px rgba(253,202,1,0.35)) drop-shadow(0 0 30px rgba(253,202,1,0.2));
  animation: boltFloat 5s ease-in-out infinite;
}
@keyframes boltFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.bolt-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(253,202,1,0.1);
  animation: ringPulse 4s ease-in-out infinite;
}
.bolt-ring:nth-child(1) { width: 380px; height: 380px; }
.bolt-ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 0.6s; border-color: rgba(253,202,1,0.06); }
.bolt-ring:nth-child(3) { width: 620px; height: 620px; animation-delay: 1.2s; border-color: rgba(253,202,1,0.03); }
@keyframes ringPulse {
  0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.4; transform: translate(-50%,-50%) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,202,1,0.08);
  border: 1px solid rgba(253,202,1,0.2);
  padding: 7px 18px;
  margin-bottom: 28px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.hero-badge .dot {
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .t-yellow { color: var(--yellow); display: block; }
.hero-title .t-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.55);
  color: transparent;
  display: block;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--yellow));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   SERVICES — WHITE BG
   =========================== */
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.service-card-img {
  width: calc(100% + 72px);
  height: 200px;
  margin: -44px -36px 28px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2e47 100%);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.service-card:hover { background: var(--light); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color var(--t) var(--ease);
}
.service-card:hover .service-num { color: rgba(253,202,1,0.12); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { background: var(--yellow); color: var(--black); }

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ===========================
   ABOUT — DARK BG
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  z-index: 1;
}
.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}
.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}
.about-border-accent {
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1.5px solid rgba(253,202,1,0.2);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--yellow);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  min-width: 120px;
}
.exp-num { font-size: 2.2rem; font-weight: 600; line-height: 1; display: block; }
.exp-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; display: block; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid rgba(253,202,1,0.4);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.feat-item:hover {
  background: rgba(253,202,1,0.06);
  border-left-color: var(--yellow);
  transform: translateX(4px);
}
.feat-icon {
  width: 38px; height: 38px;
  background: rgba(253,202,1,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.feat-icon svg { width: 16px; height: 16px; }
.feat-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.feat-text p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* ===========================
   PROCESS — LIGHT BG
   =========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.process-step { padding: 0 20px; text-align: center; position: relative; }
.step-num {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.process-step:hover .step-num {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.step-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-body  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   GALLERY — BLACK BG
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark2);
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(30%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity var(--t) var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: 0.82rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   CTA BANNER — YELLOW
   =========================== */
.cta-banner {
  background: var(--yellow);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  border: 50px solid rgba(0,0,0,0.05);
  border-radius: 50%;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.cta-sub { font-size: 0.95rem; color: rgba(0,0,0,0.55); }
.cta-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity var(--t) var(--ease);
}
.cta-phone:hover { opacity: 0.7; }
.cta-phone-ico {
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.cta-phone-ico svg { width: 18px; height: 18px; }

/* ===========================
   CONTACT — WHITE BG
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  margin-top: 56px;
}

.contact-list { margin-top: 36px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-row:first-child { border-top: 1px solid var(--border-light); }
.contact-ico {
  width: 42px; height: 42px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.contact-ico svg { width: 16px; height: 16px; }
.contact-row:hover .contact-ico { background: var(--yellow); color: var(--black); }
.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t) var(--ease);
}
a.contact-val:hover { color: var(--yellow-dark); }

.rekvizitai {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--light);
  border-left: 3px solid var(--yellow);
}
.rekvizitai-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.rekvizitai p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* Contact Form */
.contact-form-box {
  background: var(--light);
  padding: 48px 44px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.form-title { font-size: 1.4rem; font-weight: 600; color: var(--text); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  color: var(--text);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  outline: none;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  appearance: none;
}
.form-control::placeholder { color: rgba(0,0,0,0.25); }
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(253,202,1,0.12); }
textarea.form-control { height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.form-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-msg { margin-top: 12px; font-size: 0.875rem; font-weight: 600; }
.form-msg.ok  { color: #2e7d32; }
.form-msg.err { color: #c62828; }

/* ===========================
   FOOTER — DARK
   =========================== */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-main {
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 36px; }
.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.footer-brand-name em { color: var(--yellow); font-style: normal; }
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 3px;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.soc-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.soc-link svg { width: 14px; height: 14px; }
.soc-link:hover { background: var(--yellow); color: var(--black); }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { width: 13px; height: 13px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 0.85rem; color: var(--text-light); line-height: 1.4; transition: color var(--t) var(--ease); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy  { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-blinks { display: flex; gap: 20px; }
.footer-blinks a { font-size: 0.78rem; color: rgba(255,255,255,0.2); transition: color var(--t) var(--ease); }
.footer-blinks a:hover { color: var(--yellow); }
.footer-dev { font-size: 0.72rem; color: rgba(255,255,255,0.12); }
.footer-dev a { color: rgba(253,202,1,0.35); transition: color var(--t) var(--ease); }
.footer-dev a:hover { color: var(--yellow); }

/* ===========================
   SEO CONTENT SECTION
   =========================== */
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 56px;
  align-items: start;
}

.seo-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.seo-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.seo-content strong {
  color: var(--text);
  font-weight: 600;
}

.seo-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seo-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.seo-block:first-child { padding-top: 0; }
.seo-block:last-child { border-bottom: none; padding-bottom: 0; }

.seo-block h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seo-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.seo-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-kw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-left: 3px solid var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.seo-kw-item:hover {
  background: var(--light2);
  transform: translateX(3px);
}
.seo-kw-item svg {
  width: 15px;
  height: 15px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .seo-grid { grid-template-columns: 1fr; gap: 40px; }
  .seo-keyword-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .seo-keyword-grid { grid-template-columns: 1fr; }
}


.paslauga-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.paslauga-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.paslauga-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: grayscale(10%);
}
.paslauga-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.68) 0%, rgba(10,10,10,0.38) 100%);
}
.paslauga-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
}
.paslauga-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.paslauga-breadcrumb a { color: var(--yellow); transition: color var(--t) var(--ease); }
.paslauga-breadcrumb a:hover { color: var(--white); }
.paslauga-breadcrumb svg { width: 12px; height: 12px; opacity: 0.4; }

.paslauga-hero-icon {
  width: 64px; height: 64px;
  background: rgba(253,202,1,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 24px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.paslauga-hero-icon svg { width: 28px; height: 28px; }

.paslauga-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.paslauga-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Content area */
.paslauga-content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.paslauga-content {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.paslauga-content h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.paslauga-content h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 28px 0 12px;
}
.paslauga-content p { margin-bottom: 20px; }
.paslauga-content ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.paslauga-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.paslauga-content ul li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--yellow);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  flex-shrink: 0;
  margin-top: 2px;
}
.paslauga-content img {
  width: 100%;
  margin: 32px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

/* Sidebar */
.paslauga-sidebar {}
.paslauga-cta-box {
  background: var(--black);
  padding: 36px 32px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  margin-bottom: 24px;
}
.paslauga-cta-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.paslauga-cta-box p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.paslauga-cta-box .btn { width: 100%; justify-content: center; }

.paslauga-other-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.paslauga-other-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.paslauga-other-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), padding-left var(--t) var(--ease);
  border-left: 2px solid transparent;
}
.paslauga-other-list a:hover,
.paslauga-other-list a.current {
  background: var(--light2);
  color: var(--text);
  border-left-color: var(--yellow);
  padding-left: 20px;
}
.paslauga-other-list a.current { pointer-events: none; }
.paslauga-other-list a svg { width: 14px; height: 14px; color: var(--yellow); flex-shrink: 0; }

/* Gallery on service page */
.paslauga-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.paslauga-gallery img {
  width: 100%; height: 240px;
  object-fit: cover;
  margin: 0;
  clip-path: none;
  transition: filter 0.4s var(--ease);
  filter: grayscale(20%);
}
.paslauga-gallery img:hover { filter: grayscale(0%); }

@media (max-width: 1100px) {
  .paslauga-content-wrap { grid-template-columns: 1fr; gap: 48px; }
  .paslauga-sidebar { order: -1; }
  .paslauga-cta-box { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
  .paslauga-cta-box h3 { margin-bottom: 8px; }
  .paslauga-cta-box p { margin-bottom: 0; }
  .paslauga-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .paslauga-hero { padding: 120px 0 60px; }
  .paslauga-cta-box { grid-template-columns: 1fr; }
  .paslauga-gallery { grid-template-columns: 1fr; }
  .paslauga-gallery img { height: 200px; }
}

/* ===========================
   SERVICE CARD LINK
   =========================== */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t) var(--ease), gap var(--t) var(--ease);
}
.service-card-link svg { width: 12px; height: 12px; transition: transform var(--t) var(--ease); }
.service-card:hover .service-card-link { color: var(--text); }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ===========================
   GALLERY FROM CPT
   =========================== */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
}


.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .hero-inner  { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .site-nav .nav-menu, .site-nav .nav-phone, .site-nav .btn.nav-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-box { padding: 28px 20px; }
  .about-img-frame img, .about-img-placeholder { height: 340px; }
  .process-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
}

/* ===========================
   SINGLE PASLAUGA — papildomi stiliai
   =========================== */

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  transition: color var(--t) var(--ease);
}
.back-link svg { width: 14px; height: 14px; }
.back-link:hover { color: var(--yellow); }

/* Lead text */
.paslauga-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Plain bg (no image) */
.paslauga-hero-bg--plain {
  background: var(--dark2);
}

/* Paslauga overlay (inside hero-bg div) */
.paslauga-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 100%);
}

/* Layout */
.paslauga-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Content */
.paslauga-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.paslauga-body h2 { font-size: 1.6rem; color: var(--text); margin: 40px 0 16px; letter-spacing: -0.02em; }
.paslauga-body h3 { font-size: 1.2rem; color: var(--text); margin: 28px 0 12px; }
.paslauga-body p  { margin-bottom: 20px; }
.paslauga-body ul { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.paslauga-body ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.paslauga-body ul li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--yellow);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  flex-shrink: 0;
  margin-top: 3px;
}
.paslauga-body img { width: 100%; margin: 32px 0; }

/* CTA box */
.paslauga-cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  padding: 28px 32px;
  margin-top: 48px;
  border-left: 3px solid var(--yellow);
}
.paslauga-cta-box .paslauga-hero-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.paslauga-cta-box h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0; }
.paslauga-cta-box p  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 8px; }
.paslauga-cta-box .btn { flex-shrink: 0; margin-left: 0; }

/* Sidebar boxes */
.sidebar-box {
  background: var(--light);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.sidebar-box-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.sidebar-box--yellow {
  background: var(--yellow);
}
.sidebar-box--yellow .sidebar-box-title { color: rgba(0,0,0,0.5); }

.sidebar-phone, .sidebar-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  transition: color var(--t) var(--ease);
}
.sidebar-phone svg { width: 16px; height: 16px; color: var(--text-muted); }
.sidebar-phone:hover, .sidebar-email:hover { color: var(--yellow-dark); }
.sidebar-email { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-services li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border-left: 2px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.sidebar-services li a svg { width: 13px; height: 13px; color: var(--yellow); }
.sidebar-services li a:hover {
  border-left-color: var(--yellow);
  padding-left: 18px;
  background: var(--light2);
}

.sidebar-pros {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-pros li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}
.sidebar-pros li svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Service card link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
}
.service-link svg { width: 12px; height: 12px; transition: transform var(--t) var(--ease); }
.service-card:hover .service-link { color: var(--text); }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* Gallery first item from CPT */
.gallery-first { grid-column: span 2; aspect-ratio: 16/9; }

@media (max-width: 1100px) {
  .paslauga-layout { grid-template-columns: 1fr; }
  .paslauga-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .paslauga-cta-box { flex-direction: column; align-items: flex-start; }
  .paslauga-cta-box .btn { margin-left: 0; }
}
@media (max-width: 768px) {
  .paslauga-sidebar { grid-template-columns: 1fr; }
  .gallery-first { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ===========================
   SERVICE PAGE — FEATURES GRID
   =========================== */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-top: 48px;
}
.svc-feature-card {
  background: var(--white);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease);
}
.svc-feature-card:hover { background: var(--light2); }
.svc-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.svc-feature-card:hover::after { transform: scaleX(1); }
.svc-feature-num {
  font-size: 3rem;
  font-weight: 600;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -0.04em;
  transition: color var(--t) var(--ease);
}
.svc-feature-card:hover .svc-feature-num { color: rgba(253,202,1,0.15); }
.svc-feature-icon {
  width: 48px; height: 48px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--text);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.svc-feature-icon svg { width: 20px; height: 20px; }
.svc-feature-card:hover .svc-feature-icon { background: var(--yellow); color: var(--black); }
.svc-feature-title { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.01em; }
.svc-feature-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 1100px) { .svc-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-features-grid { grid-template-columns: 1fr; } .svc-feature-card { padding: 28px 22px; } }

/* ===========================
   SERVICE PAGE — FAQ
   =========================== */
.svc-faq { margin-top: 48px; }
.svc-faq h2 { margin-bottom: 24px; }
.svc-faq-item { border-bottom: 1px solid var(--border-light); }
.svc-faq-item:first-of-type { border-top: 1px solid var(--border-light); }
.svc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t) var(--ease);
}
.svc-faq-q:hover { color: var(--yellow-dark); }
.svc-faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t) var(--ease); color: var(--text-muted); }
.svc-faq-item.open .svc-faq-q svg { transform: rotate(180deg); }
.svc-faq-item.open .svc-faq-q { color: var(--yellow-dark); }
.svc-faq-a { display: none; padding-bottom: 20px; }
.svc-faq-item.open .svc-faq-a { display: block; }
.svc-faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===========================
   SERVICE PAGE — WHY US
   =========================== */
.svc-why-us { margin-top: 28px; padding: 24px; background: var(--light); clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.svc-usp-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.svc-usp-row:last-child { border-bottom: none; padding-bottom: 0; }
.svc-usp-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.svc-usp-row strong { font-size: 0.82rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; text-transform: none; letter-spacing: 0; }
.svc-usp-row p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ===========================
   CONTACT FORM 7 — STILIAI
   =========================== */
.wpcf7 { width: 100%; }

/* CF7 p wrappers — išlyginame */
.wpcf7 p { margin: 0; }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 0; }

/* Grupės layoutas */
.cf7-group { margin-bottom: 16px; }

/* Pirmi du laukai vienoje eilutėje */
.cf7-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf7-row-2 .cf7-group { margin-bottom: 0; }

/* Label */
.wpcf7 label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #555);
  margin-bottom: 6px;
}

/* Inputai */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  color: var(--text, #1a1a1a);
  padding: 13px 16px;
  font-family: var(--font, sans-serif);
  font-size: 0.9rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  box-shadow: none;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--yellow, #fdca01);
  background: #fffdf0;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #aaa;
}
.wpcf7 textarea {
  min-height: 130px;
  resize: vertical;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Submit */
.wpcf7 input[type="submit"] {
  width: 100%;
  background: var(--yellow, #fdca01);
  color: var(--black, #0a0a0a);
  border: none;
  padding: 15px 24px;
  font-family: var(--font, sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 0;
  margin-top: 8px;
  display: block;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--yellow-dark, #e0b300);
}

/* Validacija */
.wpcf7 .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #e53e3e !important;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.85rem;
  border-radius: 0;
  border: none;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
  color: #15803d;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted,
.wpcf7 .wpcf7-spam-blocked {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  color: #b91c1c;
}
.wpcf7 .wpcf7-validation-errors {
  background: #fffbeb;
  border-left: 3px solid var(--yellow, #fdca01);
  color: #92400e;
}
.wpcf7 .wpcf7-spinner { display: none; }

@media (max-width: 600px) {
  .cf7-row-2 { grid-template-columns: 1fr; }
}
.wpcf7 .wpcf7-not-valid {
  border-color: #f87171 !important;
}

/* ===========================
   PRIVATUMO POLITIKA
   =========================== */
.privacy-hero {
  background: var(--dark);
  padding: 140px 0 60px;
}
.privacy-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.privacy-breadcrumb a { transition: color var(--t); }
.privacy-breadcrumb a:hover { color: var(--yellow); }
.privacy-breadcrumb svg { width: 12px; height: 12px; }
.privacy-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 8px; }
.privacy-updated { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Layout */
.privacy-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }

/* TOC */
.privacy-toc {
  position: sticky; top: 100px;
  background: var(--light); padding: 24px;
  border-left: 3px solid var(--yellow);
}
.privacy-toc-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 12px;
}
.privacy-toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.privacy-toc a {
  font-size: 0.82rem; color: var(--text-muted); display: block;
  padding: 5px 0; border-bottom: 1px solid var(--border-light);
  transition: color var(--t);
}
.privacy-toc a:hover { color: var(--yellow-dark); }
.privacy-toc li:last-child a { border-bottom: none; }

/* Content */
.privacy-content { max-width: 720px; }
.privacy-content section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-light); }
.privacy-content section:last-child { border-bottom: none; }
.privacy-content h2 {
  font-size: 1.1rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 16px;
}
.privacy-content h3 {
  font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text); margin: 20px 0 10px;
}
.privacy-content p { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }
.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content a { color: var(--yellow-dark); text-decoration: underline; }
.privacy-content a:hover { color: var(--text); }

/* Info box */
.privacy-info-box {
  background: var(--light); padding: 20px 24px;
  border-left: 3px solid var(--yellow); margin: 16px 0;
}
.privacy-info-box p { font-size: 0.875rem; line-height: 1.8; color: var(--text); margin: 0; }

/* List */
.privacy-list { margin: 12px 0 12px 0; display: flex; flex-direction: column; gap: 8px; }
.privacy-list li {
  font-size: 0.9rem; line-height: 1.7; color: var(--text-muted);
  padding-left: 20px; position: relative;
}
.privacy-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
}

/* Table */
.privacy-table-wrap { overflow-x: auto; margin: 16px 0; }
.privacy-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.privacy-table th {
  background: var(--dark); color: var(--white); text-align: left;
  padding: 10px 14px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.privacy-table td { padding: 10px 14px; border-bottom: 1px solid var(--border-light); color: var(--text-muted); }
.privacy-table tr:last-child td { border-bottom: none; }
.privacy-table tr:nth-child(even) td { background: var(--light); }

@media (max-width: 900px) {
  .privacy-wrap { grid-template-columns: 1fr; gap: 32px; }
  .privacy-toc { position: static; }
}
