﻿:root {
  --bg: #f5f2eb;
  --surface: #ffffff;
  --text: #202020;
  --muted: #5f5a52;
  --accent: #E46826;
  --accent-2: #4188c2;
  --border: #e7dfd3;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Google Sans", "Product Sans", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at 12% 18%, #c9dfff 0, transparent 36%), radial-gradient(circle at 88% 0%, #cde6df 0, transparent 32%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-size: 14px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 1.5rem);
  text-align: center;
  line-height: 1.1;
}

a {
  color: var(--accent-2);
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background:#ffffffc4;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.brand-icon img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle i {
  font-size: 1rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  height: 40px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text);
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

main {
  padding: 3rem 0 4rem;
  flex: 1;
}

.hero {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.hero h1 {
  margin: 0 auto 25px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 72ch;
  margin: 1em auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);

  font-size: 14px;
  font-weight: 500;
}

.hero-badges i.icon {
  color: var(--accent);
}

.hero-preview {
  margin-top: 18px;
}

.hero-preview img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.card h3 {
  margin-top: 0;
}

.page-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  min-width: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.page-content h1,
.page-content h2,
.page-content h3 {
  line-height: 1.25;
}

.doc-page {
  display: grid;
  gap: 1.5rem;
}

.doc-page h1,
.doc-page h2 {
  margin: 0;
}

.doc-page h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
}

.doc-page p,
.doc-page ul {
  margin: 0;
}

.doc-page ul {
  padding-left: 1.2rem;
}

.doc-page li + li {
  margin-top: 0.45rem;
}

.doc-hero {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(65, 136, 194, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
}

.doc-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(65, 136, 194, 0.12);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.doc-lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.doc-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.doc-summary-card,
.doc-panel,
.doc-step {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.doc-summary-card,
.doc-panel {
  padding: 1.25rem;
}

.doc-summary-card {
  display: grid;
  gap: 0.85rem;
}

.doc-summary-card-accent {
  background:
    linear-gradient(180deg, rgba(228, 104, 38, 0.08), rgba(255, 255, 255, 0.98));
}

.callout {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.callout-warning {
  background: #fff6ee;
  border-color: rgba(228, 104, 38, 0.28);
}

.callout-info {
  background: #f4f9ff;
  border-color: rgba(65, 136, 194, 0.24);
}

.doc-steps {
  display: grid;
  gap: 1rem;
}

.doc-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.doc-step h2 {
  text-align: left;
}

.doc-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #eb8a55);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.doc-step-body {
  display: grid;
  gap: 0.8rem;
}

.doc-step-body pre {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #f7f5f1;
  border: 1px solid var(--border);
  overflow-x: auto;
}

img.screenshot {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.doc-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.doc-panel {
  display: grid;
  gap: 0.85rem;
}

.site-footer {
  padding: 0 0 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.site-footer {
  font-size: .9em;
}

.home-stack {
  display: grid;
  gap: 1.25rem;
}

.home-stack > * {
  min-width: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #eb8a55);
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.05);
}

.btn-primary img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 260px;
  width: fit-content;
  padding: 0.95rem 1.15rem;
  margin: 0.75rem auto 0;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: linear-gradient(135deg, var(--accent), #eb8a55);
  justify-content: center;
}

.store-badge:hover {
  color: #fff;
  background: #000;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.store-badge-icon {
  flex: 0 0 auto;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-right: 10px;
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.store-badge-kicker {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.store-badge-title {
  margin-top: 0.12rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.section-heading {
  text-align: center;
}

.theme-carousel {
  position: relative;
  margin-top: 1.5rem;
  padding: 0 3.5rem;
}

.theme-carousel-viewport {
  overflow: hidden;
}

.theme-thumbs {
  display: flex;
  margin-top: 0;
  transition: transform 0.35s ease;
}

.theme-thumb {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  text-align: center;
}

.theme-thumb img {
  width: min(100%, 460px);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.theme-thumb span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.theme-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theme-carousel-control:hover {
  background: var(--accent);
  color: #fff;
}

.theme-carousel-prev {
  left: 0;
}

.theme-carousel-next {
  right: 0;
}

.theme-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.theme-carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 46, 64, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.theme-carousel-dot.active,
.theme-carousel-dot:hover {
  background: var(--accent);
  transform: scale(1.08);
}

.theme-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.compare-wrap {
  width: 100%;
  min-width: 0;
  max-width: 720px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.compare-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.compare-row {
  display: contents;
}

.compare-cell {
  min-width: 0;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: #fff;
}

.compare-cell:nth-child(3n) {
  border-right: 0;
}

.compare-row:last-child .compare-cell {
  border-bottom: 0;
}

.compare-head .icon {
  margin-right: 0.5rem;
}

.compare-head .compare-cell {
  font-weight: 700;
}

.compare-head .compare-cell:last-child {
  color: var(--accent);
}

.compare-head .compare-cell:last-child {
  background: #fef6f0;
}

.compare-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.compare-tier,
.compare-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.compare-premium {
  color: var(--accent);
  font-weight: 600;
  background-color: #fef6f0;
}

.compare-value .fa-times,
.compare-value .fa-check {
  margin-right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  font-weight: 400;
}

.compare-value .fa-times {
  color: var(--accent);
  background-color: #da383d1e;
}

.compare-value .fa-check {
  color: var(--accent);
  background-color: #118a151e;
}

.compare-desktop .compare-cell:last-child {
    border-width: 1px 3px;
    border-color: #e4682642 var(--accent);
    border-style: solid;
}

.compare-desktop .compare-row:first-child .compare-cell:last-child {
    border-width: 3px 3px 1px 3px;
    border-color: var(--accent) var(--accent) #e4682642 var(--accent);
    border-radius: 18px 18px 0 0;
}

.compare-desktop .compare-row:last-child .compare-cell:last-child {
    border-width: 1px 3px 3px 3px;
    border-color: #e4682642 var(--accent) var(--accent) var(--accent);
    border-radius: 0 0 18px 18px;
}

.compare-mobile {
  display: none;
}

.compare-mobile-col {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}

.compare-mobile-col.compare-premium {
  background: #fef6f0;
}

.compare-mobile-tier {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.95rem 0.85rem;
    margin-bottom: 0.8rem;
    border-radius: 0;
    font-weight: 700;
    justify-content: center;
    font-size: 1.2em;
    border-bottom: 3px solid var(--border);
}

.compare-premium .compare-mobile-tier {
    background: #fef6f0;
    color: var(--accent);    
}

.compare-mobile-item {
  padding: 0.6rem 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
}

.compare-mobile-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.compare-mobile-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.compare-mobile-value {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--text);
  flex: 1;
}

.compare-mobile-col.compare-premium .compare-mobile-value {
  color: var(--accent);
  font-weight: 600;
}

.compare-mobile-value .fa-times,
.compare-mobile-value .fa-check {
  margin-right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  font-weight: 400;
  text-align: center;
}

.compare-mobile-value .fa-times {
  color: var(--accent);
  background-color: #da383d1e;
}

.compare-mobile-value .fa-check {
  color: var(--accent);
  background-color: #118a151e;
}

.compare-claims {
  text-align: center;
  opacity: 0.9;
  font-size: 0.8em;
}

.compare-premium {
    border: 3px solid var(--accent);
    color: var(--accent);
}

.compare-premium .compare-mobile-label {
    color: var(--accent);
    font-weight: 400;
}

#features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

#features .card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.08);
}

#features .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;

  font-size: 28px;

  border-radius: 18px;
  background: rgba(0,0,0,0.04);
}

#features h3 {
  margin-bottom: 12px;
}

#features p {
  line-height: 1.6;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-caret {
  color: var(--accent);
  flex: 0 0 1rem;
  width: 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.faq-item summary .faq-caret-open {
  display: none !important;
}

.faq-item[open] summary .faq-caret-closed {
  display: none !important;
}

.faq-item[open] summary .faq-caret-open {
  display: inline-block !important;
}

.faq-item:target {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(211, 93, 58, 0.15);
}

.faq-link {
  font-size: 0.92rem;
}

.bottom-cta {
    text-align: center;
}

@media (max-width: 680px) {
  main {
    padding-bottom: 2rem;  
  }

  .nav {
    align-items: center;
    gap: 0.5rem;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: sticky;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    gap: 0.35rem;
    border: none;
    z-index: 25;
  }

  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 44px;
  }

  .site-header.nav-open {
    border-radius: 0 0 18px 18px;
  }

  .site-header.nav-open .nav-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .hero-copy {
    max-width: none;
  }

  .page-content {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .hero h1 {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero p {
    margin-inline: auto;
  }

  .doc-summary,
  .doc-support-grid,
  .doc-step {
    grid-template-columns: 1fr;
  }

  .doc-hero,
  .doc-summary-card,
  .doc-panel,
  .doc-step {
    padding: 1rem;
    border-radius: 18px;
  }

  .doc-step-number {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-badges {
    justify-content: center;
  }

  #features .grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .theme-carousel {
    padding: 0 2.5rem;
  }

  .theme-carousel-control {
    width: 2.3rem;
    height: 2.3rem;
  }

  .theme-thumb img {
    width: 100%;
  }

  .feature-card {
    text-align: center;
  }

  .card-icon {
    justify-self: center;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .container.footer-row > div {
      text-align: center;
      width: 100%;
  }

  .compare-wrap {
    border: none;
    box-shadow: none;
  }

  .compare-desktop {
    display: none;
  }

  .compare-mobile {
    display: block;
  }

  .compare-mobile-col.compare-premium {
    background: #fef6f0;
  }

}

@media (max-width: 480px) {

  main {
    padding: 1.25rem 0 2.5rem;
  }

  .nav-links a {
    flex-basis: 100%;
  }

  .hero {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .page-content {
    padding: 1rem;
  }
}
