/* ============ Margentūra · /auditas landing ============ */
/* Self-contained: does not load the main site styles.css. */

@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/Raleway-Italic-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --blue: #4D55F5;
  --blue-deep: #3A41D8;
  --blue-tint: #EDEEFE;
  --lime: #BDFD1F;
  --ink: #111111;
  --gray: #5A5A66;
  --line: #E4E4EC;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1120px;
  --ease: cubic-bezier(.22, .8, .26, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 460;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, .eyebrow {
  font-style: italic;
  font-weight: 860;
  letter-spacing: -0.015em;
  line-height: 1.07;
  text-transform: lowercase;
}
h1 { font-size: clamp(2.15rem, 7.4vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 5.4vw, 3rem); margin-bottom: .45em; }
h3 { font-size: clamp(1.25rem, 3.6vw, 1.6rem); }
.dot-lime { color: var(--lime); font-style: italic; }
.dot-blue { color: var(--blue); font-style: italic; }

.eyebrow {
  font-size: .95rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--blue);
}
.eyebrow-lime { color: var(--lime); }

.lead { font-size: clamp(1.02rem, 2.4vw, 1.18rem); max-width: 46rem; }

/* ---------- Sections ---------- */
.s { padding: clamp(3.4rem, 9vw, 6.2rem) 0; position: relative; overflow: hidden; }
.s-blue { background: var(--blue); color: var(--white); }
.s-white { background: var(--white); color: var(--ink); }
.s-blue .eyebrow { color: var(--lime); }
.s-blue .lead { color: rgba(255,255,255,.92); }
.s-white .lead { color: var(--gray); }

/* One wavy accent per section */
.wave { position: absolute; pointer-events: none; opacity: .9; }
.wave-tr { top: clamp(10px, 4vw, 36px); right: -40px; width: clamp(170px, 30vw, 330px); }
.wave-bl { bottom: clamp(10px, 4vw, 34px); left: -36px; width: clamp(150px, 26vw, 290px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 1.02rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-white { background: var(--white); color: var(--blue); box-shadow: 0 14px 34px -14px rgba(0,0,0,.45); }
.btn-white:hover { background: #F4F5FF; }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 14px 34px -16px rgba(77,85,245,.75); }
.btn-blue:hover { background: var(--blue-deep); }
.btn-ghost-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-w:hover { background: rgba(255,255,255,.1); }
.btn-lg { width: 100%; }
@media (min-width: 620px) { .btn-lg { width: auto; } }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.hdr {
  background: var(--blue);
  padding: 1.05rem 0;
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hdr-logo { flex: 0 0 auto; }
.hdr-logo img { height: clamp(20px, 4.4vw, 26px); width: auto; }
.hdr-tel {
  flex: 0 0 auto;
  font-weight: 700; font-size: .93rem; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  padding: .5rem 1rem; border-radius: 999px;
  white-space: nowrap;
}
.hdr-tel:hover { background: rgba(255,255,255,.12); }

/* ---------- 1 · Hero ---------- */
.hero { padding-top: clamp(2.6rem, 7vw, 4.4rem); }
.hero .label {
  display: inline-block;
  font-style: italic; font-weight: 700; font-size: .92rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .42rem 1rem; border-radius: 999px;
  margin-bottom: 1.35rem;
}
.hero h1 { max-width: 15ch; margin-bottom: 1.15rem; }
.hero .lead { margin-bottom: 2rem; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: .95rem; }
.trust {
  font-style: italic; font-size: .92rem; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: .5rem;
}
.trust svg { flex: 0 0 auto; }

/* ---------- 2 · Ką gausite ---------- */
.cards { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 860px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--gray); font-size: .99rem; }

.preview { margin-top: 2.6rem; }
.preview-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: #F7F8FC;
  padding: clamp(1.2rem, 4vw, 2.2rem);
}
.preview-blur { filter: blur(6px); opacity: .85; user-select: none; }
@media (min-width: 720px) { .preview-blur { filter: blur(7px); } }
.preview-rows { display: grid; gap: .85rem; }
.preview-row { display: flex; align-items: center; gap: .9rem; }
.preview-bar { height: 13px; border-radius: 999px; background: var(--blue-tint); flex: 1; }
.preview-bar.b { background: rgba(77,85,245,.55); }
.preview-num {
  font-style: italic; font-weight: 860; font-size: 1.5rem; color: var(--blue);
  min-width: 5.2rem;
}
.preview-head {
  display: flex; gap: .6rem; margin-bottom: 1.3rem;
}
.preview-chip { height: 22px; width: 84px; border-radius: 999px; background: rgba(77,85,245,.3); }
.preview-chip.w { width: 132px; background: var(--blue-tint); }
.preview-seal {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(247,248,252,.15), rgba(247,248,252,.75));
}
.preview-seal span {
  font-style: italic; font-weight: 860; font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--blue); text-transform: lowercase;
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: .7rem 1.4rem; border-radius: 999px;
  box-shadow: 0 16px 40px -18px rgba(10,10,30,.3);
}
.preview-cap {
  margin-top: 1rem; font-style: italic; color: var(--gray); font-size: .96rem; text-align: center;
}

/* ---------- 3 · Kaip vyksta ---------- */
.steps { display: grid; gap: 1.1rem; margin-top: 2.4rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.26);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.step-n {
  font-style: italic; font-weight: 860; font-size: 2.4rem; line-height: 1;
  color: var(--lime); display: block; margin-bottom: .7rem;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: rgba(255,255,255,.86); font-size: .99rem; }

/* ---------- 4 · Form ---------- */
.form-wrap { max-width: 680px; margin: 2.4rem auto 0; }
.form-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4.5vw, 2.4rem);
  box-shadow: 0 24px 60px -30px rgba(10,10,30,.25);
}
.fields { display: grid; gap: 1.15rem; }
@media (min-width: 640px) {
  .fields { grid-template-columns: 1fr 1fr; }
  .fw { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-style: italic; font-weight: 700; font-size: .9rem;
  margin-bottom: .4rem; color: var(--ink);
}
.field .opt { color: var(--gray); font-weight: 500; }
.field input, .field select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A5A66' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.6rem; }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,85,245,.15);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #D93025; }
.err { display: none; color: #D93025; font-size: .85rem; margin-top: .35rem; font-style: italic; }
.field.bad .err { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip-in { position: absolute; opacity: 0; pointer-events: none; }
.chip-lb {
  display: inline-block;
  padding: .6rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .95rem;
  transition: all .18s var(--ease);
  user-select: none;
}
.chip-in:checked + .chip-lb { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip-in:focus-visible + .chip-lb { box-shadow: 0 0 0 3px rgba(77,85,245,.25); }

.form-foot { margin-top: 1.7rem; }
.form-note { font-style: italic; font-size: .87rem; color: var(--gray); margin-top: .9rem; }
.form-note a { color: var(--blue); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.notice {
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border: 1.5px solid var(--line);
  background: var(--blue-tint);
}
.notice h3 { margin-bottom: .5rem; }
.notice p { color: var(--gray); font-size: 1rem; }
.form-error {
  display: none; margin-top: 1rem; padding: .85rem 1rem; border-radius: 14px;
  background: #FDECEA; color: #A5271C; font-size: .93rem;
}
.form-error.on { display: block; }

#stepB { display: none; }
#stepB.on { display: block; }
.cal-head { text-align: center; margin-bottom: 1.4rem; }
.cal-head h3 { margin-bottom: .4rem; }
.cal-head p { color: var(--gray); font-size: .97rem; }
#cal-inline { min-height: 560px; width: 100%; overflow: auto; }

/* ---------- 5 · Kam skirta ---------- */
.two { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 800px) { .two { grid-template-columns: 1fr 1fr; } }
.col {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.1);
}
.col.no { background: transparent; }
.col h3 { margin-bottom: 1rem; }
.col ul { list-style: none; display: grid; gap: .85rem; }
.col li { display: flex; gap: .7rem; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .99rem; }
.col li svg { flex: 0 0 auto; margin-top: .28rem; }

/* ---------- 6 · Rezultatai ---------- */
.tiles { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 800px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.tile .city {
  font-style: italic; font-weight: 700; font-size: .87rem; color: var(--blue);
  text-transform: lowercase; margin-bottom: .8rem; display: block;
}
.tile strong {
  display: block; font-style: italic; font-weight: 860;
  font-size: clamp(2rem, 5.4vw, 2.7rem); line-height: 1; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: .55rem;
}
.tile p { color: var(--gray); font-size: .96rem; }

.testi { display: grid; gap: 1.1rem; margin-top: 2.2rem; }
@media (min-width: 800px) { .testi { grid-template-columns: 1fr 1fr; } }
.quote {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.rating {
  display: inline-block; font-style: italic; font-weight: 800; font-size: .85rem;
  color: var(--blue); background: var(--blue-tint);
  padding: .3rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}
.quote blockquote { font-size: 1.01rem; margin-bottom: 1rem; }
.quote figcaption { font-size: .92rem; }
.quote figcaption strong { display: block; font-weight: 750; }
.quote figcaption span { color: var(--gray); }

/* ---------- 7 · Kas atlieka ---------- */
.author { display: grid; gap: 1.8rem; margin-top: 2.2rem; align-items: center; }
@media (min-width: 820px) { .author { grid-template-columns: 300px 1fr; gap: 2.8rem; } }
.author-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--radius-lg);
  padding-top: 2.2rem;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
.author-card img {
  width: 100%; height: auto; display: block;
  margin-top: -2.2rem;
  position: relative; z-index: 2;
}
.author-name {
  position: relative; z-index: 3;
  padding: .1rem 1.3rem 1.4rem;
  text-align: center;
}
.author-name strong {
  display: block; font-style: italic; font-weight: 860; font-size: 1.35rem;
  letter-spacing: -.015em;
}
.author-name span { font-style: italic; font-size: .92rem; color: rgba(255,255,255,.82); }
.author-copy p { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2.6vw, 1.25rem); }

/* ---------- 8 · DUK ---------- */
.faq { max-width: 780px; margin: 2.2rem auto 0; }
.faq details {
  border-bottom: 1.5px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2.6rem 1.25rem 0;
  position: relative;
  font-style: italic; font-weight: 860; font-size: clamp(1.05rem, 3vw, 1.25rem);
  text-transform: lowercase; letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: .3rem; top: 50%;
  width: 13px; height: 13px; margin-top: -8px;
  border-right: 2.4px solid var(--blue); border-bottom: 2.4px solid var(--blue);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.faq .a { padding: 0 0 1.35rem; color: var(--gray); }

/* ---------- 9 · Final CTA ---------- */
.final { text-align: center; }
.final h2 { max-width: 16ch; margin-left: auto; margin-right: auto; }
.final-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1.9rem; }
@media (min-width: 620px) { .final-cta { flex-direction: row; justify-content: center; } }

/* ---------- Footer ---------- */
.ftr { background: var(--blue); color: rgba(255,255,255,.8); padding: 2rem 0 2.6rem; border-top: 1px solid rgba(255,255,255,.2); }
.ftr-in { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; font-size: .88rem; }
@media (min-width: 720px) { .ftr-in { flex-direction: row; justify-content: space-between; text-align: left; } }
.ftr img { height: 20px; width: auto; }
.ftr a { text-decoration: underline; }

/* ---------- Thank-you page ---------- */
.ty { min-height: 60vh; display: flex; align-items: center; }
.ty-card { max-width: 640px; margin: 0 auto; text-align: center; }
.ty-check {
  width: 62px; height: 62px; margin: 0 auto 1.4rem;
  border-radius: 999px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.ty-when {
  display: inline-block; margin: 1.3rem 0 .4rem;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px; padding: .6rem 1.3rem;
  font-style: italic; font-weight: 750;
}
.prep { max-width: 640px; margin: 2.2rem auto 0; text-align: left; }
.prep ul { list-style: none; display: grid; gap: .9rem; margin-top: 1.2rem; }
.prep li { display: flex; gap: .75rem; align-items: flex-start; }
.prep li svg { flex: 0 0 auto; margin-top: .3rem; }
.addcal { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
}
