@media (max-width: 600px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-brand {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }
  .footer-logo {
    height: 60px;
    margin-left: 0;
    margin-right: 10px;
    justify-self: start;
  }
  .footer-contact {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0;
  }
  .footer-contact p {
    font-size: 0.9rem;
    text-align: left;
  }
  .footer-quote {
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    justify-self: flex-start;
  }
  .footer-quote p {
    font-size: 0.75rem;
    text-align: left;
    padding-right: 0;
    border-right: none;
    margin-top: 0;
  }
  .footer-copy {
    text-align: left;
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
:root {
  --bg-deep: #0d1c30;
  --accent: #52d4e7;
  --accent-soft: #7bc9d4;
  --accent-dim: rgba(82,212,231,0.18);
  --text-main: #edf5ff;
  --text-muted: #c6dae9;
  --card-bg: rgba(11,26,46,0.72);
  --card-border: rgba(157,209,223,0.25);
  --section-alt: rgba(10,22,40,0.55);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Sora", sans-serif;
  color: var(--text-main);
  background-image:
    linear-gradient(160deg, rgba(10,20,36,0.82) 0%, rgba(25,80,100,0.55) 100%),
    url("taust.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

/* ---- CONTAINER ---- */
.container {
  width: min(900px, 92%);
  margin-inline: auto;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 20, 36, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10, 20, 36, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.nav-inner {
  width: min(1100px, 94%);
  margin-inline: auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  height: 62px;
  overflow: hidden;
}
.nav-logo-img {
  height: 130px;
  width: auto;
  transform: scale(1.2);
  transform-origin: left center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--text-main); background: var(--accent-dim); }
.nav-cta {
  background: var(--accent);
  color: var(--bg-deep) !important;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 10px !important;
}
.nav-cta:hover { background: #7ae0ef !important; }

/* ---- BURGER ---- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  width: 100%;
}
/* X animation */
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; width: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  display: flex;
  align-items: center;
  padding: calc(62px + 50px) 20px 50px;
}
.hero-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--accent-soft);
  font-weight: 500;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 14px 38px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(82,212,231,0.32);
}
.btn-primary:hover {
  background: #7ae0ef;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(82,212,231,0.44);
}
.btn-full { display: block; width: 100%; margin-top: 8px; text-align: center; }
.hero-social-proof {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-social-proof strong { color: var(--text-main); }

/* ---- TRUST BAR ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop 3 tulpa */
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 26, 46, 0.6);
  padding: 15px 20px;
  border-radius: 12px;
  color: #edf5ff;
}

.trust-icon img {
  width: 22px;
  height: 22px;
  display: block;
}
#miks-meie .trust-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-start;
  max-width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}

#miks-meie .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 26, 46, 0.6);
  padding: 16px 20px;
  border-radius: 12px;
  color: #edf5ff;
  font-size: 16px;
}

#miks-meie .trust-icon img {
  width: 22px;
  height: 22px;
}

/* ---- GENERIC SECTION ---- */
.section {
  padding: 30px 20px;
}
.section-alt {
  background: var(--section-alt);
  backdrop-filter: blur(6px);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.2;
}
.h2-center {
  text-align: center;
}


/* ---- CARD LIST (mida ostame) ---- */
.card-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.card-list li {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- CHECK LIST (miks meie) ---- */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
}
.check-list li::before {
  content: "✔";
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- STEPS ---- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-arrow {
  font-size: 1.8rem;
  color: var(--accent-soft);
  align-self: center;
  padding-bottom: 20px;
}

/* ---- FORM ---- */
.section-form {
  background: rgba(8,18,32,0.65);
  backdrop-filter: blur(8px);
}
.form-intro {
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: -16px;
  text-align: center;
}
.form-intro strong { color: var(--text-main); }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 36px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
label input,
label textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
label input:focus,
label textarea:focus {
  border-color: var(--accent);
  background: rgba(82,212,231,0.07);
}
label input::placeholder,
label textarea::placeholder { color: rgba(210,230,245,0.35); }

/* ---- BONUS GRID ---- */
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.bonus-item {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  padding: 28px 20px;
  text-align: center;
}
.bonus-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.bonus-item p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- FAQ ---- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: rgba(6,14,26,0.92);
  border-top: 1px solid var(--card-border);
  padding: 40px 20px 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.footer-logo {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer-contact p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-copy {
  width: 100%;
  font-size: 0.82rem;
  color: rgba(200,220,235,0.4);
  margin-top: 8px;
}
.footer-quote {
  margin-left: auto;
  max-width: 300px;
}
.footer-quote p {
  font-size: 0.9rem;
  color: var(--accent-soft);
  font-style: italic;
  line-height: 1.75;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.section-alt {
  background: linear-gradient(180deg, #0d1c30 0%, #08121f 100%);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 900px;
  width: 100%;
}

.about-box {
  background: rgba(11, 26, 46, 0.75);
  border: 1px solid rgba(82, 212, 231, 0.15);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
}

.about-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #52d4e7;
}

.about-box p {
  color: #c6dae9;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-box .lead {
  font-size: 20px;
  color: #edf5ff;
  font-weight: 500;
}

.highlight {
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
  color: #7bc9d4;
  letter-spacing: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .burger {
    display: flex;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 6px;
    justify-content: center;
    align-self: center;
    justify-self: end;
  }
  .about-box {
    padding: 30px 20px;
  }

  .about-box h2 {
    font-size: 28px;
  }

  .about-box p {
    font-size: 15px;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    height: 92px;
    padding: 0;
    align-items: center;
    position: relative;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    width: auto;
    height: 92px;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
  }

  nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
    padding: 0 12px;
    opacity: 0;
    background: rgba(8, 18, 34, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--card-border);
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  }
  .nav.open nav {
    max-height: 500px;
    padding: 12px 12px 18px;
    opacity: 1;
  }
  .nav-logo-img {
    display: block;
    height: 130px;
    transform: translateY(6px) scale(1.2);
    transform-origin: left center;
  }

  nav a {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 10px;
    color: var(--text-main);
  }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block;
  }

  .hero { padding: calc(92px + 20px) 16px 20px; }
  .hero h1 { white-space: normal; }
  .section { padding: 52px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: stretch; }
  .step {
    min-width: unset;
    width: 100%;
    max-width: none;
    margin: 0 0 18px 0;
  }

  .footer-inner {
      display: grid;
      grid-template-columns: 110px 1fr 1fr;
      align-items: center;
      column-gap: 8px;
      row-gap: 10px;
  }
  .footer-brand {
    width: auto;
    justify-content: flex-start;
      align-items: center;
  }
    .footer-logo {
      height: 110px;
      margin-right: 12px;
      margin-left: -8px;
      justify-self: start;
  }
    .footer-contact {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      justify-self: center;
  }
  .footer-contact p {
    font-size: 0.85rem;
    line-height: 1.55;
  }
  .footer-quote {
    margin-left: 0;
    max-width: 180px;
    justify-self: end;
  }
  .footer-quote p {
    text-align: right;
    border-left: none;
    border-right: 2px solid var(--accent);
    padding-left: 0;
    padding-right: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .footer-copy {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    margin-top: 2px;


  }
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
}
.check-list li::before {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-icon {
  color: rgb(107, 223, 41);
  font-size: 1.1rem;
  content: "-";
}

  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }

  .trust-icon {
    width: 22px;      /* veidi väiksem mobiilis */
    min-width: 22px;
    display: flex;
    justify-content: center;
  }

  .trust-icon img {
    width: 16px;
    height: 16px;
  }

  .trust-item {
    font-size: 14px;  /* loetavam mobiilis */
    line-height: 1.4;
  }

    .check-list {
    margin-top: 25px;
  }

  .check-list li {
    font-size: 15px;
    padding: 14px 15px 14px 45px;
    border-radius: 10px;
  }

  .check-list li::before {
    left: 14px;
    font-size: 16px;
  }

  .h2-center {
    font-size: 26px;
    text-align: center;
  }

   .trust-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
  }

  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-icon {
    width: 24px;
    min-width: 24px;
    display: flex;
    justify-content: center;
  }

  .trust-icon img {
    width: 16px;
    height: 16px;
  }
}
