:root {
  --ink: #20242c;
  --ink-2: #343a45;
  --paper: #faf8f4;
  --white: #fff;
  --sand: #eee7da;
  --sand-2: #e4dac9;
  --gold: #c89c55;
  --gold-dark: #9c7134;
  --red: #a6242f;
  --green: #16774e;
  --muted: #666c75;
  --line: rgba(32, 36, 44, .13);
  --radius: 22px;
  --shadow: 0 28px 70px rgba(26, 29, 35, .12);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::selection { color: #fff; background: var(--red); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute!important; width: 1px!important; height: 1px!important;
  padding: 0!important; margin: -1px!important; overflow: hidden!important;
  clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important;
}
.hidden-frame { display: none; visibility: hidden; }
.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 1000;
  padding: 12px 18px; border-radius: 8px; color: #fff; background: var(--ink);
}
.skip-link:focus { top: 20px; }

.utility-bar { color: #fff; background: #171a20; font-size: .86rem; }
.utility-inner {
  min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.utility-inner > div { display: flex; gap: 22px; }
.utility-inner a { color: #fff; }
.utility-hours,
.utility-phone { font-weight: 800; letter-spacing: .01em; }
.utility-hours { color: #f6d365; font-size: .88rem; }
.utility-phone { color: #fff; font-size: .94rem; }
.utility-phone strong { color: #fff; font-weight: 900; }
.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(32,36,44,.08);
  background: rgba(250,248,244,.92); backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 40px rgba(20,24,30,.09); }
.nav-shell { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 76px; height: 33px; object-fit: contain; object-position: left center; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: .94rem; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .61rem; letter-spacing: .025em; }
.brand-seal {
  display: grid!important; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  color: #fff; background: linear-gradient(135deg, var(--gold), var(--red));
  font-family: Georgia, serif; font-size: 1.35rem; font-style: italic; box-shadow: 0 8px 24px rgba(166,36,47,.28);
}
.primary-nav { display: flex; align-items: center; gap: clamp(8px, 1vw, 16px); font-size: .82rem; font-weight: 650; }
.primary-nav > a { position: relative; white-space: nowrap; }
.primary-nav > a:not(.button)::after {
  content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .2s ease;
}
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-cart-count { display: inline-grid; min-width: 20px; height: 20px; margin-left: 5px; place-items: center; padding: 0 5px; border-radius: 999px; color: #fff; background: var(--red); font-size: .62rem; line-height: 1; }
.button-buy .nav-cart-count { color: var(--red); background: #fff; }
.menu-button { display: none; padding: 8px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); }

.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 24px; border: 1px solid var(--ink); border-radius: 999px; cursor: pointer;
  color: #fff; background: var(--ink); font-weight: 760; letter-spacing: -.01em;
  box-shadow: 0 12px 24px rgba(31,36,44,.13); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { color: #fff; background: #080a0e; transform: translateY(-2px); box-shadow: 0 18px 34px rgba(31,36,44,.2); }
.button:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.button-small { min-height: 40px; padding: 8px 17px; font-size: .82rem; }
.button-buy {
  color: #fff;
  border-color: #a6242f;
  background: linear-gradient(135deg, #bd2a38, #8d1824);
  box-shadow: 0 12px 25px rgba(166,36,47,.22);
}
.button-buy:hover, .button-buy:focus-visible {
  color: #fff;
  border-color: #75131c;
  background: linear-gradient(135deg, #9f1d2a, #70101a);
  box-shadow: 0 18px 34px rgba(166,36,47,.3);
}
.button-support {
  color: #292116;
  border-color: #c89c55;
  background: linear-gradient(135deg, #f0cf91, #c89c55);
  box-shadow: 0 12px 25px rgba(156,113,52,.2);
}
.button-support:hover, .button-support:focus-visible {
  color: #21170a;
  border-color: #aa7d38;
  background: linear-gradient(135deg, #e8c277, #b9883f);
  box-shadow: 0 18px 34px rgba(156,113,52,.28);
}
.button-wide { width: 100%; }
.button-ghost { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.48); box-shadow: none; }
.button-ghost:hover { color: var(--ink); background: #fff; }
.button-dark { color: var(--ink); border-color: #fff; background: #fff; }
.button-dark:hover { color: #fff; background: transparent; }
.button-light { color: var(--ink); border-color: #fff; background: #fff; }
.button-light:hover { color: #fff; background: transparent; }
.text-link { color: var(--red); font-weight: 780; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.eyebrow {
  display: inline-flex; margin-bottom: 18px; align-items: center; gap: 10px;
  color: var(--gold-dark); font-size: .72rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: #efcd91; }

.hero { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; padding: 90px 0 100px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, rgba(250,248,244,1) 35%, rgba(248,241,229,.58));
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 520px; height: 520px; top: -250px; right: -90px; background: rgba(200,156,85,.16); }
.hero-orb-two { width: 360px; height: 360px; bottom: -230px; left: 35%; background: rgba(166,36,47,.1); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(50px, 7vw, 100px); }
.hero-copy h1 { max-width: 740px; margin-bottom: 24px; }
.hero-title {
  position: relative;
  padding-bottom: 25px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow: 0 4px 24px rgba(32,36,44,.08);
}
.hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(82px, 10vw, 128px);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 8px 24px rgba(166,36,47,.24);
  transform-origin: left center;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title {
    color: transparent;
    background: linear-gradient(112deg, #20242c 12%, #303743 65%, #a6242f 108%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}
.motion-ready .hero-copy .hero-title {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 36px, 0) scale(.985);
}
.motion-ready .hero-copy .hero-title::after { transform: scaleX(0); }
.motion-ready .hero-copy.visible .hero-title {
  animation: hero-title-reveal .95s cubic-bezier(.16,.78,.24,1) .12s both;
}
.motion-ready .hero-copy.visible .hero-title::after {
  animation: hero-title-accent .75s cubic-bezier(.2,.8,.25,1) .65s both;
}
@keyframes hero-title-reveal {
  from { opacity: 0; filter: blur(7px); transform: translate3d(0,36px,0) scale(.985); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) scale(1); }
}
@keyframes hero-title-accent {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}
.hero-copy h1 em { display: block; color: var(--red); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-copy > p { max-width: 660px; margin-bottom: 30px; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 32px; color: var(--muted); font-size: .82rem; }
.hero-trust b { margin-right: 6px; color: var(--green); }
.hero-visual { position: relative; min-height: 510px; }
.visual-card { border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.76); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.visual-main { position: absolute; inset: 25px 0 25px 30px; overflow: hidden; padding: 22px; border-radius: 34px; transform: rotate(1.6deg); }
.visual-label {
  position: absolute; top: 24px; left: 25px; z-index: 2; padding: 7px 12px; border-radius: 999px;
  color: #fff; background: rgba(32,36,44,.9); font-size: .69rem; font-weight: 750;
}
.visual-main img { width: 100%; height: 100%; border-radius: 22px; object-fit: contain; filter: saturate(.8) contrast(1.02); }
.floating-card {
  position: absolute; z-index: 3; display: grid; min-width: 170px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 18px 40px rgba(34,37,45,.15);
}
.floating-card strong { font-size: .9rem; }
.floating-card span { color: var(--muted); font-size: .72rem; }
.float-support { left: -10px; bottom: 48px; }
.float-secure { top: 4px; right: -12px; }

.proof-strip { position: relative; color: #fff; background: var(--ink); }
.proof-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.proof-grid > div { min-height: 105px; display: grid; align-content: center; padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { color: #f5d59b; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.proof-grid span { color: rgba(255,255,255,.68); font-size: .82rem; }
.proof-grid .proof-implementation,
.proof-grid .proof-cloud { padding-inline: 10px; }
.proof-implementation span { font-size: .68rem; letter-spacing: -.025em; white-space: nowrap; }
.proof-cloud strong { font-size: .68rem; letter-spacing: .04em; white-space: nowrap; }
.proof-grid .proof-support { padding-inline: 14px; }
.proof-support span { font-size: .61rem; letter-spacing: -.02em; white-space: nowrap; }

.section { padding: 110px 0; }
.section-heading { max-width: 780px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { max-width: 680px; font-size: 1.05rem; }
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.split-heading > div { max-width: 780px; }
.centered-heading { margin-inline: auto; text-align: center; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: 0 12px 34px rgba(28,31,38,.06); transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 26px 55px rgba(28,31,38,.12); }
.product-image {
  position: relative; height: 245px; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 70% 20%, #f7e6c3, #eee9e1 60%, #e5ded4);
}
.product-image::before { content: ""; position: absolute; width: 150px; height: 150px; border: 1px solid rgba(32,36,44,.09); border-radius: 50%; }
.product-image img { position: relative; z-index: 1; max-width: 78%; max-height: 78%; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.image-monogram {
  position: relative; z-index: 1; display: grid; place-items: center; width: 100px; height: 100px;
  border-radius: 28px; color: #fff; background: linear-gradient(135deg,var(--gold),var(--red));
  font: italic 4.5rem Georgia, serif; box-shadow: 0 22px 50px rgba(166,36,47,.2);
}
.category-pill {
  display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--gold-dark);
  background: #f6efe3; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.product-image .category-pill { position: absolute; z-index: 2; top: 16px; left: 16px; }
.card-content { padding: 26px; }
.card-content h3 { margin-bottom: 13px; }
.card-content h3 a:hover { color: var(--red); }
.card-content p { min-height: 76px; font-size: .88rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-meta strong { font-size: .86rem; }
.card-meta a { color: var(--red); font-size: .78rem; font-weight: 800; }

.section-dark { position: relative; color: #fff; background: #20242c; overflow: hidden; }
.section-dark::after { content: ""; position: absolute; width: 520px; height: 520px; right: -250px; bottom: -330px; border: 1px solid rgba(200,156,85,.25); border-radius: 50%; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.64); }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.12); }
.service-card { min-height: 300px; padding: 34px; color: #fff; background: #20242c; }
.service-number { display: block; margin-bottom: 48px; color: #d9b879; font-family: Georgia, serif; font-size: 1.1rem; }
.service-card h3 { margin-bottom: 15px; font-size: 1.45rem; }
.service-card p { min-height: 92px; font-size: .88rem; }
.service-link { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: #efcc8c; font-size: .8rem; font-weight: 800; }
.service-link span { font-size: 1.25rem; }
.service-card:hover { background: #292e38; }

.process-section { color: #fff; background: var(--red); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,8vw,120px); }
.process-copy { align-self: center; }
.process-copy h2 { max-width: 570px; }
.process-copy p { max-width: 500px; margin-bottom: 30px; color: rgba(255,255,255,.72); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-list li > span { color: #f1c981; font: 1.15rem Georgia, serif; }
.process-list h3 { margin-bottom: 5px; color: #fff; }
.process-list p { margin: 0; color: rgba(255,255,255,.7); font-size: .87rem; }

.industry-section { background: #efe8dd; }
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.industry-card { min-height: 205px; padding: 28px; border: 1px solid rgba(32,36,44,.09); border-radius: 20px; background: rgba(255,255,255,.65); }
.industry-card > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border-radius: 50%; color: #fff; background: var(--ink); font-family: Georgia,serif; }
.industry-card h3 { margin-bottom: 10px; }
.industry-card p { margin: 0; font-size: .85rem; }
.testimonial-section { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote-card { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.quote-stars { margin-bottom: 20px; color: var(--gold-dark); letter-spacing: .13em; font-size: .78rem; }
.quote-card blockquote { min-height: 130px; margin: 0 0 25px; font: 1.18rem/1.5 Georgia,serif; }
.quote-card figcaption { display: grid; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-card figcaption span { color: var(--muted); font-size: .77rem; }
.faq-preview { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px,8vw,120px); }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro p { max-width: 430px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 760; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: absolute; top: 22px; right: 5px; font: 1.7rem/1 Georgia,serif; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details > div { padding: 0 45px 24px 0; color: var(--muted); font-size: .91rem; }
.accordion details > div p { margin-bottom: 0; }
.article-section { background: #f0eade; }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.article-card { min-height: 260px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.72); }
.article-card > span { color: var(--gold-dark); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin: 20px 0 12px; }
.article-card h3 a:hover { color: var(--red); }
.article-card p { flex: 1; font-size: .85rem; }
.article-card > a { color: var(--red); font-size: .78rem; font-weight: 800; }
.final-cta { padding: 92px 0; color: #fff; background: var(--ink); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.final-cta h2 { max-width: 760px; margin-bottom: 12px; }
.final-cta p { margin: 0; color: rgba(255,255,255,.65); }
.final-cta-inner > div:last-child { display: grid; gap: 12px; justify-items: center; flex: 0 0 auto; }
.plain-contact { color: #e8c986; font-size: .76rem; }

.page-hero { padding: 110px 0; background: linear-gradient(130deg,#f3ecdf,#fbfaf7 65%); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.page-hero h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(2.7rem,5.5vw,5.2rem); }
.page-hero p { max-width: 690px; font-size: 1.08rem; }
.page-hero-card { display: grid; gap: 13px; padding: 32px; border-radius: 24px; color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.page-hero-card strong { margin-top: 10px; color: #efcb8b; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.page-hero-card span, .page-hero-card a { color: rgba(255,255,255,.8); }
.compact-hero { padding: 90px 0; }
.compact-hero h1 { max-width: 980px; }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.story-image { overflow: hidden; min-height: 540px; border-radius: 30px; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.value-grid > div { display: grid; padding: 19px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.value-grid span { color: var(--muted); font-size: .8rem; }
.answer-band { padding: 54px 0; color: #fff; background: var(--red); }
.answer-band .container { max-width: 940px; }
.answer-band h2 { margin-bottom: 11px; color: #fff; font-size: 1.6rem; }
.answer-band p { margin: 0; color: rgba(255,255,255,.83); font-size: 1.02rem; }
.soft-section { background: #efe9df; }
.soft-section .process-copy h2, .soft-section .process-list h3 { color: var(--ink); }
.soft-section .process-copy p, .soft-section .process-list p { color: var(--muted); }
.soft-section .process-list li { border-color: var(--line); }
.soft-section .process-list li > span { color: var(--red); }
.light-services { gap: 18px; background: transparent; }
.light-services .service-card { border-radius: 20px; }
.faq-page-grid { display: grid; grid-template-columns: 270px 1fr; gap: 70px; }
.faq-page-grid aside { position: sticky; top: 120px; align-self: start; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq-page-grid aside strong { font-size: 1.15rem; }
.faq-page-grid aside p { font-size: .84rem; }
.legal-copy { max-width: 840px; padding-top: 80px; padding-bottom: 100px; }
.legal-copy h2 { margin-top: 42px; margin-bottom: 12px; font-size: 1.55rem; }
.legal-copy p { font-size: .96rem; }
.legal-copy a { color: var(--red); text-decoration: underline; }
.security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.security-grid article { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.security-grid article > span { color: var(--gold-dark); font-family: Georgia,serif; }
.security-grid h2 { margin: 25px 0 12px; font-size: 1.8rem; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: -25px 0 40px; }
.filter-pills a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .78rem; font-weight: 750; }
.filter-pills a:hover, .filter-pills .active { color: #fff; border-color: var(--ink); background: var(--ink); }
.catalog-grid { display: grid; gap: 28px; }
.catalog-card { display: grid; grid-template-columns: 370px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 14px 36px rgba(28,31,38,.06); }
.catalog-image { min-height: 390px; display: grid; place-items: center; padding: 40px; background: radial-gradient(circle at 70% 20%,#f6e7c8,#eee9e1 65%); }
.catalog-image img { max-width: 82%; max-height: 290px; object-fit: contain; }
.catalog-copy { padding: 42px; }
.catalog-copy h2 { margin: 18px 0 8px; font-size: 2.3rem; }
.catalog-copy h2 a:hover { color: var(--red); }
.catalog-tagline { color: var(--ink); font-weight: 760; }
.check-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 25px; margin: 20px 0; padding: 0; list-style: none; color: var(--muted); font-size: .83rem; }
.check-list li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
.catalog-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.empty-card { padding: 50px; border: 1px dashed var(--line); border-radius: 20px; text-align: center; }

.detail-hero { padding: 75px 0 90px; background: linear-gradient(135deg,#f1e9dc,#fbfaf7); }
.detail-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: var(--muted); font-size: .73rem; }
.breadcrumbs a:hover { color: var(--red); }
.detail-hero h1 { margin-bottom: 18px; }
.detail-tagline { color: var(--ink); font-size: 1.3rem; font-weight: 700; }
.detail-hero p { max-width: 700px; }
.price-box { display: grid; width: min(400px,100%); margin: 28px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.68); }
.price-box span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.price-box strong { margin: 4px 0; font-size: 1.3rem; }
.price-box small { color: var(--muted); font-size: .69rem; }
.detail-visual { position: relative; min-height: 490px; display: grid; place-items: center; padding: 50px; border-radius: 36px; background: var(--ink); box-shadow: var(--shadow); }
.detail-visual::before { content: ""; position: absolute; inset: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.detail-visual img { position: relative; z-index: 1; max-height: 330px; object-fit: contain; }
.image-monogram-large { width: 160px; height: 160px; font-size: 7rem; }
.detail-proof { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 2; display: flex; justify-content: center; gap: 18px; color: rgba(255,255,255,.72); font-size: .68rem; }
.content-sidebar-grid { display: grid; grid-template-columns: 1fr 360px; gap: 80px; }
.rich-copy { max-width: 780px; color: var(--muted); font-size: 1.02rem; }
.rich-copy h2 { margin-top: 48px; color: var(--ink); font-size: 2rem; }
.rich-copy h2:first-child { margin-top: 0; }
.feature-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink-2); font-size: .85rem; }
.feature-list li span { color: var(--green); }
.sticky-card { position: sticky; top: 120px; align-self: start; padding: 30px; border-radius: 22px; color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.sticky-card h2 { color: #fff; font-size: 1.65rem; }
.sticky-card p { color: rgba(255,255,255,.68); font-size: .85rem; }
.mini-process { margin: 25px 0; padding: 0; list-style: none; }
.mini-process li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.78); font-size: .8rem; }
.mini-process li span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; color: var(--ink); background: #edcb8c; }
.service-directory { display: grid; gap: 18px; }
.service-directory-card { display: grid; grid-template-columns: 70px 1fr auto; gap: 28px; align-items: center; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.service-directory-card > span { color: var(--gold-dark); font: 1.3rem Georgia,serif; }
.service-directory-card h2 { margin-bottom: 8px; font-size: 2rem; }
.service-directory-card p { max-width: 760px; margin-bottom: 10px; font-size: .88rem; }
.download-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.download-card { display: flex; min-height: 315px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.verified-label { margin-left: 7px; color: var(--green); font-size: .68rem; font-weight: 800; }
.download-card h2 { margin: 25px 0 12px; font-size: 1.55rem; }
.download-card p { flex: 1; font-size: .86rem; }
.download-card small { margin-bottom: 18px; color: var(--muted); }

.search-bar { display: grid; grid-template-columns: 1fr 250px auto; gap: 12px; margin-bottom: 42px; }
.search-bar input, .search-bar select {
  width: 100%; min-height: 48px; padding: 11px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.post-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.post-card { position: relative; display: grid; grid-template-columns: 7px 1fr; gap: 24px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.post-accent { border-radius: 999px; background: linear-gradient(var(--gold),var(--red)); }
.post-card span { color: var(--gold-dark); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.post-card h2 { margin: 18px 0 12px; font-size: 1.75rem; }
.post-card h2 a:hover { color: var(--red); }
.post-card p { min-height: 82px; font-size: .87rem; }
.post-card footer { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.post-card footer a { color: var(--red); font-weight: 800; }
.article-hero { padding: 90px 0 70px; background: var(--ink); }
.article-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(45px,6vw,85px); align-items: center; }
.article-head { max-width: 760px; }
.article-hero .breadcrumbs { color: rgba(255,255,255,.5); }
.article-hero h1 { max-width: 960px; margin-bottom: 24px; color: #fff; font-size: clamp(2.7rem,5.5vw,5rem); }
.article-hero p { max-width: 780px; color: rgba(255,255,255,.68); font-size: 1.1rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; color: #e8c67f; font-size: .74rem; }
.article-hero-media { min-height: 450px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(255,255,255,.06); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.article-hero-media img { width: 100%; height: 100%; min-height: 450px; display: block; object-fit: cover; }
.article-answer { margin-top: 45px; }
.article-body-grid { display: grid; grid-template-columns: 70px 1fr 260px; gap: 45px; padding-top: 75px; padding-bottom: 100px; }
.article-share { position: sticky; top: 120px; align-self: start; display: grid; justify-items: center; gap: 10px; }
.article-share > span { color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.article-share a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: .72rem; font-weight: 800; }
.article-copy { max-width: 760px; }
.article-cta { position: sticky; top: 120px; align-self: start; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.article-cta p { font-size: .8rem; }

.contact-section, .payment-section { padding: 90px 0 110px; background: linear-gradient(125deg,#efe6d8,#fbfaf7 62%); }
.contact-grid, .payment-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(60px,8vw,110px); align-items: start; }
.contact-copy, .payment-copy { position: sticky; top: 130px; }
.contact-copy h1, .payment-copy h1 { font-size: clamp(2.7rem,5vw,4.8rem); }
.contact-methods { display: grid; gap: 12px; margin-top: 35px; }
.contact-methods a { display: grid; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.7); }
.contact-methods a:hover { border-color: var(--gold); background: #fff; }
.contact-methods span { color: var(--gold-dark); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-methods small { color: var(--muted); }
.form-card { padding: 40px; border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); }
.form-kicker { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--green); background: #e5f5ec; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.form-card h2 { margin: 22px 0 30px; font-size: 2.3rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 19px; }
.full-field { grid-column: 1/-1; }
.form-card label { display: block; margin: 14px 0 7px; color: var(--ink-2); font-size: .76rem; font-weight: 780; }
.form-grid label { margin-top: 0; }
.form-card label > span { color: var(--red); }
.form-control, .form-card input:not([type="checkbox"]), .form-card select, .form-card textarea {
  width: 100%; min-height: 49px; padding: 11px 14px; border: 1px solid rgba(32,36,44,.18); border-radius: 11px;
  outline: none; background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card textarea { min-height: 122px; resize: vertical; }
.form-control:focus, .form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(200,156,85,.13); }
.support-safety-note { margin-top: 30px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.65); }
.support-safety-note strong { display: block; margin-bottom: 6px; color: var(--ink); }
.support-safety-note p { margin: 0; font-size: .93rem; }
.ticket-reference { display: inline-block; padding: 10px 16px; border-radius: 999px; color: var(--ink); background: var(--cream); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 17px 0; }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.form-check label { margin: 0; font-weight: 600; }
.errorlist { margin: 5px 0 0; padding: 0; color: var(--red); list-style: none; font-size: .72rem; }
.form-privacy { margin: 14px 0 0; text-align: center; font-size: .7rem; }
.form-privacy a { color: var(--red); text-decoration: underline; }
.config-alert { margin-bottom: 20px; padding: 15px; border: 1px solid #e8c777; border-radius: 12px; background: #fff8df; }
.config-alert p { margin: 5px 0 0; font-size: .8rem; }
.security-list { margin: 38px 0; padding: 0; list-style: none; }
.security-list li { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.security-list li > span { color: var(--green); }
.security-list strong { display: block; }
.security-list p { margin: 2px 0 0; font-size: .8rem; }
.payment-form > form > label { margin-top: 16px; }
.catalog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.catalog-cart-form,.purchase-add-form,.detail-cart-form { margin: 0; }
.detail-cart-form { display: inline-flex; }

.purchase-hero { position: relative; overflow: hidden; padding: 85px 0; color: #fff; background: linear-gradient(135deg,#171a20 0%,#292126 58%,#561722 100%); }
.purchase-hero::before { content: ""; position: absolute; width: 500px; height: 500px; top: -290px; right: 5%; border: 1px solid rgba(232,198,127,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(232,198,127,.025),0 0 0 140px rgba(232,198,127,.02); }
.purchase-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.purchase-hero h1 { max-width: 760px; margin-bottom: 18px; color: #fff; font-size: clamp(3rem,6vw,5.8rem); }
.purchase-hero p { max-width: 720px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.gateway-badge { display: inline-flex; gap: 13px; align-items: center; margin-top: 24px; padding: 12px 16px; border: 1px solid rgba(232,198,127,.25); border-radius: 15px; background: rgba(255,255,255,.06); }
.gateway-lock { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--ink); background: #e8c67f; font-size: .72rem; }
.gateway-badge div { display: grid; }
.gateway-badge strong { font-size: .78rem; }
.gateway-badge small { color: rgba(255,255,255,.55); font-size: .67rem; }
.purchase-steps { margin: 0; padding: 12px 0; list-style: none; }
.purchase-steps li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; padding: 17px 0; color: rgba(255,255,255,.48); }
.purchase-steps li:not(:last-child)::after { content: ""; position: absolute; top: 63px; bottom: -9px; left: 26px; width: 1px; background: rgba(255,255,255,.14); }
.purchase-steps li > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; font-size: .7rem; font-weight: 800; }
.purchase-steps li div { display: grid; }
.purchase-steps strong { color: #fff; font-size: 1rem; }
.purchase-steps small { font-size: .73rem; }
.purchase-steps .active > span { color: var(--ink); border-color: #e8c67f; background: #e8c67f; box-shadow: 0 0 0 7px rgba(232,198,127,.1); }

.purchase-catalog-section { padding: 95px 0 105px; background: #fbfaf7; }
.purchase-heading { max-width: 760px; margin-bottom: 35px; }
.purchase-heading h2 { font-size: clamp(2.25rem,4vw,3.6rem); }
.purchase-heading p { max-width: 650px; }
.service-purchase-heading { margin-top: 90px; }
.purchase-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.purchase-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 34px rgba(28,31,38,.05); transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.purchase-card.purchasable { border-color: rgba(166,36,47,.28); }
.purchase-card:hover { transform: translateY(-5px); border-color: rgba(200,156,85,.55); box-shadow: 0 22px 48px rgba(28,31,38,.1); }
.purchase-card-image { height: 190px; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 68% 18%,#f7e7c7,#eee9e1 68%); }
.purchase-card-image img { max-width: 85%; max-height: 145px; object-fit: contain; }
.service-purchase-image img { width: 100%; height: 100%; max-width: none; max-height: none; border-radius: 13px; object-fit: cover; }
.purchase-card-body { padding: 25px; }
.purchase-card-body h3 { min-height: 58px; margin: 15px 0 10px; font-size: 1.55rem; }
.purchase-card-body p { min-height: 70px; font-size: .82rem; }
.purchase-card-footer { display: flex; min-height: 65px; align-items: center; justify-content: space-between; gap: 15px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.purchase-card-footer strong { max-width: 52%; font-size: .82rem; }

.cart-section { padding: 100px 0 110px; color: #fff; background: var(--ink); }
.cart-heading { max-width: 760px; margin-bottom: 38px; }
.cart-heading h2 { color: #fff; font-size: clamp(2.4rem,4vw,3.8rem); }
.cart-heading p { color: rgba(255,255,255,.58); }
.cart-layout { display: grid; grid-template-columns: 1fr 345px; gap: 30px; align-items: start; }
.cart-lines { display: grid; gap: 14px; }
.cart-line { position: relative; display: grid; grid-template-columns: 92px minmax(180px,1fr) 120px 125px 62px; gap: 18px; align-items: center; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 19px; color: var(--ink); background: #fff; }
.cart-line-image { width: 92px; height: 82px; display: grid; place-items: center; overflow: hidden; padding: 8px; border-radius: 12px; background: var(--cream); }
.cart-line-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line-copy > span { color: var(--gold-dark); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.cart-line-copy h3 { margin: 4px 0 3px; font-size: 1.25rem; }
.cart-line-copy small { color: var(--muted); font-size: .7rem; }
.cart-quantity-form { display: grid; grid-template-columns: 58px auto; gap: 5px 8px; align-items: end; }
.cart-quantity-form label { grid-column: 1/-1; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.cart-quantity-form input { width: 58px; height: 38px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 8px; }
.cart-quantity-form button,.cart-remove-form button { border: 0; color: var(--red); background: transparent; font-size: .68rem; font-weight: 800; cursor: pointer; }
.cart-line-total { display: grid; text-align: right; }
.cart-line-total span { color: var(--muted); font-size: .62rem; text-transform: uppercase; }
.cart-line-total strong { font-size: 1rem; }
.cart-remove-form { justify-self: end; }
.cart-remove-form button { display: grid; width: 32px; height: 32px; place-items: center; padding: 0; border: 1px solid rgba(166,36,47,.18); border-radius: 50%; background: #fff7f7; font-size: 1.15rem; line-height: 1; }
.cart-remove-form button:hover,.cart-remove-form button:focus-visible { color: #fff; background: var(--red); }
.cart-summary { position: sticky; top: 120px; padding: 28px; border-radius: 22px; color: var(--ink); background: linear-gradient(145deg,#f5d99e,#c89c55); box-shadow: 0 24px 55px rgba(0,0,0,.24); }
.cart-summary .eyebrow { color: #6b4c1f; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(36,30,21,.16); }
.cart-summary-total strong { font-size: 1.45rem; }
.cart-summary > small { display: block; margin: 15px 0 22px; color: rgba(36,30,21,.7); font-size: .68rem; }
.cart-empty { display: grid; justify-items: center; max-width: 680px; margin: 0 auto; padding: 55px 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; text-align: center; background: rgba(255,255,255,.04); }
.cart-empty-icon { display: grid; width: 60px; height: 60px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: var(--ink); background: #e8c67f; font-size: 1.6rem; }
.cart-empty h3 { color: #fff; font-size: 2rem; }
.cart-empty p { max-width: 530px; color: rgba(255,255,255,.58); }
.cart-empty .button-ghost { color: #fff; border-color: rgba(255,255,255,.25); background: transparent; }
.billing-cart-note { display: flex; justify-content: space-between; gap: 20px; margin: -10px 0 22px; padding: 14px 16px; border-radius: 12px; color: #fff; background: var(--ink); }
.billing-cart-note span { color: rgba(255,255,255,.62); font-size: .72rem; }

.payment-details-section { padding: 100px 0 120px; background: linear-gradient(125deg,#eee4d5,#fbfaf7 64%); }
.payment-details-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,7vw,100px); align-items: start; }
.payment-trust-panel { position: sticky; top: 125px; }
.payment-trust-panel h2 { font-size: clamp(2.25rem,4vw,3.7rem); }
.safety-copy { padding: 16px 18px; border-left: 3px solid var(--red); background: rgba(255,255,255,.56); font-size: .8rem; }
.policy-links { display: flex; gap: 22px; margin-top: 25px; color: var(--red); font-size: .74rem; font-weight: 800; }
.purchase-form-card { padding: clamp(28px,4vw,50px); }
.purchase-form-card .config-alert { margin-top: -8px; }

.checkout-review-section { min-height: 720px; padding: 95px 0 115px; background: linear-gradient(125deg,#efe6d8,#fbfaf7 65%); }
.checkout-review-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px,8vw,110px); align-items: center; }
.checkout-review-copy h1 { max-width: 650px; font-size: clamp(3rem,5vw,5rem); }
.checkout-review-copy > p { max-width: 590px; }
.purchase-reference { display: inline-grid; margin-top: 22px; padding: 16px 20px; border: 1px solid rgba(166,36,47,.22); border-radius: 14px; background: rgba(255,255,255,.62); }
.purchase-reference span,.result-reference-primary span { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.purchase-reference strong { margin-top: 3px; color: var(--red); font-size: 1.25rem; letter-spacing: .03em; }
.checkout-security-note { display: flex; max-width: 580px; gap: 12px; margin-top: 28px; align-items: flex-start; color: var(--green); }
.checkout-security-note p { margin: 0; color: var(--muted); font-size: .78rem; }
.checkout-summary-card { padding: clamp(28px,4vw,46px); border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.checkout-summary-head { display: grid; gap: 5px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.checkout-summary-head span { color: var(--gold-dark); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.checkout-summary-head strong { font: 2rem Georgia,serif; }
.checkout-order-lines,.result-order-lines { display: grid; padding: 16px 0; border-bottom: 1px solid var(--line); }
.checkout-order-lines > div,.result-order-lines > div { display: flex; justify-content: space-between; gap: 25px; padding: 8px 0; font-size: .76rem; }
.checkout-order-lines small,.result-order-lines small { color: var(--muted); }
.checkout-summary-list { margin: 20px 0; }
.checkout-summary-list div { display: flex; justify-content: space-between; gap: 24px; padding: 9px 0; }
.checkout-summary-list dt { color: var(--muted); font-size: .73rem; }
.checkout-summary-list dd { margin: 0; text-align: right; font-size: .78rem; font-weight: 750; }
.checkout-total { display: grid; margin: 25px 0; padding: 22px; border-radius: 17px; color: #fff; background: var(--ink); }
.checkout-total span { color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.checkout-total strong { margin: 4px 0; color: #fff; font-size: 2.4rem; }
.checkout-total small { color: rgba(255,255,255,.5); }
.checkout-back-link { display: block; margin-top: 20px; text-align: center; font-size: .75rem; }
.gateway-disclosure { margin: 16px 0 0; text-align: center; font-size: .66rem; }

.gateway-redirect-section { min-height: 680px; display: grid; place-items: center; padding: 80px 20px; background: linear-gradient(135deg,#efe7da,#fbfaf7); }
.gateway-redirect-card { width: min(650px,100%); padding: 55px; border: 1px solid var(--line); border-radius: 30px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.gateway-redirect-card h1 { font-size: clamp(2.6rem,5vw,4rem); }
.gateway-redirect-card p { margin: 0 auto 28px; }
.gateway-spinner { display: block; width: 55px; height: 55px; margin: 0 auto 25px; border: 4px solid #eadfce; border-top-color: var(--red); border-radius: 50%; animation: gateway-spin .8s linear infinite; }
@keyframes gateway-spin { to { transform: rotate(360deg); } }

.purchase-result-section { min-height: 720px; padding: 90px 0 110px; background: linear-gradient(135deg,#efe7da,#fbfaf7); }
.purchase-result-card { max-width: 850px; margin: 0 auto; padding: clamp(35px,6vw,70px); border: 1px solid var(--line); border-radius: 32px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.purchase-result-card h1 { font-size: clamp(2.6rem,5vw,4.5rem); }
.purchase-result-card > p { max-width: 650px; margin: 0 auto 30px; }
.result-reference-card { overflow: hidden; margin: 35px 0 25px; border: 1px solid var(--line); border-radius: 20px; text-align: left; }
.result-reference-primary { display: grid; gap: 4px; padding: 22px 25px; background: var(--ink); }
.result-reference-primary span { color: rgba(255,255,255,.55); }
.result-reference-primary strong { color: #fff; font-size: 1.4rem; letter-spacing: .04em; }
.result-order-lines { padding: 18px 25px; }
.result-reference-card dl { display: grid; grid-template-columns: repeat(2,1fr); margin: 0; padding: 18px 25px; gap: 0 35px; }
.result-reference-card dl div { display: grid; gap: 3px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.result-reference-card dt { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; }
.result-reference-card dd { margin: 0; overflow-wrap: anywhere; font-size: .83rem; font-weight: 760; }
.result-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 25px 0; font-size: .76rem; }
.result-contact span { width: 100%; color: var(--muted); }
.result-contact a { color: var(--red); font-weight: 800; }
.purchase-result-card .hero-actions { justify-content: center; }

.empty-state { min-height: 660px; display: grid; place-items: center; padding: 80px 20px; text-align: center; background: linear-gradient(135deg,#efe7da,#fbfaf7); }
.empty-state > div { max-width: 750px; }
.empty-state h1 { font-size: clamp(2.6rem,5vw,4.8rem); }
.empty-state p { max-width: 630px; margin: 0 auto 30px; }
.empty-state .hero-actions { justify-content: center; }
.success-mark, .failure-mark, .pending-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 25px; border-radius: 50%; color: #fff; font-size: 2rem; font-weight: 800; }
.success-mark { background: var(--green); }
.failure-mark { background: var(--red); }
.pending-mark { background: var(--gold-dark); }
.checkout-amount { display: grid; margin: 25px auto; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.checkout-amount span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.checkout-amount strong { font-size: 2.2rem; }
.checkout-state .text-link { display: block; margin-top: 18px; }
.login-section { min-height: 650px; display: grid; place-items: center; padding: 80px 20px; background: linear-gradient(135deg,#efe7da,#fbfaf7); }
.login-card { width: min(460px,100%); padding: 40px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.login-card h1 { font-size: 2.4rem; }
.login-card label { display: block; margin: 14px 0 6px; font-size: .75rem; font-weight: 800; }
.login-card input { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; }
.login-card .button { width: 100%; margin-top: 22px; }

.flash-stack { position: fixed; top: 125px; left: 50%; z-index: 200; transform: translateX(-50%); }
.flash { margin-bottom: 10px; padding: 13px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.quick-actions { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: grid; gap: 9px; }
.quick-actions a { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; color: #fff; box-shadow: 0 12px 30px rgba(20,24,30,.22); font-size: .75rem; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.quick-actions a:hover, .quick-actions a:focus-visible { color: #fff; transform: translateY(-3px) scale(1.04); box-shadow: 0 17px 34px rgba(20,24,30,.28); }
.quick-whatsapp { background: #18a966; }
.quick-whatsapp svg { width: 25px; height: 25px; }
.quick-call { background: var(--red); font-size: 1rem!important; }

/* Progressive card motion: content remains visible when JavaScript is unavailable. */
.motion-ready .reveal-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(.985);
  transition:
    opacity .7s cubic-bezier(.2,.75,.25,1),
    transform .7s cubic-bezier(.2,.75,.25,1),
    box-shadow .3s ease,
    background-color .3s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready .reveal-card.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}
.reveal-delay-0 { --reveal-delay: 0ms; }
.reveal-delay-1 { --reveal-delay: 70ms; }
.reveal-delay-2 { --reveal-delay: 140ms; }
.reveal-delay-3 { --reveal-delay: 210ms; }
.reveal-delay-4 { --reveal-delay: 280ms; }
.reveal-delay-5 { --reveal-delay: 350ms; }

.motion-ready .product-card.reveal-card.reveal-visible:hover,
.motion-ready .catalog-card.reveal-card.reveal-visible:hover,
.motion-ready .article-card.reveal-card.reveal-visible:hover,
.motion-ready .post-card.reveal-card.reveal-visible:hover,
.motion-ready .download-card.reveal-card.reveal-visible:hover,
.motion-ready .industry-card.reveal-card.reveal-visible:hover,
.motion-ready .quote-card.reveal-card.reveal-visible:hover {
  transform: translate3d(0, -8px, 0) scale(1.008);
  box-shadow: 0 30px 65px rgba(28,31,38,.15);
}
.motion-ready .service-card.reveal-card.reveal-visible:hover,
.motion-ready .service-directory-card.reveal-card.reveal-visible:hover,
.motion-ready .process-list li.reveal-card.reveal-visible:hover {
  transform: translate3d(0, -5px, 0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto!important;
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
    transition-delay: 0ms!important;
  }
  .reveal-card {
    opacity: 1!important;
    transform: none!important;
  }
}
.cookie-note {
  position: fixed; right: 20px; bottom: 25px; z-index: 110; width: min(390px,calc(100% - 40px));
  padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; color: #fff; background: #22262e; box-shadow: var(--shadow);
}
.cookie-note p { margin: 0 0 12px; color: rgba(255,255,255,.7); font-size: .78rem; }
.site-footer { padding-top: 75px; color: #fff; background: #171a20; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 55px; padding-bottom: 55px; }
.brand-light strong { color: #fff; }
.brand-light small { color: rgba(255,255,255,.5); }
.footer-brand > p { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: .83rem; }
.footer-brand .disclaimer { font-size: .67rem; }
.footer-grid h2 { color: #e8c981; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { color: rgba(255,255,255,.65); font-size: .79rem; }
.footer-grid a:hover { color: #fff!important; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .69rem; }
.footer-bottom > div { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto!important; transition-duration: .01ms!important; animation-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .menu-button { display: block; }
  .primary-nav {
    position: absolute; top: 100%; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch;
    gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a { padding: 11px 12px; }
  .primary-nav > a::after { display: none; }
  .primary-nav .button { margin-top: 8px; }
  .hero-grid, .page-hero-grid, .detail-grid, .contact-grid, .payment-grid { gap: 45px; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 450px; }
  .service-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid .service-card:last-child:nth-child(odd), .product-grid .product-card:last-child:nth-child(odd) { grid-column: span 2; }
  .industry-grid, .testimonial-grid, .article-grid, .download-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid .quote-card:last-child:nth-child(odd), .download-grid .download-card:last-child:nth-child(odd) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); gap: 30px; }
  .article-body-grid { grid-template-columns: 55px 1fr; }
  .article-cta { position: static; grid-column: 2; }
  .purchase-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); }
  .section { padding: 80px 0; }
  .hero { padding: 70px 0; }
  .hero-grid, .page-hero-grid, .story-grid, .detail-grid, .contact-grid, .payment-grid, .process-grid, .faq-layout, .content-sidebar-grid, .article-hero-grid { grid-template-columns: 1fr; }
  .article-hero-media, .article-hero-media img { min-height: 360px; }
  .hero-copy h1 em { display: inline; }
  .hero-visual { min-height: 420px; }
  .visual-main { inset: 20px; }
  .float-support { left: 0; }
  .float-secure { right: 0; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .proof-grid > div:nth-child(even) { border-right: 0; }
  .proof-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-grid > div:last-child:nth-child(odd) { grid-column: 1 / -1; border-bottom: 0; }
  .split-heading, .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .split-heading { display: flex; }
  .faq-intro, .contact-copy, .payment-copy, .sticky-card, .faq-page-grid aside { position: static; }
  .process-grid { gap: 45px; }
  .process-section { padding-block: 80px; }
  .page-hero { padding: 75px 0; }
  .story-image, .story-image img { min-height: 400px; }
  .faq-page-grid { grid-template-columns: 1fr; gap: 35px; }
  .catalog-card { grid-template-columns: 280px 1fr; }
  .catalog-image { min-height: 360px; }
  .catalog-copy { padding: 32px; }
  .service-directory-card { grid-template-columns: 50px 1fr; }
  .service-directory-card > .button { grid-column: 2; justify-self: start; }
  .content-sidebar-grid { gap: 45px; }
  .article-body-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .article-share { position: static; display: flex; justify-content: flex-start; }
  .article-cta { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: span 2; }
  .purchase-hero-grid,.payment-details-grid,.checkout-review-grid { grid-template-columns: 1fr; }
  .purchase-hero-grid { gap: 40px; }
  .payment-trust-panel { position: static; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .utility-inner { min-height: 50px; justify-content: space-between; gap: 10px; }
  .utility-hours { max-width: 54%; font-size: .78rem; line-height: 1.25; }
  .utility-inner > div { width: auto; margin-left: auto; justify-content: flex-end; gap: 10px; }
  .utility-phone { font-size: .82rem; white-space: nowrap; }
  .utility-cloud-login { display: none; }
  .nav-shell { min-height: 70px; }
  .brand img { width: 64px; height: 28px; }
  .brand strong { font-size: .82rem; }
  .brand small { font-size: .54rem; }
  .hero { padding: 58px 0 70px; }
  .hero-title { font-size: clamp(2.75rem, 12vw, 3.75rem); line-height: 1.01; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; }
  .hero-visual { min-height: 330px; }
  .article-hero { padding: 65px 0; }
  .article-hero-media, .article-hero-media img { min-height: 250px; }
  .visual-main { inset: 10px 0; padding: 12px; border-radius: 24px; transform: none; }
  .visual-label { top: 16px; left: 16px; }
  .floating-card { min-width: 140px; padding: 12px; }
  .float-support { bottom: 8px; }
  .float-secure { top: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div,
  .proof-grid > div:last-child:nth-child(odd) { min-height: 80px; grid-column: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .proof-support span { font-size: .72rem; }
  .product-grid, .service-grid, .industry-grid, .testimonial-grid, .article-grid, .download-grid, .post-grid, .security-grid { grid-template-columns: 1fr; }
  .service-grid .service-card:last-child:nth-child(odd), .product-grid .product-card:last-child:nth-child(odd), .testimonial-grid .quote-card:last-child:nth-child(odd), .download-grid .download-card:last-child:nth-child(odd) { grid-column: auto; }
  .product-image { height: 220px; }
  .service-card { min-height: 270px; padding: 27px; }
  .service-number { margin-bottom: 30px; }
  .industry-card { min-height: auto; }
  .quote-card blockquote { min-height: auto; }
  .final-cta { padding: 70px 0; }
  .final-cta-inner > div:last-child { width: 100%; }
  .final-cta .button { width: 100%; }
  .value-grid, .form-grid, .feature-list { grid-template-columns: 1fr; }
  .page-hero-card { padding: 25px; }
  .story-image, .story-image img { min-height: 300px; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-image { min-height: 260px; }
  .catalog-copy { padding: 26px; }
  .catalog-copy h2 { font-size: 1.8rem; }
  .check-list { grid-template-columns: 1fr; }
  .catalog-footer { align-items: flex-start; flex-direction: column; }
  .detail-visual { min-height: 350px; padding: 35px; }
  .detail-proof { flex-wrap: wrap; }
  .service-directory-card { grid-template-columns: 1fr; padding: 26px; }
  .service-directory-card > .button { grid-column: auto; }
  .search-bar { grid-template-columns: 1fr; }
  .post-card { padding: 24px; }
  .post-card p { min-height: auto; }
  .post-card footer { align-items: flex-start; flex-direction: column; }
  .article-byline { flex-direction: column; }
  .form-card { padding: 25px; border-radius: 21px; }
  .contact-section, .payment-section { padding: 65px 0 80px; }
  .purchase-hero { padding: 65px 0; }
  .purchase-card-grid { grid-template-columns: 1fr; }
  .purchase-card-body h3,.purchase-card-body p { min-height: auto; }
  .purchase-card-footer { align-items: flex-start; flex-direction: column; }
  .purchase-card-footer strong { max-width: none; }
  .cart-section { padding: 70px 0 80px; }
  .cart-line { grid-template-columns: 72px 1fr; gap: 14px; padding: 15px 42px 15px 15px; }
  .cart-line-image { width: 72px; height: 68px; }
  .cart-quantity-form,.cart-line-total { grid-column: 2; }
  .cart-line-total { text-align: left; }
  .cart-remove-form { position: absolute; top: 10px; right: 8px; }
  .payment-details-section,.purchase-catalog-section { padding: 70px 0 80px; }
  .service-purchase-heading { margin-top: 65px; }
  .checkout-review-section { padding: 70px 0 85px; }
  .checkout-summary-list div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .checkout-summary-list dd { text-align: left; }
  .gateway-redirect-card { padding: 38px 24px; }
  .result-reference-card dl { grid-template-columns: 1fr; }
  .checkout-order-lines > div,.result-order-lines > div { align-items: flex-start; }
  .purchase-result-card .hero-actions { align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .footer-bottom > div { flex-wrap: wrap; }
  .quick-actions { right: 12px; bottom: 12px; }
  .quick-actions a { width: 43px; height: 43px; }
}
