/* ========== ŠRIFTAI ========== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/inter-v20-latin_latin-ext-regular.woff2")
    format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/inter-v20-latin_latin-ext-600.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/outfit-v15-latin_latin-ext-500.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/outfit-v15-latin_latin-ext-600.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/outfit-v15-latin_latin-ext-700.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 800;
  src: url("/assets/fonts/outfit-v15-latin_latin-ext-800.woff2") format("woff2");
  font-display: swap;
  unicode-range:
    U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+2C60-2C7F,
    U+A720-A7FF;
}

/* ========== VARIABLES ========== */
:root {
  --primary: #3664a8;
  --primary-dark: #33325e;
  --accent: #275ba8;
  --accent-light: #3d3a9e;
  --accent-glow: rgba(3, 0, 109, 0.08);
  --bg-white: #fff;
  --bg-section: #f5f7f9;
  --text-primary: #1e1e1e;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-soft: 0 2px 24px rgba(3, 0, 109, 0.06);
  --shadow-hover: 0 12px 48px rgba(3, 0, 109, 0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-btn: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
}
p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 16px;
}

/* ========== LAYOUT ========== */
.site-wrapper {
  overflow: hidden;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVBAR ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  transition: box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(15, 42, 68, 0.06);
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: width 0.35s var(--ease);
}
.nav__link:hover {
  color: var(--text-primary);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-btn);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 42, 68, 0.18);
}

/* Nav phone — hidden desktop */
.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: background 0.3s var(--ease);
  white-space: nowrap;
}
.nav__phone i {
  font-size: 11px;
}
.nav__phone:hover {
  background: var(--accent-light);
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 1100;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background 0.2s ease;
  will-change: transform, opacity;
}
.nav__burger.open span {
  background: white;
}
.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 46, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ========== HERO ========== */
.hero {
  padding: 80px 24px 0;
  background: var(--bg-white);
  overflow: hidden;
}
.hero__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
  background: var(--bg-section);
  border-radius: 24px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.hero__text {
  padding: 56px 48px;
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
  margin-top: 12px;
}
.hero__svc-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hero__svc-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--primary);
}
.hero__svc-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero__svc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.3;
}
.hero__svc-link span {
  line-height: 1.35;
}
.hero__svc-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.hero__svc-icon--wide {
  width: 36px;
  height: 36px;
}
.hero__svc-link:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(46, 111, 149, 0.08);
  transform: translateY(-2px);
}
.hero__svc-link:hover .hero__svc-icon {
  opacity: 1;
}
.hero__svc-links--wide {
  grid-column: span 2;
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.hero__svc-links--wide .hero__svc-icon {
  color: rgba(255, 255, 255, 0.7);
}
.hero__svc-links--wide:hover .hero__svc-icon {
  color: white;
}
.hero__svc-links--wide:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ========== PHONE BAR ========== */
.phone-bar {
  padding: 16px 0;
  background: white;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.phone-bar__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.phone-bar__card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}
.phone-bar__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.phone-bar__icon svg {
  width: 100%;
  height: 100%;
}
.phone-bar__text {
  flex: 1;
  min-width: 0;
}
.phone-bar__label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.phone-bar__number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
}
.phone-bar__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.phone-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border);
}
.phone-bar__badge i {
  font-size: 12px;
}
.phone-bar__badge--accent {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.phone-bar__desktop-only {
  display: inline-flex;
}

/* ========== SECTIONS ========== */
.sec {
  padding: 100px 0;
  overflow: hidden;
}
.sec--gray {
  background: var(--bg-section);
}
.sec__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.sec__head {
  max-width: 640px;
  margin-bottom: 48px;
}
.sec__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sec__head p {
  margin-top: 16px;
  font-size: 17px;
  max-width: 520px;
}
.sec__head--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ========== SERVICE CARDS ========== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover img {
  transform: scale(1.05);
}
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(61, 60, 60, 0.85) 0%,
    rgba(102, 107, 112, 0.2) 60%,
    transparent 100%
  );
}
.svc-card__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.svc-card__body h3 {
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 6px;
}
.svc-card__body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.svc-card--wide {
  grid-column: span 2;
  aspect-ratio: 21 / 8;
}

/* ========== FEATURE CARDS ========== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  padding: 36px 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  text-align: center;
}
.feat-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.feat-card__illus {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}
.feat-card__illus svg {
  width: 100%;
  height: 100%;
}
.feat-card h3 {
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 15px;
}

/* ========== SPLIT SECTIONS ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse {
  direction: rtl;
}
.split--reverse > * {
  direction: ltr;
}
.split__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.split__img:hover img {
  transform: scale(1.03);
}
.split__text h2 {
  margin-bottom: 16px;
}
.split__text > p {
  margin-bottom: 20px;
  font-size: 16px;
}
.split__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.split__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 500;
}
.split__list li i {
  color: var(--primary);
  font-size: 8px;
  margin-top: 7px;
  flex-shrink: 0;
}
.split__note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(3, 0, 109, 0.04);
}
.split__note i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

/* ========== WHY US CARDS ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.why-card__illus {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}
.why-card__illus svg {
  width: 100%;
  height: 100%;
}
.why-card h3 {
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.65;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.btn--accent {
  background: var(--accent);
  color: white;
}
.btn--accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46, 111, 149, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--dark {
  background: var(--primary);
  color: white;
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: var(--primary);
  border: 2px solid white;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease);
  width: auto;
}
.btn--white:hover {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ========== SITE BOTTOM ========== */
.site-bottom {
  position: relative;
  overflow: hidden;
}
.site-bottom__bg {
  position: absolute;
  inset: 0;
}
.site-bottom__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-bottom__overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 53, 0.72);
  backdrop-filter: blur(2px);
}
.site-bottom__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.site-bottom__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.site-bottom__cta a {
  width: auto;
  align-self: flex-start;
}
.site-bottom__cta h2 {
  color: white;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 24px;
  max-width: 400px;
  line-height: 1.2;
}
.site-bottom__card {
  background: var(--bg-section);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-bottom__logo {
  margin-bottom: 24px;
}
.site-bottom__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-bottom__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 360px;
}
.site-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.site-bottom__links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  transition: color 0.3s var(--ease);
}
.site-bottom__links a:hover {
  color: var(--accent-light);
}
.site-bottom__copy {
  font-size: 13px;
  color: var(--text-light);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.c-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-section);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.c-card:hover {
  background: white;
  box-shadow: var(--shadow-soft);
}
.c-card__ic {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.c-card__ic i {
  font-size: 18px;
  color: white;
}
.c-card__label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.c-card__val {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
}
.c-card__val a {
  transition: color 0.3s var(--ease);
}
.c-card__val a:hover {
  color: var(--accent);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form h3 {
  margin-bottom: 20px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.fg input,
.fg textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: white;
}
.fg input.err,
.fg textarea.err {
  border-color: #e53e3e;
}
.fg .err-msg {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.fg input.err ~ .err-msg,
.fg textarea.err ~ .err-msg {
  display: block;
}
.fg textarea {
  min-height: 100px;
  resize: vertical;
}
.form-ok {
  display: none;
  padding: 14px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
.form-ok.show {
  display: block;
}
.form-err {
  display: none;
  padding: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
.form-err.show {
  display: block;
}
.recaptcha-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}
.recaptcha-note a {
  color: var(--text-secondary);
  text-decoration: underline;
}
.consent-row .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.consent-row .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}
.consent-row .checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* ========== COOKIE BAR ========== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2000;
  font-size: 13px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  overflow: hidden;
}
.cookie-bar.show {
  transform: translateY(0);
}
.cookie-bar.hide {
  transform: translateY(100%);
}
.cookie-bar p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.cookie-bar__btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}
.cookie-bar__btn:hover {
  background: var(--accent-light);
  color: white;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-left.vis {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-right.vis {
  opacity: 1;
  transform: translateX(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* ==========================================================
   RESPONSIVE — VISKAS VIENOJE VIETOJE, BE DUBLIKATŲ
   ========================================================== */

@media (max-width: 1024px) {
  /* Nav */
  .nav__burger {
    display: flex;
  }
  .nav__phone {
    display: inline-flex;
    margin-left: auto;
    margin-right: 12px;
  }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100dvh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .nav__links.open {
    transform: translateX(0);
  }
  .nav__links .nav__link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
  }
  .nav__links .nav__link::after {
    display: none;
  }
  .nav__links .nav__link:hover {
    color: white;
  }
  .nav__cta-btn {
    margin-top: 12px;
    margin-left: 0;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 28px;
  }
  /* Hero */
  .hero__card {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0 12px;
    border-radius: 20px;
  }
  .hero__text {
    padding: 40px 28px 32px;
  }
  .hero__visual {
    min-height: 280px;
    order: -1;
  }
  .hero__svc-links {
    grid-template-columns: 1fr;
  }
  .hero__svc-links--wide {
    grid-column: span 1;
  }
  /* Grids */
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card--wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  /* Bottom */
  .site-bottom__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .site-bottom__cta {
    padding: 40px 28px;
    text-align: center;
    align-items: center;
  }
  .site-bottom__cta h2 {
    max-width: 100%;
  }
  .site-bottom__card {
    padding: 36px 28px;
    text-align: center;
    align-items: center;
  }
  .site-bottom__logo {
    display: flex;
    justify-content: center;
  }
  .site-bottom__logo-img {
    margin: 0 auto;
  }
  .site-bottom__links {
    justify-content: center;
  }
  .site-bottom__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .site-bottom__cta a {
    align-self: center;
  }
  #paslaugos .sec__head {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sec {
    padding: 64px 0;
  }
  .container {
    padding: 0 20px;
  }
  .nav__logo-img {
    height: 30px;
  }
  .sec__head {
    margin-bottom: 36px;
  }
  .contact-form {
    padding: 24px;
  }
  .map-wrap {
    height: 180px;
  }
  .phone-bar__card {
    padding: 16px;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .phone-bar__icon {
    width: 48px;
    height: 48px;
  }
  .phone-bar__text {
    flex: unset;
  }
  .phone-bar__number {
    font-size: 1.15rem;
  }
  .phone-bar__desktop-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .sec {
    padding: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
  .nav__wrap {
    padding: 12px 16px;
  }
  .nav__phone span {
    display: none;
  }
  .nav__phone {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
  }
  .nav__phone i {
    font-size: 14px;
  }
  .hero {
    padding-top: 64px;
  }
  .hero__card {
    margin: 0 8px;
    border-radius: 16px;
  }
  .hero__text {
    padding: 24px 18px 28px;
  }
  .hero__visual {
    min-height: 200px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero__desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .hero__svc-link {
    padding: 12px 14px;
    font-size: 13px;
  }
  .hero__svc-icon {
    width: 36px;
    height: 36px;
  }
  .hero__svc-icon--wide {
    width: 30px;
    height: 30px;
  }
  .phone-bar__card {
    padding: 14px;
  }
  .phone-bar__icon {
    width: 44px;
    height: 44px;
  }
  .phone-bar__number {
    font-size: 1.1rem;
  }
  .svc-card {
    aspect-ratio: 4/3;
  }
  .contact-form {
    padding: 20px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  .feat-card {
    padding: 28px 20px;
  }
  .why-card {
    padding: 24px 18px;
  }
  .feat-card__illus {
    width: 56px;
    height: 56px;
  }
  .why-card__illus {
    width: 44px;
    height: 44px;
  }
  .split__img {
    aspect-ratio: 3/2;
  }
  .site-bottom__cta {
    padding: 32px 20px;
  }
  .site-bottom__card {
    padding: 28px 20px;
  }
  .cookie-bar {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .cookie-bar p {
    font-size: 12px;
  }
  .cookie-bar__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
