:root {
  --bg: #0c0c0f;
  --panel: #141418;
  --panel-strong: #19191f;
  --panel-soft: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.72);
  --ink: #1b1815;
  --line: rgba(211, 176, 104, 0.2);
  --gold: #d3b068;
  --gold-strong: #f0cf86;
  --grey: #d8d5cf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(211, 176, 104, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #0b0b0d 0%, #111115 42%, #151519 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 72px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

main {
  display: block;
}

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

.site-shell {
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(211, 176, 104, 0.34), rgba(255, 255, 255, 0.08)),
    #111115;
  border: 1px solid rgba(211, 176, 104, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--gold-strong);
}

.brand-text {
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1 1 auto;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #16120d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 18px 30px rgba(211, 176, 104, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
}

.button-whatsapp {
  color: #07130d;
  background: linear-gradient(135deg, #6cf3b8, #2eb986);
  box-shadow: 0 18px 30px rgba(46, 185, 134, 0.2);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-strong);
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 0 0 6px rgba(211, 176, 104, 0.12);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1,
.demo-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero {
  padding: 48px 0 36px;
}

.hero-grid,
.demo-hero-grid {
  display: grid;
  gap: 28px;
}

.hero-grid > *,
.demo-hero-grid > *,
.split-panel > *,
.contact-grid > * {
  min-width: 0;
}

.hero-copy,
.demo-hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy h1,
.demo-hero-copy h1 {
  font-size: clamp(3rem, 10vw, 5.8rem);
}

.hero-copy p,
.demo-hero-copy p,
.section-heading p,
.body-copy {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.hero-actions,
.cta-actions,
.pricing-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-line {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  color: var(--grey);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.hero-panel,
.content-panel,
.pricing-card,
.contact-card,
.service-card,
.testimonial-card,
.featured-card,
.process-card,
.benefit-card,
.area-card,
.privacy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel,
.content-panel,
.privacy-card {
  padding: 22px;
}

.visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(160deg, var(--visual-start, #1e1d24), var(--visual-end, #0b0b0f));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.visual-photo,
.visual-overlay {
  position: absolute;
  inset: 0;
}

.visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}

.visual-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 11, 0.18), rgba(8, 8, 11, 0.78)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%);
}

.visual::before,
.visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(0.5px);
  z-index: 0;
}

.visual::before {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
}

.visual::after {
  width: 140px;
  height: 140px;
  left: -24px;
  bottom: -42px;
  background: rgba(211, 176, 104, 0.16);
}

.visual-top,
.visual-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.visual-top {
  margin-bottom: 22px;
}

.visual-badge,
.visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-badge strong,
.visual-chip {
  min-width: 0;
  overflow-wrap: anywhere;
}

.visual-chip strong,
.visual-badge strong {
  font-weight: 800;
}

.visual-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #16120d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.visual-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.visual-title {
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.95;
  margin: 0;
}

.visual-lines,
.visual-tiles {
  display: grid;
  gap: 10px;
}

.visual-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.visual-lines span:nth-child(1) {
  width: 78%;
}

.visual-lines span:nth-child(2) {
  width: 58%;
}

.visual-lines span:nth-child(3) {
  width: 70%;
}

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

.visual-tiles span {
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-tiles span::before {
  content: "";
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.4);
}

.visual-label {
  font-size: 0.96rem;
  font-weight: 700;
}

.visual-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.stats-grid,
.card-grid,
.portfolio-grid,
.service-grid,
.testimonial-grid,
.gallery-grid,
.pricing-grid,
.process-grid,
.benefit-grid,
.area-grid,
.featured-grid,
.contact-grid,
.summary-grid {
  display: grid;
  gap: 16px;
}

.promo-strip {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.promo-line {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(211, 176, 104, 0.14);
  color: var(--grey);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
}

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

.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
}

.card-grid,
.portfolio-grid,
.gallery-grid,
.pricing-grid,
.process-grid,
.benefit-grid,
.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-grid,
.testimonial-grid,
.area-grid,
.contact-grid,
.summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.demo-card,
.portfolio-card,
.featured-card,
.service-card,
.testimonial-card,
.pricing-card,
.process-card,
.benefit-card,
.area-card,
.contact-card {
  padding: 18px;
}

.demo-card {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 56px;
}

.portfolio-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.portfolio-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(211, 176, 104, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(211, 176, 104, 0.28);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}

.portfolio-card-featured .portfolio-visual {
  order: 2;
}

.portfolio-card-featured .portfolio-content {
  order: 1;
}

.portfolio-content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.portfolio-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
}

.portfolio-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-label {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-label-real {
  color: #16120d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-color: transparent;
}

.demo-library-heading {
  margin-top: 12px;
}

.demo-card h3,
.portfolio-card h3,
.featured-card h3,
.pricing-card h3,
.process-card h3,
.benefit-card h3,
.contact-card h3,
.service-card h3,
.privacy-card h1,
.privacy-card h2 {
  margin: 0;
}

.demo-card p,
.portfolio-card p,
.featured-card p,
.pricing-card p,
.process-card p,
.benefit-card p,
.contact-card p,
.service-card p,
.testimonial-card p,
.area-card p,
.privacy-card p,
.privacy-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promo-copy {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

.promo-copy-hero {
  font-size: 1rem;
}

.demo-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(211, 176, 104, 0.14);
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-heading {
  display: grid;
  gap: 8px;
}

.card-heading small {
  color: var(--gold-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  font-size: 2.1rem;
}

.price span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

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

.feature-list li,
.tick-list li {
  display: flex;
  gap: 12px;
  color: var(--grey);
}

.feature-list li::before,
.tick-list li::before {
  content: "+";
  color: var(--gold-strong);
  font-weight: 800;
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(211, 176, 104, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(211, 176, 104, 0.28);
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
}

.browser-shell {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(9, 9, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.browser-top span:nth-child(1) {
  background: #ff7c75;
}

.browser-top span:nth-child(2) {
  background: #f7c65b;
}

.browser-top span:nth-child(3) {
  background: #61d095;
}

.browser-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.preview-hero {
  min-height: 160px;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-tag {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey);
  font-size: 0.84rem;
}

.split-panel {
  display: grid;
  gap: 18px;
}

.highlight-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(211, 176, 104, 0.3), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(211, 176, 104, 0.2);
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

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

.form-grid {
  display: grid;
  gap: 12px;
}

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

.field label {
  font-size: 0.9rem;
  color: var(--grey);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-strong) 50%),
    linear-gradient(135deg, var(--gold-strong) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 56%,
    calc(100% - 16px) 56%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: #111115;
  background: #f7f4ee;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(211, 176, 104, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

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

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

.quote-status {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(211, 176, 104, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(211, 176, 104, 0.24);
  color: var(--text);
}

.quote-status strong {
  font-size: 1rem;
}

.quote-status span {
  color: var(--grey);
  line-height: 1.6;
}

.quote-status:not(.is-visible) {
  opacity: 1;
}

.quote-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.quote-panel-heading {
  display: grid;
  gap: 8px;
}

.quote-panel-heading small {
  color: var(--gold-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-panel-heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 0.98;
}

.quote-grid {
  display: grid;
  gap: 12px;
}

.quote-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.choice-panel {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.choice-panel legend {
  padding: 0;
  margin-bottom: 10px;
  color: var(--grey);
  font-size: 0.92rem;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  min-width: 0;
}

.choice-pill:hover,
.choice-pill:focus-within {
  border-color: rgba(211, 176, 104, 0.34);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.choice-pill input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--gold-strong);
}

.choice-pill span {
  flex: 1 1 auto;
  color: var(--text);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.choice-pill:has(input:checked) {
  background: linear-gradient(135deg, rgba(211, 176, 104, 0.18), rgba(255, 255, 255, 0.06));
  border-color: rgba(211, 176, 104, 0.38);
}

.choice-pill:has(input:checked) span {
  color: #fff;
  font-weight: 700;
}

.quote-submit {
  width: 100%;
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-detail {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail strong {
  display: block;
  margin-bottom: 6px;
}

.contact-detail a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(211, 176, 104, 0.45);
  text-underline-offset: 3px;
}

.service-area {
  display: grid;
  gap: 18px;
}

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

.quote-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #16120d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  font-weight: 800;
}

.reviewer {
  display: grid;
  gap: 4px;
}

.reviewer strong {
  font-size: 1rem;
}

.reviewer span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0 44px;
}

.footer-inner {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.privacy-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

.floating-quote {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 41;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #17120c;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 20px 40px rgba(211, 176, 104, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-quote span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.24);
}

.fade-up {
  animation: fadeUp 600ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 280ms;
}

.privacy-card ul {
  padding-left: 18px;
}

#request-quote,
#request-quote-form {
  scroll-margin-top: 96px;
}

#request-quote-title {
  scroll-margin-top: 132px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero-grid,
  .demo-hero-grid,
  .split-panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

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

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

  .form-grid .field:last-child,
  .form-grid .field:nth-last-child(2):last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .hero {
    padding-top: 64px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    max-width: 760px;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .section {
    padding: 52px 0;
  }

  .section-tight {
    padding-top: 24px;
  }

  .hero {
    padding-top: 36px;
  }

  .header-inner {
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 14px 0;
  }

  .hero-copy h1,
  .demo-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .hero-copy,
  .demo-hero-copy {
    gap: 16px;
    max-width: calc(100vw - 32px);
  }

  .portfolio-grid,
  .portfolio-card-featured {
    grid-template-columns: 1fr;
  }

  .portfolio-card-featured {
    padding: 18px;
  }

  .portfolio-card-featured .portfolio-visual,
  .portfolio-card-featured .portfolio-content {
    order: initial;
  }

  .portfolio-content h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-panel,
  .content-panel,
  .privacy-card,
  .contact-band,
  .highlight-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .visual {
    min-height: 220px !important;
    padding: 14px;
    border-radius: 22px;
  }

  .portfolio-card-featured .visual,
  .hero-panel .visual {
    min-height: 260px !important;
  }

  .visual-top,
  .visual-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .visual-badge,
  .visual-chip {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .visual-icon {
    width: 32px;
    height: 32px;
  }

  .stats-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .contact-detail,
  .demo-card,
  .portfolio-card,
  .pricing-card,
  .process-card,
  .benefit-card,
  .area-card,
  .service-card,
  .testimonial-card,
  .contact-card {
    border-radius: 20px;
  }

  .hero-copy p,
  .demo-hero-copy p,
  .section-heading p,
  .trust-line {
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .demo-hero-copy p {
    max-width: 32ch;
  }

  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    padding-left: 44px;
  }

  .menu-toggle span {
    position: absolute;
    left: 16px;
    width: 18px;
  }

  .menu-toggle span:nth-child(1) {
    top: 16px;
  }

  .menu-toggle span:nth-child(2) {
    top: 23px;
  }

  .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
  }

  .nav-panel {
    display: none;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .brand {
    max-width: calc(100vw - 24px);
    letter-spacing: 0.04em;
  }

  .brand-text {
    min-width: 0;
    font-size: 0.9rem;
  }

  .brand-text span {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .nav-links,
  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions .button {
    flex: 1 1 200px;
  }

  .nav-links {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-actions .button,
  .contact-actions .button,
  .pricing-actions .button {
    width: 100%;
    padding-inline: 14px;
  }

  .trust-items .pill {
    flex: 1 1 130px;
  }

  .floating-quote {
    left: 50%;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    min-height: 52px;
    padding: 0 16px;
    max-width: min(320px, calc(100vw - 120px));
  }

  .floating-quote {
    font-size: 0.92rem;
  }
}
