@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

a {
  text-decoration: none;
}

/* tamsi mėlyna */
/* mėlyna */
/* cianas */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Regular.ttf");
  font-weight: 400; /* Regular */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Bold.ttf");
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
}
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form input[type=tel],
.wpforms-form input[type=url],
.wpforms-form textarea {
  width: 100% !important;
  margin-bottom: 15px;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  background: #0b1224;
  color: var(#f8fafc);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wpforms-form input[type=text]:focus,
.wpforms-form input[type=email]:focus,
.wpforms-form input[type=tel]:focus,
.wpforms-form input[type=url]:focus,
.wpforms-form textarea:focus {
  border-color: #144ac0;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
  outline: none;
  border-color: #2e3b63;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.35);
}

.wpforms-form textarea {
  min-height: 160px;
}

.wpforms-field {
  display: grid;
  gap: 0.4rem;
}

.wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.7rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  background: linear-gradient(135deg, #144ac0, #1a58bb);
  color: white;
}

.wpforms-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

:root {
  --bg: #0f172a; /* tamsi mėlyna */
  --bg-2:#0b1224;
  --panel:#0b132b;
  --muted:#94a3b8;
  --text:#f8fafc;
  --primary:#144ac0; /* mėlyna */
  --primary-2:#38bdf8; /* cianas */
  --ring: rgba(56,189,248,.35);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 85% 10%, rgba(37, 99, 235, 0.25), transparent 60%), radial-gradient(900px 500px at 20% 20%, rgba(56, 189, 248, 0.18), transparent 60%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  /* svarbu: */
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 85% 10%, 20% 20%, center;
  background-size: 160% 120%, 140% 100%, 100% 100%;
  /* optional – „parallax“ efektui ir mažiau tiling ant aukštų skydų: */
  background-attachment: fixed, fixed, fixed;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* UTIL */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.7rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px var(--ring);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1a58bb);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: #1f2a44;
  color: var(--text);
}

.btn-outline:hover {
  border-color: #2e3b63;
  background: rgba(255, 255, 255, 0.04);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.35) 70%, transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
.logo img {
  width: 100%;
  border-radius: 5px;
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--text);
}

.cta-wrap {
  display: flex;
  gap: 0.75rem;
}

/* HERO */
.hero {
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

h1 {
  font-size: clamp(2.1rem, 4vw + 0.5rem, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 60ch;
  margin-bottom: 2rem;
}

.hero-illus {
  position: relative;
  isolation: isolate;
  background: radial-gradient(800px 400px at 50% 0%, rgba(56, 189, 248, 0.18), transparent 60%);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow);
}
.hero-illus img {
  width: 100%;
  height: auto;
  display: block;
}

.glow {
  position: absolute;
  inset: auto -25% -25% -25%;
  height: 70%;
  z-index: -1;
  background: radial-gradient(60% 60% at 70% 30%, rgba(37, 99, 235, 0.25), transparent 60%);
  filter: blur(22px);
}

/* PASLAUGOS */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 2vw + 0.6rem, 2.2rem);
  margin: 0 0 1.25rem;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.card h3 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.card p {
  color: var(--muted);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(148, 163, 184, 0.22);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(56, 189, 248, 0.15));
  border: 1px solid rgba(148, 163, 184, 0.16);
}
.icon img {
  width: 100%;
  height: 100%;
}

/* APIE MUS */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media {
  background: #0c1326;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media img {
  width: 100%;
  height: auto;
  display: block;
}

.bullets {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.bullets li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(37, 99, 235, 0.25));
  border: 1px solid rgba(148, 163, 184, 0.18);
  align-content: center;
}

/* KLIENTAI */
.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: center;
  opacity: 0.85;
  filter: grayscale(1);
}

.logos svg {
  width: 100%;
  height: auto;
}

.logos .item {
  background: #0c1428;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 1rem;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.logos .item:hover {
  filter: none;
  opacity: 1;
}

/* KONTAKTAI */
form {
  display: grid;
  gap: 1rem;
  max-width: 680px;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.input, .textarea {
  background: #0b1224;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.textarea {
  min-height: 160px;
}

.input:focus, .textarea:focus {
  outline: none;
  border-color: #2e3b63;
  box-shadow: 0 0 0 6px var(--ring);
}

/* FOOTER */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
  line-height: 1.4rem;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
}

.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.fine {
  color: #8fa0ba;
  font-size: 1rem;
  margin-top: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-wrap-2 {
    display: none;
  }
}
@media (max-width: 720px) {
  nav ul {
    display: none;
  }
  .cta-wrap {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 4rem 0 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
