:root {
  --blue: #2490d0;
  --blue-dark: #1e7ab0;
  --blue-darker: #0b2f44;
  --blue-soft: #e2f2f9;
  --ink: #2f3640;
  --heading: #373737;
  --muted: #5a616c;
  --panel: #fafafa;
  --white: #ffffff;
  --green: #43a047;
  --dl-blue: #2196f3;
  --footer: #494b4f;
  --shadow: 1px 2px 4px rgba(0, 0, 0, 0.35);
  --radius: 25px;
  --max: 1200px;
  /* System stacks with Latin Extended / Romanian (ă â î ș ț) support */
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--panel);
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: #5aa9d7;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: #2f3640;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.site-header.is-scrolled .brand-word {
  color: #fff;
}

.site-header.is-scrolled .nav a {
  color: #e8eef3;
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.is-active {
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-word {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: #000;
}

.brand-word span {
  color: #5daadd;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.site-header.is-scrolled .nav-toggle {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  background: var(--blue-soft);
  overflow: hidden;
  padding: 2.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") left bottom / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 350px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 420px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.hero-copy {
  text-transform: uppercase;
}

.hero-copy .line {
  display: block;
  line-height: 1.15;
}

.hero-copy .line-strong {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
}

.hero-copy .line-light {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 300;
}

.hero-copy .cta {
  margin-top: 1.25rem;
  text-transform: none;
}

/* Icon strip */
.icon-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 1.5rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  text-align: center;
}

.icon-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  padding: 1.1rem 0.8rem;
}

.icon-card .ico {
  color: #3191cc;
  margin-bottom: 0.55rem;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.18));
}

.icon-card .ico svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-inline: auto;
  fill: currentColor;
}

.icon-card strong {
  display: block;
  font-size: 0.98rem;
}

.icon-card span {
  display: block;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

/* Testimonials */
.testimonials {
  padding: 2rem 0 1rem;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.t-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-card blockquote {
  margin: 0;
  font-style: italic;
  flex: 1;
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-meta img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
}

.t-meta strong {
  display: block;
  font-size: 0.92rem;
}

.t-meta span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: var(--blue-soft);
}

.section-title {
  text-align: center;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
  align-items: stretch;
}

.feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-text {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
}

.feature-media {
  position: relative;
  min-height: 220px;
  background: #dceaf4;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.feature.reverse .feature-text {
  order: 2;
}

.feature.reverse .feature-media {
  order: 1;
}

.checklist {
  margin-top: 0.5rem;
}

.checklist li {
  margin: 0.25rem 0;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 1.4rem;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
}

.btn-green:hover {
  background: #2e7d32;
}

.btn-blue {
  background: var(--dl-blue);
}

.btn-blue:hover {
  background: #1565c0;
}

.btn-primary {
  background: var(--blue-dark);
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: var(--blue-darker);
}

.btn-outline {
  background: transparent;
  color: var(--blue) !important;
  border: 1px solid var(--blue);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--blue-soft);
}

/* Trial */
.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.trial-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.platforms img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.trial-note {
  font-style: italic;
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.85;
}

.version-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pricing */
.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid #e6edf3;
  text-align: center;
  vertical-align: middle;
}

.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
}

.price-table thead th {
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}

.price-table .plan-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.price-table .price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.price-table .check::after {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 1.2rem;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.25rem 0 0.5rem;
}

.seap-line {
  text-align: center;
  margin-top: 1rem;
}

.entity-line {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  position: relative;
  color: #fff;
  background: var(--footer);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 0 40%;
  background: url("../images/contact-bg.png") right center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2.5rem 0;
}

.contact h2 {
  color: #fff;
}

.contact a {
  color: #9fd4f5;
}

.contact a:hover {
  color: #fff;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin: 0.55rem 0;
  font-size: 1.05rem;
}

.contact-reveal {
  display: inline-block;
  margin: 0;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(159, 212, 245, 0.55);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #9fd4f5;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.contact-reveal:hover,
.contact-reveal:focus-visible {
  color: #fff;
  border-color: #fff;
  outline: none;
}

/* Footer */
.site-footer {
  background: #2f3640;
  color: #d7dde4;
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner img {
  height: 28px;
  width: auto;
  opacity: 0.95;
}

.footer-inner small {
  font-size: 0.9rem;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-visual img {
    animation: floaty 5s ease-in-out infinite;
  }
  .icon-card,
  .feature,
  .t-card,
  .trial-card {
    animation: rise 0.7s ease both;
  }
  .feature:nth-child(2) { animation-delay: 0.05s; }
  .feature:nth-child(3) { animation-delay: 0.1s; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner,
  .trial-grid,
  .t-grid {
    grid-template-columns: 1fr;
  }

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

  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
  }

  .feature.reverse .feature-text,
  .feature.reverse .feature-media {
    order: initial;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }

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