/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2D54;
  --navy-dark: #162444;
  --teal:   #2AC4B3;
  --teal-dark: #22a99a;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --border: #e5e7eb;
  --white:  #ffffff;
  --card-bg:#f9fafb;
  --star:   #f5a623;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy-dark); }

.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover { background: var(--teal-dark); }

/* ── Section common ── */
.section { padding: 88px 0; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.section__header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ════════════════════════════
   HEADER
════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo img {
  height: 163px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a:not(.btn) {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.header__nav a:not(.btn):hover { color: var(--teal); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  clip-path: inset(0 0 6% 0);
  transform: scale(1.07);
  transform-origin: top center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 25, 50, 0.82) 0%,
    rgba(15, 25, 50, 0.55) 55%,
    rgba(15, 25, 50, 0.25) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 70px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ════════════════════════════
   FEATURES
════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: #edfaf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.how-it-works { background: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.step p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.step__divider {
  width: 60px;
  height: 2px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -44px;
}

/* ════════════════════════════
   WHY US
════════════════════════════ */
.why-us {
  background: var(--navy);
  color: var(--white);
}
.why-us .section__header h2 { color: var(--white); }

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.why-us__text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
}

.why-us__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-us__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}
.check-icon svg {
  width: 20px;
  height: 20px;
}

.why-us__list strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-us__list p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.why-us__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.why-us__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-us__image-placeholder {
  display: none;
  width: 100%;
  height: 340px;
  background: #2a3f6a;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}
.why-us__image-placeholder svg {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

/* Right column: mockup + compare */
.why-us__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: center;
}

/* UI Mockup */
.ui-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #0f1e3a;
}
.ui-mockup__bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px 14px;
  background: #162444;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ui-mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.ui-mockup__bar span:first-child { background: #ef4444; }
.ui-mockup__bar span:nth-child(2) { background: #f59e0b; }
.ui-mockup__bar span:nth-child(3) { background: #22c55e; }

.ui-mockup__map svg { width: 100%; display: block; }

.ui-mockup__rows {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ui-mockup__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.04);
  padding: 7px 10px;
  border-radius: 6px;
}
.ui-mockup__row span:nth-child(2) { flex: 1; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: #22c55e; }
.dot--yellow { background: #f59e0b; }

.badge {
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
.badge--green { background: rgba(34,197,94,.15); color: #22c55e; }
.badge--yellow { background: rgba(245,158,11,.15); color: #f59e0b; }

/* Comparison table */
.compare-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.compare-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.07);
}
.compare-table__head div {
  padding: 16px 24px;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compare-table__head div:last-child {
  color: var(--teal);
  border-left: 1px solid rgba(255,255,255,.08);
}
.compare-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.06);
}
.compare-table__row div {
  padding: 16px 24px;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-table__row div:last-child {
  border-left: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
}
.x-icon {
  color: #ef4444;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.check-icon-sm {
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ════════════════════════════
   PRICING
════════════════════════════ */
.pricing { background: var(--white); }

.pricing__card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.pricing__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.pricing__list .check-icon {
  color: var(--teal);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.pricing__list .check-icon svg {
  width: 18px;
  height: 18px;
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  color: var(--star);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: .93rem;
  color: #374151;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c, #aaa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.avatar::after {
  content: attr(data-initials);
}

.testimonial-card__author strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
}
.testimonial-card__author span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
}

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact {
  background: var(--navy);
  padding-bottom: 0;
}

.contact__inner {
  padding-top: 72px;
  padding-bottom: 64px;
}

.contact__form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row--single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}

.req { color: var(--teal); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--white);
  transition: border-color .2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,.12);
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--send {
  align-self: flex-end;
  min-width: 160px;
  justify-content: center;
}
.btn--send svg {
  width: 16px;
  height: 16px;
}

/* Contact info bar */
.contact__info {
  background: rgba(0,0,0,.25);
  padding: 28px 0;
}

.contact__info-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.contact__info-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__info-item a,
.contact__info-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}
.contact__info-item a:hover { color: var(--teal); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__logo {
  height: 137px;
  width: auto;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__links a:hover { color: var(--teal); }

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  transition: background .2s;
}
.footer__social a:hover { background: rgba(255,255,255,.2); }

.footer__social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* ════════════════════════════
   SUCCESS MESSAGE
════════════════════════════ */
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 16px;
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-success p { color: rgba(255,255,255,.7); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us__image { order: -1; }
  .why-us__image img,
  .why-us__image-placeholder { height: 260px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }

  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .header__burger { display: flex; }

  .hero__content h1 { font-size: 1.9rem; }
  .hero__content br { display: none; }

  .features__grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step__divider { width: 2px; height: 32px; margin: 0; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .btn--send { align-self: stretch; }

  .contact__info-grid { flex-direction: column; gap: 24px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

/* ════════════════════════════
   PRICING PAGE
════════════════════════════ */
.pricing-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}
.pricing-hero__inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.pricing-hero__inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.pricing-section { background: var(--white); }

.pricing-grid {
  display: flex;
  justify-content: center;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.pricing-card--featured {
  background: var(--navy);
  border-color: transparent;
  width: 100%;
  max-width: 540px;
}

.pricing-card__badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pricing-card--featured h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-card__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.pricing-card__price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pricing-card__price span {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
}
.pricing-card__price small {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.pricing-card .pricing__list {
  margin-bottom: 32px;
}
.pricing-card .pricing__list li {
  color: rgba(255,255,255,.85);
}

/* active nav link */
.header__nav a.active { color: var(--teal); }

/* FAQ */
.pricing-faq h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.faq-item__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding-bottom: 16px;
}
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Pricing CTA */
.pricing-cta {
  background: var(--navy);
  padding: 72px 0;
}
.pricing-cta__inner {
  text-align: center;
}
.pricing-cta__inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.pricing-cta__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

@media (max-width: 760px) {
  .pricing-grid { flex-direction: column; align-items: center; }
}

/* ════════════════════════════
   COOKIE BANNER
════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 660px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.cookie-banner p {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  flex: 1;
  margin: 0;
}
.cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-banner__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-banner__link {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--teal); }
.cookie-banner.hidden { display: none; }
