@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f4f8ff;
  --bg-deep: #e3eeff;
  --ink: #0f1b3d;
  --muted: #5b6b80;
  --accent: #2f6dff;
  --accent-dark: #0f214a;
  --teal: #1c9be3;
  --card: #ffffff;
  --line: #d6e2f1;
  --shadow: 0 24px 50px rgba(15, 33, 74, 0.12);
  --shadow-soft: 0 12px 24px rgba(15, 33, 74, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, var(--bg-deep) 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.4) 45%, transparent 100%),
    radial-gradient(circle at 10% 20%, rgba(47, 109, 255, 0.16), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(28, 155, 227, 0.16), transparent 50%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.55;
  z-index: -2;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(47, 109, 255, 0.35), transparent 70%);
  top: -120px;
  left: -140px;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(28, 155, 227, 0.3), transparent 70%);
  top: 120px;
  right: -200px;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(15, 33, 74, 0.18), transparent 70%);
  bottom: -120px;
  left: 35%;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

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

main {
  width: min(1140px, 90vw);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.site-header {
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.95) 0%, rgba(244, 248, 255, 0.7) 100%);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  background: conic-gradient(from 120deg, var(--accent), #9cc7ff, var(--teal), var(--accent));
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 48px 0 32px;
}

.hero-copy h1 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--ink);
}

.lead {
  font-size: 18px;
  color: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

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

.trust-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.trust-value {
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 18px;
}

.phone-card,
.print-card {
  background: var(--card);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.phone-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.phone-body {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.upload-preview {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.upload-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px dashed rgba(28, 155, 227, 0.4);
}

.upload-ring.ring-two {
  width: 140px;
  height: 140px;
  border-color: rgba(47, 109, 255, 0.4);
}

.upload-avatar {
  width: 88px;
  height: 104px;
  border-radius: 16px;
  background: linear-gradient(135deg, #cfe1ff, #9ebfff);
  position: relative;
}

.upload-avatar::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 50px;
  border-radius: 999px;
  background: rgba(47, 109, 255, 0.16);
}

.upload-details {
  text-align: center;
}

.upload-details span {
  font-size: 13px;
  color: var(--muted);
}

.print-card {
  background: linear-gradient(135deg, #0f214a 0%, #223a6f 100%);
  color: #fff;
}

.print-title {
  font-size: 18px;
  color: #fff;
}

.print-stack {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.print-stack span {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.print-stack span:nth-child(2) {
  width: 70%;
}

.print-stack span:nth-child(3) {
  width: 50%;
}

.print-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

section {
  padding: 64px 0 20px;
}

.section-title {
  margin-bottom: 32px;
}

.steps,
.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card,
.service-card,
.price-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.quality {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.quality-points {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.point-title {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.point-text {
  font-size: 14px;
}

.quality-panel {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.status {
  color: #7cc6ff;
  font-weight: 600;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pricing-grid .price-card {
  display: grid;
  gap: 16px;
}

.price {
  font-size: 24px;
  color: var(--ink);
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.price-card.featured {
  background: linear-gradient(135deg, #fef1e8 0%, #fff9f4 100%);
  border: 1px solid rgba(240, 107, 79, 0.4);
  position: relative;
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.order-form {
  display: grid;
  gap: 14px;
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(240, 107, 79, 0.4);
  border-color: rgba(240, 107, 79, 0.6);
}

.upload-field {
  background: rgba(240, 107, 79, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.upload-field input {
  border: none;
  padding: 0;
  background: transparent;
}

.file-name {
  font-size: 12px;
  color: var(--muted);
}

.form-status {
  font-size: 13px;
  color: var(--teal);
  min-height: 18px;
}

.order-info {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.order-info ol {
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.order-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(47, 109, 255, 0.08);
}

.note-title {
  font-weight: 600;
  color: var(--ink);
}

.cta {
  margin-top: 40px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f214a 0%, #233a73 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta h2,
.cta p {
  color: #fff;
}

.site-footer {
  width: min(1140px, 90vw);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-title {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .steps,
  .service-grid,
  .pricing-grid,
  .order-grid,
  .quality {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
