:root {
  --ink: #06162c;
  --navy: #0b2145;
  --navy-deep: #081a36;
  --blue: #1d5fd0;
  --sky: #e9f2ff;
  --mist: #f7faff;
  --line: #d8e3f7;
  --muted: #5b6b84;
  --white: #ffffff;
  --success: #0e8a5f;
  --shadow: 0 28px 60px rgba(6, 22, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--navy);
}

.section-copy {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 247, 0.9);
  backdrop-filter: blur(18px);
}

.header-top,
.header-bottom {
  display: flex;
  align-items: center;
}

.header-top {
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 14px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11, 33, 69, 0.18);
}

.brand-copy strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f8ff;
}

.language-toggle button,
.language-toggle a {
  border: 0;
  background: transparent;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.language-toggle button.is-active,
.language-toggle a.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 16px rgba(11, 33, 69, 0.08);
}

.login-button,
.primary-button,
.secondary-button,
.link-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.login-button,
.form-submit {
  background: var(--navy);
  color: var(--white);
}

.login-button {
  padding: 12px 18px;
  font-size: 14px;
}

.primary-button,
.secondary-button,
.form-submit {
  padding: 14px 22px;
  font-size: 14px;
}

.primary-button {
  background: var(--white);
  color: var(--navy);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.link-button {
  gap: 8px;
  color: var(--blue);
}

.header-bottom {
  gap: 22px;
  overflow-x: auto;
  padding: 0 0 16px;
}

.header-bottom a {
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
}

.header-bottom a.is-current {
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(29, 95, 208, 0.18), transparent 34%), linear-gradient(180deg, #0b2145 0%, #06162c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.hero-grid,
.contact-grid,
.trust-grid,
.pricing-grid,
.comparison-grid,
.feature-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  position: relative;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 80px;
}

.hero-copy p,
.hero-copy h1,
.hero-copy .hero-badges,
.hero-copy .hero-actions {
  position: relative;
}

.hero-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d8e9ff;
}

.hero-copy h1 {
  margin: 24px 0 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.04;
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 720px;
  color: #d0e0ff;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.metric-card dt {
  font-size: 14px;
  color: #d0e0ff;
}

.metric-card dd {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 800;
}

.mockup-shell {
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mockup-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, #0e2145 0%, #13346a 100%);
  color: var(--white);
  padding: 24px;
}

.mockup-top,
.mockup-row,
.sync-item,
.setup-row,
.pricing-header,
.pricing-row,
.contact-detail,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
  margin-top: 22px;
}

.mockup-left,
.mockup-right > * {
  border-radius: 24px;
}

.mockup-left {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-right {
  display: grid;
  gap: 16px;
}

.mockup-stat {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 138, 95, 0.22);
  color: #d6ffed;
  font-size: 12px;
  font-weight: 800;
}

.mockup-row {
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.progress {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ab6ff 0%, #ffffff 100%);
}

.sync-card,
.alert-card,
.feature-card,
.comparison-card,
.trust-card,
.pricing-card,
.contact-info,
.contact-form {
  box-shadow: 0 18px 42px rgba(6, 22, 44, 0.08);
}

.sync-card {
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.sync-item {
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  background: #f6f8fc;
}

.sync-item strong,
.contact-detail strong {
  display: block;
  color: var(--navy);
}

.sync-item span,
.contact-detail span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.alert-card {
  padding: 18px;
  background: var(--sky);
  color: var(--navy);
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
}

.feature-card,
.trust-card,
.contact-info {
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid #edf2fb;
}

.feature-card h3,
.trust-card h3,
.comparison-card h3,
.pricing-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
  color: var(--navy);
}

.feature-card p,
.trust-card p,
.comparison-card p,
.pricing-card p,
.contact-info p,
.contact-form p,
.footer-row p {
  color: var(--muted);
  line-height: 1.8;
}

.comparison-grid,
.pricing-grid,
.contact-grid,
.trust-grid {
  margin-top: 42px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card {
  padding: 30px;
  border-radius: 34px;
}

.comparison-card.manual {
  background: #f7f9fd;
  border: 1px solid #edf2fb;
}

.comparison-card.automated,
.pricing-card.setup,
.contact-form {
  background: linear-gradient(180deg, #0b2145 0%, #102d5e 100%);
  color: var(--white);
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manual .badge {
  background: var(--white);
  color: var(--muted);
}

.automated .badge,
.setup .badge {
  background: rgba(255, 255, 255, 0.1);
  color: #d0e0ff;
}

.comparison-list,
.setup-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-list li,
.setup-row {
  margin-top: 12px;
  padding: 15px 16px;
  border-radius: 22px;
}

.manual .comparison-list li {
  background: var(--white);
}

.automated .comparison-list li,
.setup-row {
  background: rgba(255, 255, 255, 0.09);
}

.trust-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.pricing-card {
  padding: 30px;
  border-radius: 34px;
  background: var(--mist);
  border: 1px solid #edf2fb;
}

.pricing-table {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.pricing-header,
.pricing-row {
  gap: 14px;
}

.pricing-header {
  padding: 14px 18px;
  background: #f6f8fc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-row {
  padding: 16px 18px;
  border-top: 1px solid #edf2fb;
}

.pricing-row div,
.pricing-header div {
  flex: 1;
}

.pricing-minimums {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.minimum-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
}

.minimum-card strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.minimum-card span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-panel h3 {
  margin: 16px 0 0;
  font-size: 42px;
  color: var(--navy);
}

.contact-info {
  margin-top: 26px;
  background: var(--mist);
}

.contact-detail {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #dbe8ff;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #cfdeff;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(14, 138, 95, 0.22);
  color: #d6ffed;
}

.form-status.is-error {
  background: rgba(209, 67, 67, 0.18);
  color: #ffd7d7;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid #edf2fb;
  background: var(--white);
}

.footer-row {
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.blog-page {
  min-height: calc(100vh - 120px);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(29, 95, 208, 0.18), transparent 34%), linear-gradient(180deg, #0b2145 0%, #06162c 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.blog-hero-inner {
  position: relative;
  padding: 92px 0 96px;
}

.blog-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d8e9ff;
}

.blog-hero h1 {
  margin: 24px 0 0;
  max-width: 900px;
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.05;
}

.blog-hero p {
  margin: 22px 0 0;
  max-width: 760px;
  color: #d0e0ff;
  font-size: 18px;
  line-height: 1.85;
}

.blog-posts-section {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.blog-layout,
.blog-posts,
.related-posts {
  display: grid;
  gap: 24px;
}

.blog-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.blog-card,
.blog-side-card,
.article-card {
  border: 1px solid #e8eef9;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(6, 22, 44, 0.08);
}

.blog-card {
  padding: 30px;
}

.blog-card h2,
.blog-side-card h3,
.article-card h2 {
  margin: 18px 0 0;
  color: var(--navy);
}

.blog-card h2 {
  font-size: 30px;
  line-height: 1.2;
}

.blog-card p,
.blog-side-card p,
.article-card p,
.related-post p {
  color: var(--muted);
  line-height: 1.9;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-card .link-button {
  margin-top: 18px;
}

.blog-sidebar {
  display: grid;
  gap: 24px;
}

.blog-side-card {
  padding: 28px;
}

.topic-list,
.article-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.topic-list li,
.article-list li {
  margin-top: 12px;
  line-height: 1.8;
}

.blog-cta {
  background: linear-gradient(180deg, #0b2145 0%, #102d5e 100%);
  color: var(--white);
}

.blog-cta h3,
.blog-cta p {
  color: inherit;
}

.blog-cta .primary-button {
  margin-top: 18px;
}

.blog-article-hero {
  padding-bottom: 12px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #d8e9ff;
  font-weight: 700;
}

.article-card {
  padding: 34px;
}

.article-section + .article-section {
  margin-top: 34px;
}

.article-section h2 {
  font-size: 30px;
}

.article-closing {
  margin-top: 30px;
  font-weight: 700;
  color: var(--navy);
}

.related-post + .related-post {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-post strong {
  display: block;
  color: var(--navy);
}

@media (max-width: 1100px) {
  .hero-grid,
  .trust-grid,
  .pricing-grid,
  .contact-grid,
  .feature-grid,
  .comparison-grid,
  .trust-cards,
  .mockup-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-top,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges,
  .pricing-minimums,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .blog-hero-inner {
    padding: 68px 0 72px;
  }

  .blog-hero h1,
  .contact-panel h3 {
    font-size: 34px;
  }

  .blog-card h2,
  .article-section h2 {
    font-size: 26px;
  }

  .article-card,
  .blog-card,
  .blog-side-card {
    padding: 24px;
  }
}

