:root {
  --bg-0: #f3f3f1;
  --bg-1: #f3f3f1;
  --ink: #002b3c;
  --muted: rgba(0, 43, 60, 0.72);
  --card: rgba(255, 255, 255, 0.72);
  --card-2: rgba(255, 255, 255, 0.86);
  --stroke: rgba(0, 43, 60, 0.14);
  --stroke-2: rgba(0, 43, 60, 0.22);
  --accent: #002b3c;
  --accent-2: #002b3c;
  --shadow: 0 10px 22px rgba(0, 43, 60, 0.10);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1112px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t: 260ms;
}

* { box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-0);
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

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

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

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: none;
  background: rgba(243, 243, 241, 0.98);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name { font-size: 16px; }

.brand-mark {
  width: 46px;
  height: 46px;
  background: url("./assets/logo.svg") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(0, 43, 60, 0.12);
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: rgba(0, 43, 60, 0.78);
}

.nav a {
  padding: 6px 0;
  border-radius: 0;
  transition: color var(--t) var(--ease), text-decoration-color var(--t) var(--ease);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}

.nav a:hover {
  color: var(--ink);
  text-decoration-color: rgba(0, 43, 60, 0.55);
}

.header-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  box-shadow: none;
  transition: background var(--t-fast) var(--ease), border var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.btn:hover {
  border-color: var(--stroke-2);
}

.btn:active { transform: translateY(0); }

.btn-primary {
  background: #002b3c;
  border-color: rgba(0, 43, 60, 0.26);
  color: #f3f3f1;
  border-radius: 6px;
}

.btn-primary:hover {
  background: rgba(0, 43, 60, 0.90);
}

.btn .apple-icon {
  width: auto;
  height: 16px;
  display: block;
  border-radius: 6px;
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(0, 43, 60, 0.04);
}

.btn-lg {
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(0, 43, 60, 0.92);
  margin: 3px 0;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0;
  border-top: none;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
}

.mobile-nav .btn { margin-top: 10px; }

.mobile-nav a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  color: inherit;
}

.mobile-nav a.btn-primary {
  color: #f3f3f1;
}

.hero {
  padding: 72px 0 72px;
}

.trust-line {
  margin-top: 18px;
  color: rgba(0, 43, 60, 0.60);
  font-size: 14px;
}

.hero-media {
  margin-top: 0;
}

.hero-media-frame {
  background: rgba(233, 229, 221, 0.85);
  border: 1px solid rgba(0, 43, 60, 0.10);
  padding: 10px;
  border-radius: 6px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(0, 43, 60, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-media {
  justify-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(0, 43, 60, 0.86);
  font-size: 12px;
  letter-spacing: 0.14em;
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

p { margin: 0; }

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  color: rgba(0, 43, 60, 0.60);
  font-size: 14px;
}

.hero-proof-heart {
  color: rgb(255 0 0 / 90%);
  font-size: 20px;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(0, 43, 60, 0.84);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(420px, 100%);
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(0, 43, 60, 0.04);
}

.dot { width: 10px; height: 10px; border-radius: 999px; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.invoice-mock {
  padding: 18px 18px 20px;
}

.invoice-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 43, 60, 0.10);
  margin: 10px 0;
}

.invoice-line.w-60 { width: 60%; }
.invoice-line.w-40 { width: 40%; }
.invoice-line.w-35 { width: 35%; }
.invoice-line.w-25 { width: 25%; }

.spacer { height: 10px; }

.invoice-table {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 43, 60, 0.04);
  padding: 12px;
}

.invoice-table .row {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.invoice-table .cell {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 43, 60, 0.08);
}

.cell.w-50 { width: 50%; }
.cell.w-20 { width: 20%; }
.cell.w-30 { width: 30%; }
.cell.w-40 { width: 40%; }
.cell.w-15 { width: 15%; }
.cell.w-55 { width: 55%; }

.invoice-total {
  display: grid;
  justify-content: end;
  gap: 6px;
}

.floating-badge {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 220px;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(0, 43, 60, 0.08), rgba(0, 43, 60, 0.04));
  box-shadow: 0 18px 44px rgba(0, 43, 60, 0.14);
}

.badge-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.badge-sub {
  color: rgba(0, 43, 60, 0.70);
  font-size: 13px;
  margin-top: 4px;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--stroke);
}

.section-alt {
  background: transparent;
  border-top: 1px solid var(--stroke);
  border-bottom: none;
}

.contact-band {
  padding: 28px 0;
  background: transparent;
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px;
  background: rgba(233, 229, 221, 0.85);
  border: 1px solid rgba(0, 43, 60, 0.10);
  border-radius: 6px;
}

.contact-band-title {
  font-size: 16px;
  color: rgba(0, 43, 60, 0.72);
}

.contact-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 43, 60, 0.18);
    background: rgb(1 43 60);
    color: white;
    font-weight: 650;
    font-size: 14px;
    transition: background var(--t-fast) var(--ease), border var(--t-fast) var(--ease);
}

.contact-band-btn:hover {
    background: rgb(13 61 81);
    border-color: rgba(0, 43, 60, 0.26);
}

.contact-band-heart {
  color: rgb(255 0 0 / 90%);
}

.contact-avatars {
  display: inline-flex;
  margin-left: 4px;
}

.contact-avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 60, 0.18);
  box-shadow: 0 8px 18px rgba(0, 43, 60, 0.10);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-avatar.a1 {
  background-image:
    url('./assets/human1.png'),
    radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(160deg, rgba(0, 43, 60, 0.16), rgba(0, 43, 60, 0.06));
}

.contact-avatar.a2 {
  background-image:
    url('./assets/human2.png'),
    radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(160deg, rgba(0, 43, 60, 0.18), rgba(0, 43, 60, 0.08));
}

.contact-avatar.a3 {
  background-image:
    url('./assets/human3.png'),
    radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(160deg, rgba(0, 43, 60, 0.20), rgba(0, 43, 60, 0.10));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 44px;
}

.muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}

.cards h3 {
  font-size: 22px;
}

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

.card-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 43, 60, 0.85);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.card p {
  margin-top: 8px;
  color: rgba(0, 43, 60, 0.72);
  line-height: 1.55;
}

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.showcase {
  display: grid;
  gap: 0;
}

.showcase-divider {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--stroke);
  margin: 34px 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.showcase-row.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-row.reverse .showcase-shot {
  order: 1;
}

.showcase-copy h3 {
  font-size: 22px;
}

.showcase-copy p {
  margin-top: 10px;
  color: rgba(0, 43, 60, 0.72);
  line-height: 1.65;
}

.showcase-shot {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
}

.showcase-shot-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 10px;
    background: rgba(233, 229, 221, 0.85);
}

.showcase-shot-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-shot-label {
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
}

.reviews-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(0, 43, 60, 0.70);
  font-size: 14px;
}

.reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: #f3b61f;
  font-size: 14px;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  position: relative;
  border: 1px solid rgba(0, 43, 60, 0.10);
  background: rgba(233, 229, 221, 0.85);
  padding: 16px 16px 14px;
  border-radius: 6px;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: rgba(233, 229, 221, 0.85);
}

.review-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: transparent;
  transform: translateY(1px);
  border-top-color: rgba(0, 43, 60, 0.10);
  z-index: -1;
}

.review-card p {
  color: rgba(0, 43, 60, 0.84);
  line-height: 1.6;
}

.review-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: rgba(0, 43, 60, 0.62);
  font-size: 13px;
}

.review-foot .review-stars {
  color: rgba(0, 43, 60, 0.75);
  letter-spacing: 0.08em;
}

.review-author {
  white-space: nowrap;
}

.contact-page-head h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.contact-email {
  text-decoration: underline;
  text-decoration-color: rgba(0, 43, 60, 0.35);
  text-underline-offset: 4px;
}

.contact-email:hover {
  text-decoration-color: rgba(0, 43, 60, 0.65);
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.label {
  font-size: 13px;
  color: rgba(0, 43, 60, 0.68);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(0, 43, 60, 0.16);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px;
  border-radius: 0;
  font: inherit;
  color: rgba(0, 43, 60, 0.92);
  transition: border var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(0, 43, 60, 0.32);
  background: rgba(255, 255, 255, 0.90);
}

.textarea {
  resize: vertical;
  min-height: 180px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(0, 43, 60, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.check-input {
  margin-top: 2px;
}

.check a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 43, 60, 0.35);
  text-underline-offset: 4px;
}

.check a:hover {
  text-decoration-color: rgba(0, 43, 60, 0.65);
}

.contact-media {
  grid-template-columns: 0.58fr 1fr;
  gap: 16px;
  align-items: center;
}

.contact-media-phone {
  aspect-ratio: 9 / 19;
  border: 1px solid rgba(0, 43, 60, 0.14);
  background:
    radial-gradient(260px 180px at 40% 20%, rgba(0, 43, 60, 0.09), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.28));
  box-shadow: 0 18px 50px rgba(0, 43, 60, 0.12);
}

.contact-media-photo {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 43, 60, 0.14);
  background:
    url('assets/contactbanner.png') center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(0, 43, 60, 0.12);
}

.legal-container {
  margin: 0 auto;
}

.legal-card {
  padding: 28px;
}

.legal-card h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-card h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.legal-card h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0 10px;
  color: rgba(0, 43, 60, 0.82);
}

.legal-card ul {
  padding-left: 18px;
  margin: 6px 0 12px;
}

.legal-card li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
  color: rgba(0, 43, 60, 0.82);
}

.legal-card a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 43, 60, 0.35);
  text-underline-offset: 3px;
}

.legal-card a:hover {
  text-decoration-color: rgba(0, 43, 60, 0.65);
}

.subtitle {
  font-size: 14px;
  color: rgba(0, 43, 60, 0.62);
  margin: 10px 0 24px;
}

.meta-box {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 43, 60, 0.03);
  font-size: 12px;
  color: rgba(0, 43, 60, 0.62);
}

.shot {
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 16px 44px rgba(0, 43, 60, 0.10);
}

.shot-inner {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(700px 400px at 30% 20%, rgba(0, 43, 60, 0.07), transparent 55%),
    radial-gradient(500px 400px at 70% 60%, rgba(0, 43, 60, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.18));
}

.shot-label {
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
}

.hint {
  margin-top: 16px;
  color: rgba(0, 43, 60, 0.72);
  font-size: 14px;
}

.pricing-hero {
  padding-top: 74px;
}

.pricing-hero-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 12px;
}

.pricing-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pricing-subtitle {
  margin: 0;
  color: rgba(0, 43, 60, 0.72);
  font-size: 16px;
}

.pricing-reviews {
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 43, 60, 0.64);
  font-size: 13px;
}

.pricing-stars {
  color: rgba(0, 43, 60, 0.78);
  letter-spacing: 0.08em;
}

.pricing-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 43, 60, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 43, 60, 0.06);
}

.pricing-card-top {
  padding: 28px 26px 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.pricing-card-title {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.pricing-card-price {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: rgba(0, 43, 60, 0.92);
}

.pricing-card-period {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 43, 60, 0.38);
}

.pricing-card-desc {
  color: rgba(0, 43, 60, 0.62);
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
}

.pricing-cta {
  margin-top: 10px;
  width: 100%;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 8px;
  justify-content: center;
}

.pricing-card-fine {
  color: rgba(0, 43, 60, 0.38);
  font-size: 12px;
}

.pricing-card-divider {
  height: 1px;
  background: rgba(0, 43, 60, 0.10);
}

.pricing-card-bottom {
  padding: 22px 26px 26px;
  flex: 1;
}

.pricing-card-bottom-title {
  text-align: center;
  font-weight: 700;
  color: rgba(0, 43, 60, 0.72);
}

.pricing-feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(0, 43, 60, 0.84);
  font-size: 14px;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 43, 60, 0.92);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.pricing-card-popular {
  border-color: rgba(0, 43, 60, 0.18);
  box-shadow: 0 14px 44px rgba(0, 43, 60, 0.10);
  overflow: visible;
}

.pricing-card-popular .pricing-card-top {
  padding-top: 36px;
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #12181c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 5;
}

.pricing-highlights {
  padding-top: 40px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight-card {
  border: 1px solid rgba(0, 43, 60, 0.12);
  background: rgba(233, 229, 221, 0.55);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
}

.highlight-media {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.65);
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.highlight-body h3 {
  font-size: 18px;
  line-height: 1.2;
}

.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
}


.price-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.price-plan { font-weight: 800; font-size: 20px; }

.price-note {
  margin-top: 6px;
  color: rgba(0, 43, 60, 0.70);
}

.price-badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--stroke);
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  padding-left: 22px;
  color: rgba(0, 43, 60, 0.84);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #002b3c;
}

.price-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fineprint {
  margin-top: 14px;
  color: rgba(0, 43, 60, 0.60);
  font-size: 12px;
}

.side-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.70);
}

.side-card p { margin-top: 10px; line-height: 1.6; }

.stat { margin-top: 16px; }

.stat-number {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 4px;
  color: rgba(0, 43, 60, 0.70);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.faq-col {
  border-top: 1px solid var(--stroke);
}

.faq-item {
  border-bottom: 1px solid var(--stroke);
}

.faq-item summary {
  list-style: none;
}

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

.faq-q {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(0, 43, 60, 0.86);
  font-weight: 600;
}

.faq-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 43, 60, 0.55);
  flex: 0 0 auto;
}

.faq-a {
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 43, 60, 0.10);
  background: rgba(233, 229, 221, 0.55);
  color: rgba(0, 43, 60, 0.78);
  line-height: 1.65;
  border-radius: 6px;
}

.faq-item[open] .faq-q {
  color: rgba(0, 43, 60, 0.92);
}

details {
  padding: 14px 16px;
}

details summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 10px;
  color: rgba(0, 43, 60, 0.72);
  line-height: 1.6;
}

.cta {
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(0, 43, 60, 0.06), rgba(0, 43, 60, 0.03));
  box-shadow: 0 18px 46px rgba(0, 43, 60, 0.14);
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--stroke);
  background: rgba(0, 43, 60, 0.02);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  margin-top: 10px;
  color: rgba(0, 43, 60, 0.62);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: rgba(0, 43, 60, 0.70);
  flex-wrap: wrap;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 12px;
}

.footer-links a:hover { background: rgba(255, 255, 255, 0.05); color: var(--ink); }

.brand-footer .brand-mark { width: 36px; height: 36px;}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; justify-self: end; flex-direction: column; }

  .mobile-nav {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height var(--t) var(--ease), opacity var(--t) var(--ease), transform var(--t) var(--ease);
    pointer-events: none;
  }

  .hero-media-frame { padding: 18px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-media {
    justify-self: start;
  }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .micro-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }
  .showcase-row.reverse .showcase-copy,
  .showcase-row.reverse .showcase-shot {
    order: initial;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-media {
    grid-template-columns: 0.5fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { padding-top: 54px; }
  .cards { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .shot { min-height: 360px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    width: 100%;
    gap: 8px;
  }

  .footer-links a {
    padding: 6px 8px;
  }
}

.mobile-nav.is-open {
  padding: 12px 20px 18px;
  border-top: 1px solid var(--stroke);
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
