@font-face {
  font-family: 'Markdisc';
  src: url('../fonts/markdisc-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #F5F5F5;
  --color-dark: #11182D;
  --color-text: var(--color-dark);
  --color-text-muted: rgba(17, 24, 45, 0.7);
  --color-border: rgba(17, 24, 45, 0.1);

  --color-cyan: #02BBF9;
  --color-magenta: #FF40FF;
  --gradient-brand: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-magenta) 100%);

  --color-primary: var(--color-cyan);
  --color-primary-dark: var(--color-dark);
  --color-primary-light: rgba(2, 187, 249, 0.08);

  --color-header-bg: var(--color-dark);

  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 45, 0.08);
  --shadow-md: 0 8px 24px rgba(17, 24, 45, 0.10);
  --shadow-lg: 0 20px 40px rgba(17, 24, 45, 0.14);

  --container-w: 1160px;
  --container-wide: 1480px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow { max-width: 760px; }

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(2, 187, 249, 0.28);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 64, 255, 0.3);
}
.btn-outline {
  background: #fff;
  border: 2px solid var(--color-border);
  padding: 11px 24px;
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-cyan);
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 25px;
  color: rgba(255, 255, 255, 0.85);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-dark {
  background: var(--color-dark);
  color: #fff;
}
.btn-dark:hover {
  filter: brightness(1.2);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-outline.btn-lg { padding: 14px 30px; }
.btn-ghost.btn-lg { padding: 15px 31px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 68px;
  padding-left: 20px;
  padding-right: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  height: 12px;
  width: auto;
  display: block;
}
.logo-footer .logo-mark { filter: brightness(0) invert(1); }

.nav-toggle {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  order: 4;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  padding: 8px 20px 16px;
  display: none;
  box-shadow: var(--shadow-md);
}
.nav-links.is-open { display: flex; }
.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--color-cyan); }
.nav-links a:last-child { border-bottom: none; }

.header-cta {
  order: 2;
  padding: 10px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Hero */
.hero {
  max-width: var(--container-wide);
  margin: 0 15px;
  padding: 72px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(1000px 500px at 100% -10%, rgba(2, 187, 249, 0.22), transparent),
    radial-gradient(800px 420px at -10% 115%, rgba(255, 64, 255, 0.20), transparent),
    var(--color-dark);
}
.hero-inner { text-align: center; padding-left: 30px; padding-right: 30px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-dark);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 1.6rem + 2.2vw, 3.2rem);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Trust strip */
.trust-strip {
  padding: 32px 0;
}
.trust-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.trust-stats > div { text-align: center; }
.trust-stats dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-dark);
}
.trust-stats dd {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--color-dark);
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--color-bg-alt); }
.section h2 { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.02rem;
}

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; }

/* Cards */
.card-simple {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.card-simple h3 { margin-bottom: 8px; }
.card-simple p { margin-bottom: 0; }

/* Benefits */
.benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { margin-bottom: 0; }

.who-tags-label {
  text-align: center;
  margin: 40px 0 14px;
  font-weight: 700;
  color: var(--color-text);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tag {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Pricing */
.pricing-grid { max-width: 720px; margin: 0 auto; }
.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--gradient-brand);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { margin-bottom: 6px; }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.3rem);
  color: var(--color-text);
  margin: 0 0 8px;
}
.price-num {
  color: var(--color-dark);
}
.price-unit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.price-desc { margin-bottom: 20px; }
.price-divider {
  height: 1px;
  background: var(--color-border);
  margin: 22px 0 18px;
}
.price-features-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.price-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--color-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.pricing-footnote {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 24px;
}

/* Why free */
.why-text { font-size: 1.02rem; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li {
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}

/* Portfolio */
.portfolio-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.portfolio-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(2, 187, 249, 0.16), rgba(255, 64, 255, 0.16));
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.portfolio-body { padding: 18px; }
.portfolio-body h3 { margin: 6px 0 8px; }
.portfolio-body p { margin-bottom: 0; font-size: 0.92rem; }

.example-badge {
  display: inline-block;
  background: rgba(255, 64, 255, 0.12);
  color: var(--color-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 0;
}
.testimonial p {
  font-size: 1rem;
  color: var(--color-text);
  margin: 12px 0 14px;
}
.testimonial footer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.3rem;
  color: var(--color-dark);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 16px; margin: 0; }

/* CTA / Contact */
.cta-section { background: var(--color-bg); }
.cta-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
.cta-text h2 { text-align: left; }
.cta-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--color-text);
}
.cta-points li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--color-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--color-bg-alt);
}
.form-row textarea { border-radius: var(--radius-lg); }
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-cyan);
  outline-offset: 1px;
  background: #fff;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  margin: 12px 0 0;
}

/* Footer */
.site-footer {
  background: var(--color-header-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-footer { margin-bottom: 10px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); max-width: 320px; }
.footer-col h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--color-cyan); }
.footer-muted { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Tablet / Desktop ===== */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .hero { margin: 0 20px; padding: 96px 0; }
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .trust-stats { flex-direction: row; justify-content: center; gap: 0; }
  .trust-stats > div { padding: 0 32px; position: relative; }
  .trust-stats > div + div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--color-border);
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }

  .nav-wrap { height: 74px; gap: 25px; padding-left: 44px; padding-right: 44px; }
  .logo-mark { height: 14px; }
  .nav-toggle { display: none; }
  .nav-links {
    order: 2;
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
  }
  .nav-links a {
    border-bottom: none;
    padding: 4px 0;
    font-size: 0.94rem;
  }
  .header-cta { order: 3; padding: 12px 24px; font-size: 0.92rem; }
}

@media (min-width: 1520px) {
  .hero { margin-left: auto; margin-right: auto; }
}
