:root {
  --ink: #131526;
  --paper: #f7f0e8;
  --coral: #ff6847;
  --aqua: #82e6df;
  --butter: #ffd65a;
  --violet: #9b74ff;
  --cream: #fffaf4;
  --line: rgba(19,21,38,.16);
  --shadow: 0 24px 60px rgba(19,21,38,.16);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.skip-link { position: fixed; left: 16px; top: -80px; padding: 12px 16px; background: #fff; z-index: 1000; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  min-height: 78px; padding: 0 max(24px, calc((100vw - var(--max))/2));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,240,232,.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.045em; font-size: 1.28rem; }
.brand-dot { color: var(--coral); font-size: .55em; margin-left: 2px; }
.brand-icon { position: relative; width: 34px; height: 34px; display: inline-block; background: var(--ink); border-radius: 9px; overflow: hidden; transform: rotate(-4deg); }
.brand-icon i:first-child { position: absolute; width: 16px; height: 22px; background: var(--aqua); left: 4px; bottom: 4px; border-radius: 4px 4px 0 0; }
.brand-icon i:last-child { position: absolute; width: 11px; height: 16px; background: var(--coral); right: 3px; top: 4px; border-radius: 50% 50% 3px 3px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; font-size: .92rem; }
.main-nav a { transition: opacity .2s ease, transform .2s ease; }
.main-nav a:hover { opacity: .68; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--ink); color: #fff; }
.menu-button { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 10px; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  max-width: var(--max); margin: 0 auto; padding: clamp(58px, 8vw, 112px) 24px clamp(70px, 8vw, 112px);
  display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 6vw, 86px); align-items: center;
}
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 900; }
.eyebrow > span { width: 28px; height: 5px; border-radius: 999px; background: var(--coral); }
.eyebrow-dark > span { background: var(--ink); }
.eyebrow-light { color: #fff; }
.eyebrow-light > span { background: var(--aqua); }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(3.3rem, 6.7vw, 6.75rem); line-height: .91; letter-spacing: -.072em; font-weight: 900; }
.hero h1 em { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.hero-lead { max-width: 600px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: rgba(19,21,38,.74); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 22px; border: 0; border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-coral { background: var(--coral); color: var(--ink); box-shadow: 0 12px 0 var(--ink); }
.button-coral:hover { box-shadow: 0 8px 0 var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-wide { width: 100%; }
.text-link { font-weight: 900; border-bottom: 2px solid var(--ink); padding-bottom: 4px; }
.hero-points { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points li { border: 1px solid var(--line); background: rgba(255,255,255,.46); border-radius: 999px; padding: 9px 13px; font-size: .85rem; font-weight: 800; }

.hero-art { min-height: 660px; position: relative; isolation: isolate; }
.hero-grid { position: absolute; inset: 18px 0 0 24px; border-radius: 48px; background-color: var(--butter); background-image: linear-gradient(rgba(19,21,38,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(19,21,38,.09) 1px, transparent 1px); background-size: 26px 26px; transform: rotate(2deg); z-index: -4; }
.hero-photo { position: absolute; overflow: hidden; box-shadow: var(--shadow); border: 7px solid var(--cream); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { width: 48%; height: 77%; left: 8%; top: 7%; border-radius: 140px 140px 24px 24px; transform: rotate(-4deg); }
.hero-photo-main img { object-position: 49% 38%; }
.hero-photo-side { width: 34%; height: 38%; right: 4%; top: 6%; border-radius: 24px 100px 24px 24px; transform: rotate(5deg); }
.hero-photo-side img { object-position: 51% 28%; }
.site-mock { position: absolute; right: 3%; bottom: 5%; width: 48%; min-height: 280px; background: var(--ink); border: 6px solid var(--cream); border-radius: 24px; box-shadow: var(--shadow); transform: rotate(-3deg); overflow: hidden; }
.mock-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #fff; }
.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.mock-bar i:nth-child(2) { background: var(--butter); }
.mock-bar i:nth-child(3) { background: var(--aqua); }
.mock-content { padding: 25px; color: #fff; }
.mock-content small { display: block; color: var(--aqua); font-weight: 900; letter-spacing: .15em; font-size: .62rem; }
.mock-content strong { display: block; margin: 18px 0; font-size: clamp(1.55rem, 2vw, 2.3rem); line-height: .98; letter-spacing: -.04em; }
.mock-content > span { display: block; height: 8px; width: 85%; background: rgba(255,255,255,.18); margin: 9px 0; border-radius: 9px; }
.mock-content > span:nth-of-type(2) { width: 58%; }
.mock-content b { display: inline-block; margin-top: 25px; background: var(--coral); color: var(--ink); padding: 10px 13px; border-radius: 999px; font-size: .68rem; }
.orbit { position: absolute; border: 3px solid var(--ink); border-radius: 50%; z-index: -2; }
.orbit-one { width: 155px; height: 155px; left: -1%; bottom: 3%; }
.orbit-two { width: 64px; height: 64px; right: 26%; top: 1%; background: var(--violet); box-shadow: 10px 10px 0 var(--ink); }
.burst { position: absolute; left: 43%; top: 43%; width: 120px; height: 120px; display: grid; place-items: center; text-align: center; background: var(--aqua); color: var(--ink); font-weight: 1000; font-size: .72rem; line-height: 1.05; clip-path: polygon(50% 0%,61% 18%,79% 6%,81% 29%,100% 27%,89% 48%,100% 61%,78% 66%,80% 88%,59% 79%,49% 100%,39% 80%,17% 90%,20% 67%,0 60%,13% 47%,1% 29%,22% 28%,21% 7%,40% 18%); transform: rotate(8deg); z-index: 5; }
.note { position: absolute; left: 2%; bottom: 5%; padding: 15px 18px; background: var(--violet); color: #fff; font-family: Georgia, serif; border: 3px solid var(--ink); transform: rotate(7deg); box-shadow: 8px 8px 0 var(--ink); z-index: 5; }
.note b { font-family: inherit; font-style: italic; }
.scribble { position: absolute; right: 25%; bottom: 35%; width: 170px; fill: none; stroke: var(--coral); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; z-index: 4; transform: rotate(5deg); }

.brand-strip { overflow: hidden; background: var(--ink); color: #fff; transform: rotate(-1deg) scale(1.02); border-top: 5px solid var(--coral); border-bottom: 5px solid var(--aqua); }
.strip-track { width: max-content; display: flex; gap: 27px; align-items: center; padding: 17px 0; font-weight: 1000; letter-spacing: .1em; animation: ticker 25s linear infinite; }
.strip-track b { color: var(--coral); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(82px, 10vw, 138px) 24px; }
.benefits { max-width: var(--max); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading h2, .package-intro h2, .seo-copy h2, .process-heading h2, .faq-intro h2, .contact-copy h2, .story-copy h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.section-heading > p:last-child, .package-intro > p:last-child { margin: 17px 0 0; font-size: 1.08rem; color: rgba(19,21,38,.68); }
.benefit-stack { display: grid; gap: 16px; }
.benefit-card { min-height: 230px; padding: 30px; display: grid; grid-template-columns: 90px 1fr minmax(240px, 360px); align-items: center; gap: 28px; border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: 9px 9px 0 var(--ink); }
.benefit-a { background: var(--aqua); transform: rotate(-.5deg); }
.benefit-b { background: var(--butter); transform: rotate(.5deg); }
.benefit-c { background: var(--violet); color: #fff; transform: rotate(-.35deg); }
.benefit-number { font-size: 3.8rem; font-weight: 1000; letter-spacing: -.08em; opacity: .28; }
.benefit-copy h3 { margin: 0 0 8px; font-size: clamp(1.65rem, 2.5vw, 2.5rem); letter-spacing: -.045em; }
.benefit-copy p { margin: 0; max-width: 480px; }
.benefit-art { min-height: 150px; position: relative; border: 3px solid currentColor; border-radius: 22px; overflow: hidden; }
.chat-art { padding: 23px; background: var(--cream); color: var(--ink); }
.chat-art span, .chat-art b { display: block; width: fit-content; max-width: 85%; padding: 10px 14px; border-radius: 14px; }
.chat-art span { background: #e8e4de; }
.chat-art b { margin: 12px 0 0 auto; background: var(--coral); }
.trust-art { display: grid; grid-template-columns: repeat(3, 1fr); place-items: center; background: var(--ink); color: var(--butter); }
.trust-art i { font-style: normal; font-size: 2rem; }
.trust-art strong { position: absolute; right: 14px; bottom: 10px; text-align: right; color: #fff; line-height: .9; font-size: 1.3rem; }
.contact-art { background: var(--cream); color: var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 18px; align-items: end; }
.contact-art span { min-height: 80px; border-radius: 16px; display: grid; place-items: center; font-weight: 950; border: 3px solid var(--ink); }
.contact-art span:nth-child(1) { background: var(--coral); transform: rotate(-5deg); }
.contact-art span:nth-child(2) { background: var(--aqua); transform: translateY(-10px); }
.contact-art span:nth-child(3) { background: var(--butter); transform: rotate(5deg); }

.story { position: relative; margin: 0 auto; max-width: 1500px; min-height: 740px; background: var(--ink); color: #fff; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; }
.story-photo { margin: 0; min-height: 740px; position: relative; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--ink)); }
.story-photo figcaption { position: absolute; left: 30px; bottom: 30px; z-index: 2; width: min(320px, calc(100% - 60px)); background: var(--butter); color: var(--ink); padding: 16px 18px; border: 3px solid var(--ink); font-weight: 900; transform: rotate(-3deg); }
.story-copy { padding: clamp(70px, 8vw, 120px) clamp(32px, 6vw, 95px) 80px 25px; align-self: center; z-index: 2; }
.story-copy h2 { max-width: 690px; }
.story-copy > p:not(.eyebrow) { max-width: 530px; margin: 24px 0 30px; color: rgba(255,255,255,.75); font-size: 1.1rem; }
.story-shape { position: absolute; width: 210px; height: 210px; right: -42px; bottom: -42px; background: var(--coral); color: var(--ink); border-radius: 50%; display: grid; place-items: center; transform: rotate(-14deg); font-weight: 1000; text-transform: uppercase; line-height: .8; }
.story-shape span:nth-child(2) { font-size: 2.1rem; }

.package { max-width: var(--max); margin: 0 auto; }
.package-intro { max-width: 780px; margin-bottom: 48px; }
.package-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 34px; align-items: start; }
.package-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); }
.package-list article { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 28px 18px 28px 0; border-bottom: 2px solid var(--ink); }
.package-list article:nth-child(odd) { padding-right: 28px; }
.package-list article:nth-child(even) { padding-left: 28px; border-left: 2px solid var(--ink); }
.package-list article > span { font-weight: 1000; color: var(--coral); }
.package-list h3 { margin: 0 0 6px; font-size: 1.1rem; }
.package-list p { margin: 0; color: rgba(19,21,38,.68); font-size: .92rem; }
.price-card { position: sticky; top: 108px; background: var(--ink); color: #fff; padding: 34px; border-radius: 30px; box-shadow: 12px 12px 0 var(--aqua); }
.price-label { display: inline-block; padding: 7px 10px; background: var(--aqua); color: var(--ink); font-size: .72rem; font-weight: 1000; letter-spacing: .12em; border-radius: 999px; }
.price { margin-top: 22px; font-size: clamp(5.5rem, 8vw, 8.5rem); font-weight: 1000; line-height: .8; letter-spacing: -.09em; color: var(--butter); }
.price sup { font-size: .32em; vertical-align: top; }
.price-sub { margin: 12px 0 24px; color: rgba(255,255,255,.65); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; border-top: 1px solid rgba(255,255,255,.18); }
.price-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--aqua); font-weight: 1000; }
.small-note { margin: 20px 0 0; font-size: .78rem; color: rgba(255,255,255,.55); }

.seo-block { max-width: 1500px; margin: 0 auto; background: var(--coral); display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; overflow: hidden; }
.seo-copy { max-width: 570px; margin-left: auto; }
.seo-copy > p:not(.eyebrow):not(.seo-note) { font-size: 1.08rem; }
.seo-note { display: inline-block; margin-top: 18px; padding: 11px 15px; background: var(--ink); color: #fff; font-weight: 900; transform: rotate(-1deg); }
.search-art { min-height: 530px; position: relative; background-color: var(--paper); background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px); background-size: 18px 18px; border-radius: 42px 0 0 42px; border: 4px solid var(--ink); border-right: 0; padding: 70px 55px; }
.search-box { height: 56px; max-width: 560px; margin: 0 auto; display: flex; align-items: center; gap: 14px; background: #fff; border: 3px solid var(--ink); border-radius: 999px; padding: 0 20px; box-shadow: 7px 7px 0 var(--ink); }
.search-box span { font-size: 1.6rem; }
.result-card { max-width: 590px; margin: 32px auto 0; background: #fff; border: 3px solid var(--ink); padding: 27px; box-shadow: 10px 10px 0 var(--aqua); }
.result-card small { color: #236c43; }
.result-card h3 { margin: 7px 0 8px; color: #225ad6; font-size: 1.35rem; }
.result-card p { margin: 0; color: #4c4c4c; }
.result-links { display: flex; gap: 10px; margin-top: 20px; }
.result-links span { padding: 7px 10px; background: #edf2ff; color: #225ad6; border-radius: 999px; font-size: .8rem; font-weight: 800; }
.map-chip { position: absolute; right: 5%; bottom: 7%; width: 220px; padding: 18px; background: var(--butter); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); transform: rotate(4deg); }
.map-chip i { width: 38px; height: 38px; display: block; margin-bottom: 10px; background: var(--coral); border: 3px solid var(--ink); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-chip b, .map-chip span { display: block; }
.map-chip span { font-size: .8rem; }
.seo-stamp { position: absolute; left: 4%; bottom: 6%; width: 125px; height: 125px; background: var(--violet); color: #fff; border: 3px solid var(--ink); border-radius: 50%; display: grid; place-items: center; text-align: center; font-weight: 1000; line-height: .95; transform: rotate(-10deg); }

.process { max-width: var(--max); margin: 0 auto; }
.process-heading { margin-bottom: 45px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { min-height: 280px; padding: 30px; border: 3px solid var(--ink); border-radius: 24px; background: var(--cream); box-shadow: 8px 8px 0 var(--ink); }
.process-grid article:nth-child(2) { background: var(--aqua); transform: translateY(22px); }
.process-grid article:nth-child(3) { background: var(--butter); }
.process-grid article > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.55rem; font-weight: 1000; }
.process-grid h3 { margin: 45px 0 10px; font-size: 1.45rem; line-height: 1.05; }
.process-grid p { margin: 0; color: rgba(19,21,38,.68); }

.faq { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.faq-list { border-top: 2px solid var(--ink); }
details { border-bottom: 2px solid var(--ink); }
summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1.05rem; font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 1.7rem; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -6px 0 24px; color: rgba(19,21,38,.7); max-width: 720px; }

.contact { max-width: 1500px; margin: 0 auto; background: var(--ink); color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 520px; }
.contact-copy > a { display: inline-block; margin-top: 18px; color: var(--aqua); font-size: 1.08rem; font-weight: 900; }
.contact-form { background: var(--cream); color: var(--ink); padding: 32px; border-radius: 28px; box-shadow: 12px 12px 0 var(--coral); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-size: .82rem; font-weight: 900; }
.contact-form input, .contact-form textarea { width: 100%; border: 2px solid var(--ink); border-radius: 13px; background: #fff; padding: 13px 14px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 4px rgba(130,230,223,.55); }
.form-note { margin: 14px 0 0; font-size: .75rem; color: rgba(19,21,38,.58); }

.site-footer { max-width: 1500px; margin: 0 auto; padding: 54px 24px; display: grid; grid-template-columns: 1.3fr .55fr .55fr; gap: 50px; border-top: 1px solid var(--line); }
.footer-brand p { max-width: 430px; color: rgba(19,21,38,.62); }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: .9rem; }
.brand-footer { margin-bottom: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-art { max-width: 760px; width: 100%; margin: 0 auto; }
  .benefit-card { grid-template-columns: 70px 1fr; }
  .benefit-art { grid-column: 1 / -1; }
  .story { grid-template-columns: 1fr; }
  .story-photo { min-height: 560px; }
  .story-photo::after { background: linear-gradient(0deg, var(--ink), transparent 45%); }
  .story-copy { padding: 70px 32px 95px; }
  .package-grid, .seo-block, .contact { grid-template-columns: 1fr; }
  .price-card { position: relative; top: auto; }
  .seo-copy { margin: 0; max-width: none; }
  .search-art { border-radius: 34px; border-right: 4px solid var(--ink); }
  .faq { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; padding: 0 18px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; left: 16px; right: 16px; top: 76px; padding: 22px; display: none; flex-direction: column; align-items: stretch; gap: 8px; background: var(--cream); border: 2px solid var(--ink); border-radius: 20px; box-shadow: 8px 8px 0 var(--ink); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px; }
  .nav-cta { text-align: center; }
  .hero { padding: 52px 18px 75px; gap: 48px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 570px; }
  .hero-grid { inset: 5px 0 10px 5px; border-radius: 28px; }
  .hero-photo-main { width: 58%; height: 72%; left: 4%; top: 7%; }
  .hero-photo-side { width: 35%; height: 31%; right: 4%; top: 5%; }
  .site-mock { width: 55%; right: 3%; bottom: 5%; min-height: 230px; }
  .mock-content { padding: 18px; }
  .mock-content strong { font-size: 1.45rem; }
  .burst { width: 88px; height: 88px; left: 47%; top: 40%; font-size: .58rem; }
  .note { left: 1%; bottom: 1%; font-size: .77rem; }
  .scribble { width: 110px; right: 21%; bottom: 34%; }
  .section-pad { padding: 78px 18px; }
  .benefit-card { padding: 22px; grid-template-columns: 52px 1fr; gap: 16px; }
  .benefit-number { font-size: 2.6rem; }
  .benefit-art { min-height: 135px; }
  .story-photo { min-height: 500px; }
  .package-list { grid-template-columns: 1fr; }
  .package-list article, .package-list article:nth-child(odd), .package-list article:nth-child(even) { padding: 24px 0; border-left: 0; }
  .price-card { padding: 28px 22px; }
  .seo-block { padding-left: 18px; padding-right: 18px; }
  .search-art { min-height: 500px; padding: 45px 18px; }
  .map-chip { right: 6%; bottom: 5%; }
  .seo-stamp { left: 3%; bottom: 4%; width: 96px; height: 96px; font-size: .73rem; }
  .result-links { flex-wrap: wrap; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article:nth-child(2) { transform: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 45px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   GOODFORM V2 — requested refinements
   ========================================================= */
:root {
  --blue: #4058ff;
  --lime: #c9ff45;
  --pink: #ff6aa8;
}

/* Goodform identity */
.brand { gap: 12px; font-size: 1.75rem; letter-spacing: -.06em; }
.brand-dot { color: var(--blue); font-size: 1em; margin-left: 1px; }
.brand-mark { width: 42px; height: 42px; position: relative; display: inline-block; flex: 0 0 42px; }
.brand-mark i { position: absolute; display: block; border: 3px solid var(--ink); }
.brand-mark i:nth-child(1) { width: 24px; height: 24px; left: 0; top: 1px; background: var(--lime); border-radius: 50%; }
.brand-mark i:nth-child(2) { width: 23px; height: 23px; right: 0; bottom: 0; background: var(--pink); transform: rotate(17deg); }
.brand-mark i:nth-child(3) { width: 14px; height: 31px; left: 15px; top: 5px; background: var(--blue); border-radius: 12px; transform: rotate(42deg); }
.brand-footer { font-size: 1.45rem; }
.brand-footer .brand-mark { transform: scale(.86); transform-origin: left center; margin-right: -4px; }

/* More expressive hero collage */
.hero-art { min-height: 690px; position: relative; isolation: isolate; }
.hero-canvas {
  position: absolute;
  inset: 15px 0 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 52px;
  background:
    radial-gradient(circle at 82% 18%, rgba(155,116,255,.96) 0 10%, transparent 10.4%),
    radial-gradient(circle at 16% 78%, rgba(130,230,223,.98) 0 14%, transparent 14.4%),
    linear-gradient(rgba(19,21,38,.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,21,38,.095) 1px, transparent 1px),
    linear-gradient(135deg, #ffd65a 0 58%, #ffc748 58% 100%);
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow: 16px 18px 0 rgba(19,21,38,.11);
  transform: rotate(1.1deg);
  z-index: -4;
  overflow: hidden;
}
.hero-canvas::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 94px;
  right: -34px;
  bottom: 88px;
  background: var(--coral);
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-22deg);
}
.hero-canvas::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  left: 32%;
  top: -58px;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.hero-photo { border-color: #fff; box-shadow: 0 24px 50px rgba(19,21,38,.24); }
.hero-photo-main {
  width: 54%;
  height: 69%;
  left: 4%;
  top: 8%;
  border-radius: 42px 170px 42px 42px;
  transform: rotate(-3.7deg);
  z-index: 2;
}
.hero-photo-main img { object-position: center 46%; }
.hero-photo-side {
  width: 35%;
  height: 41%;
  right: 4%;
  top: 6%;
  border-radius: 105px 30px 30px 30px;
  transform: rotate(4.5deg);
  z-index: 3;
}
.hero-photo-side img { object-position: 49% 35%; }
.hero-photo-mini {
  position: absolute;
  width: 29%;
  height: 25%;
  right: 1.5%;
  bottom: 5%;
  margin: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 26px 26px 90px 26px;
  box-shadow: 0 20px 42px rgba(19,21,38,.24);
  transform: rotate(5deg);
  z-index: 5;
}
.hero-photo-mini img { width: 100%; height: 100%; object-fit: cover; object-position: center 31%; }
.site-mock {
  right: 18%;
  bottom: 3%;
  width: 53%;
  min-height: 255px;
  background: #fff;
  border: 6px solid #fff;
  border-radius: 26px;
  box-shadow: 0 25px 55px rgba(19,21,38,.3);
  transform: rotate(-2.4deg);
  z-index: 6;
}
.mock-bar { height: 37px; border-bottom: 2px solid var(--ink); background: #f7f0e8; color: rgba(19,21,38,.55); }
.mock-bar span { margin-left: 5px; font-size: .57rem; font-weight: 800; letter-spacing: .04em; }
.mock-layout { min-height: 218px; display: grid; grid-template-columns: 1.2fr .8fr; background: var(--ink); color: #fff; }
.mock-copy { padding: 22px 20px; }
.mock-copy small { color: var(--aqua); font-size: .56rem; font-weight: 950; letter-spacing: .16em; }
.mock-copy strong { display: block; margin: 13px 0; font-size: clamp(1.25rem, 2vw, 2rem); line-height: .94; letter-spacing: -.05em; }
.mock-copy p { width: 88%; height: 7px; margin: 7px 0; background: rgba(255,255,255,.18); border-radius: 999px; }
.mock-copy p:nth-of-type(2) { width: 58%; }
.mock-copy b { display: inline-block; margin-top: 15px; padding: 9px 12px; background: var(--coral); color: var(--ink); border-radius: 999px; font-size: .62rem; }
.mock-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 16px 16px 16px 0; }
.mock-tiles i { display: block; min-height: 72px; border-radius: 12px; border: 2px solid rgba(255,255,255,.45); }
.mock-tiles i:nth-child(1) { grid-column: 1 / -1; background: linear-gradient(135deg, var(--violet), var(--blue)); }
.mock-tiles i:nth-child(2) { background: var(--aqua); }
.mock-tiles i:nth-child(3) { background: var(--butter); }
.mock-tiles i:nth-child(4) { grid-column: 1 / -1; min-height: 34px; background: var(--pink); }
.hero-price {
  position: absolute;
  left: -1%;
  bottom: 4%;
  width: 128px;
  height: 128px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--coral);
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-9deg);
  z-index: 9;
  animation: heroFloat 4.8s ease-in-out infinite;
}
.hero-price strong { display: block; font-size: 2.15rem; line-height: .9; letter-spacing: -.07em; }
.hero-price span { font-size: .62rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.hero-badge {
  position: absolute;
  right: 31%;
  top: 1%;
  width: 91px;
  height: 91px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 18px 55px 18px 55px;
  box-shadow: 6px 6px 0 var(--ink);
  font-size: .68rem;
  font-weight: 1000;
  line-height: 1.05;
  transform: rotate(8deg);
  z-index: 10;
  animation: heroFloat 5.4s ease-in-out -1.2s infinite;
}
.hero-caption {
  position: absolute;
  left: 3%;
  bottom: 25%;
  padding: 12px 15px;
  background: var(--violet);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(5deg);
  z-index: 8;
}
.hero-caption span, .hero-caption b { display: block; }
.hero-caption span { font-family: Georgia, serif; font-style: italic; }
.hero-caption b { font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
.hero-swoop { position: absolute; width: 175px; right: 23%; bottom: 31%; fill: none; stroke: var(--coral); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; z-index: 8; transform: rotate(-4deg); }
@keyframes heroFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* Back-and-forth benefit strip */
.brand-strip { transform: rotate(-.7deg) scale(1.015); }
.strip-track {
  --strip-travel: -36%;
  gap: 26px;
  padding: 18px 32px;
  animation: stripBounce 14s ease-in-out infinite alternate;
  will-change: transform;
}
.strip-track span { white-space: nowrap; }
.strip-track b { color: var(--lime); }
@keyframes stripBounce {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(var(--strip-travel),0,0); }
}

/* Stronger package frame, matched to the price card */
.package-grid { align-items: stretch; }
.package-list {
  position: relative;
  height: 100%;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto repeat(3, 1fr);
  border: 3px solid var(--ink);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 5%, rgba(201,255,69,.72) 0 9%, transparent 9.4%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,250,244,.94));
  box-shadow: 12px 12px 0 var(--butter);
}
.package-list-head {
  grid-column: 1 / -1;
  position: relative;
  min-height: 132px;
  padding: 26px 170px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--aqua);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.package-list-head > span { font-size: .68rem; font-weight: 1000; letter-spacing: .13em; }
.package-list-head > strong { display: block; max-width: 520px; margin-top: 7px; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.02; letter-spacing: -.045em; }
.package-head-shapes { position: absolute; right: 25px; top: 18px; width: 122px; height: 94px; }
.package-head-shapes i { position: absolute; display: block; border: 3px solid var(--ink); }
.package-head-shapes i:nth-child(1) { width: 62px; height: 62px; left: 0; top: 0; border-radius: 50%; background: var(--lime); }
.package-head-shapes i:nth-child(2) { width: 50px; height: 50px; right: 0; bottom: 0; border-radius: 15px; background: var(--pink); transform: rotate(14deg); }
.package-head-shapes i:nth-child(3) { width: 24px; height: 78px; left: 49px; top: 9px; border-radius: 999px; background: var(--blue); transform: rotate(42deg); }
.package-list article {
  padding: 24px 24px;
  grid-template-columns: 46px 1fr;
  align-content: center;
  gap: 14px;
  border-bottom: 2px solid var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.package-list article:nth-child(odd),
.package-list article:nth-child(even) { padding: 24px; }
.package-list article:nth-child(even) { border-left: 2px solid var(--ink); }
.package-list article:nth-last-child(-n+2) { border-bottom: 0; }
.package-list article:hover { background: rgba(255,214,90,.24); }
.package-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral);
  font-size: .8rem;
  box-shadow: 3px 3px 0 var(--ink);
}
.package-list h3 { font-size: 1.12rem; }
.price-card {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -96px;
  top: -90px;
  border: 28px solid rgba(155,116,255,.5);
  border-radius: 50%;
  pointer-events: none;
}
.price-card .button { margin-top: auto; }

@media (max-width: 1020px) {
  .hero-art { min-height: 660px; }
  .package-list, .price-card { min-height: 0; }
}

@media (max-width: 760px) {
  .brand { font-size: 1.36rem; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .brand-mark i:nth-child(1) { width: 20px; height: 20px; border-width: 2px; }
  .brand-mark i:nth-child(2) { width: 19px; height: 19px; border-width: 2px; }
  .brand-mark i:nth-child(3) { width: 11px; height: 26px; left: 12px; top: 4px; border-width: 2px; }
  .hero-art { min-height: 585px; }
  .hero-canvas { inset: 5px 0 8px 3px; border-radius: 30px; }
  .hero-photo-main { width: 61%; height: 61%; left: 3%; top: 8%; border-width: 5px; border-radius: 30px 105px 30px 30px; }
  .hero-photo-side { width: 36%; height: 33%; right: 3%; top: 5%; border-width: 5px; }
  .hero-photo-mini { width: 31%; height: 22%; right: 2%; bottom: 6%; border-width: 5px; border-radius: 18px 18px 55px 18px; }
  .site-mock { width: 60%; right: 14%; bottom: 3%; min-height: 210px; border-width: 5px; }
  .mock-layout { min-height: 176px; grid-template-columns: 1fr .7fr; }
  .mock-copy { padding: 16px 13px; }
  .mock-copy strong { font-size: 1.22rem; }
  .mock-tiles { padding: 12px 10px 12px 0; }
  .mock-tiles i { min-height: 50px; }
  .hero-price { width: 96px; height: 96px; bottom: 2%; }
  .hero-price strong { font-size: 1.62rem; }
  .hero-price span { font-size: .5rem; }
  .hero-badge { right: 28%; width: 72px; height: 72px; font-size: .55rem; }
  .hero-caption { left: 1%; bottom: 27%; padding: 9px 11px; font-size: .72rem; }
  .hero-swoop { width: 120px; right: 22%; bottom: 31%; stroke-width: 6; }
  .strip-track { font-size: .76rem; padding: 15px 22px; }
  .package-list { grid-template-columns: 1fr; grid-template-rows: auto; }
  .package-list-head { padding: 24px 105px 24px 22px; min-height: 118px; }
  .package-head-shapes { right: 13px; top: 23px; transform: scale(.72); transform-origin: right top; }
  .package-list article,
  .package-list article:nth-child(odd),
  .package-list article:nth-child(even) { padding: 22px; border-left: 0; border-bottom: 2px solid var(--ink); }
  .package-list article:last-child { border-bottom: 0; }
}

@media (max-width: 430px) {
  .hero-art { min-height: 520px; }
  .hero-photo-main { width: 64%; height: 58%; }
  .hero-photo-side { width: 35%; height: 30%; }
  .hero-photo-mini { width: 32%; height: 20%; }
  .site-mock { width: 63%; right: 9%; min-height: 188px; }
  .mock-layout { min-height: 154px; }
  .mock-copy small { font-size: .46rem; }
  .mock-copy strong { font-size: 1rem; }
  .mock-copy p { height: 5px; }
  .mock-copy b { font-size: .5rem; padding: 7px 8px; }
  .mock-tiles { gap: 5px; }
  .mock-tiles i { min-height: 42px; }
  .hero-caption, .hero-swoop { display: none; }
  .hero-badge { right: 25%; top: 0; }
  .package-list-head > strong { font-size: 1.18rem; }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track, .hero-price, .hero-badge { animation: none !important; }
}

/* =========================================================
   GOODFORM V3 — web design & business promotion hero
   ========================================================= */
.hero-design-lab {
  min-height: 700px;
  position: relative;
  isolation: isolate;
}
.design-stage {
  position: absolute;
  inset: 10px 0 20px 16px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 48px;
  background:
    linear-gradient(rgba(19,21,38,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,21,38,.08) 1px, transparent 1px),
    linear-gradient(135deg, #8fe9e2 0 54%, #d8ff58 54% 100%);
  background-size: 27px 27px, 27px 27px, auto;
  box-shadow: 16px 18px 0 rgba(19,21,38,.12);
  transform: rotate(.8deg);
  z-index: -5;
}
.stage-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 14%, rgba(255,255,255,.7), transparent 28%);
}
.stage-orb { position: absolute; display: block; border: 3px solid var(--ink); }
.stage-orb-one {
  width: 190px;
  height: 190px;
  right: -54px;
  top: -55px;
  border-radius: 50%;
  background: var(--violet);
}
.stage-orb-two {
  width: 175px;
  height: 82px;
  left: -34px;
  bottom: 62px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-22deg);
}
.stage-cross {
  position: absolute;
  right: 13%;
  bottom: 10%;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(19,21,38,.2);
  transform: rotate(10deg);
}

.design-browser {
  position: absolute;
  left: 3%;
  top: 8%;
  width: 78%;
  height: 61%;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(19,21,38,.3);
  transform: rotate(-2.3deg);
  z-index: 3;
}
.browser-top {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--ink);
  background: #fff9f2;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.browser-dots i:nth-child(2) { background: var(--butter); }
.browser-dots i:nth-child(3) { background: var(--aqua); }
.browser-address {
  min-width: 0;
  flex: 1;
  padding: 6px 12px;
  overflow: hidden;
  border: 1px solid rgba(19,21,38,.18);
  border-radius: 999px;
  color: rgba(19,21,38,.58);
  font-size: .58rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-live {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--lime);
  font-size: .51rem;
  font-weight: 1000;
  letter-spacing: .08em;
}
.browser-site { height: calc(100% - 42px); background: #fff8ef; }
.site-nav-mini {
  height: 48px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid rgba(19,21,38,.1);
  font-size: .54rem;
  font-weight: 800;
}
.site-nav-mini strong { margin-right: auto; font-size: .77rem; letter-spacing: -.04em; }
.site-nav-mini b { padding: 7px 10px; border-radius: 999px; background: var(--ink); color: #fff; }
.site-hero-mini {
  min-height: 225px;
  padding: 24px 20px 18px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}
.mini-copy small { color: #5c43dc; font-size: .5rem; font-weight: 1000; letter-spacing: .15em; }
.mini-copy > strong {
  display: block;
  margin: 10px 0 9px;
  font-size: clamp(1.45rem, 2.7vw, 2.65rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.mini-copy p { max-width: 290px; margin: 0; color: rgba(19,21,38,.68); font-size: .58rem; line-height: 1.45; }
.mini-copy > b {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--coral);
  font-size: .53rem;
}
.mini-visual {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px 70px 18px 18px;
  background: linear-gradient(145deg, var(--butter), #ffb652);
}
.mini-photo-shape {
  position: absolute;
  width: 78%;
  height: 82%;
  right: -2%;
  bottom: -8%;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 16px 16px;
  background:
    radial-gradient(circle at 50% 28%, #f1b28d 0 13%, transparent 13.5%),
    radial-gradient(circle at 50% 20%, #29212c 0 18%, transparent 18.5%),
    linear-gradient(150deg, transparent 0 32%, #4058ff 32% 67%, #131526 67% 100%);
}
.mini-review {
  position: absolute;
  left: 9px;
  bottom: 10px;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--coral);
  font-size: .52rem;
  font-weight: 1000;
  box-shadow: 4px 4px 0 var(--ink);
}
.mini-review em { display: block; color: var(--ink); font-size: .43rem; font-style: normal; }
.site-cards-mini { padding: 0 20px 15px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.site-cards-mini i { height: 30px; border-radius: 9px; background: var(--aqua); border: 1px solid rgba(19,21,38,.25); }
.site-cards-mini i:nth-child(2) { background: var(--pink); }
.site-cards-mini i:nth-child(3) { background: var(--violet); }

.design-phone {
  position: absolute;
  right: 2%;
  top: 19%;
  width: 27%;
  height: 51%;
  padding: 9px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 33px;
  background: var(--ink);
  box-shadow: 12px 18px 0 rgba(19,21,38,.18), 0 24px 50px rgba(19,21,38,.28);
  transform: rotate(5deg);
  z-index: 6;
}
.phone-speaker { position: absolute; top: 7px; left: 50%; width: 38%; height: 5px; border-radius: 9px; background: rgba(255,255,255,.35); transform: translateX(-50%); z-index: 2; }
.phone-screen { height: 100%; padding: 20px 13px 13px; overflow: hidden; border-radius: 23px; background: #fff8ef; }
.phone-nav { display: flex; align-items: center; justify-content: space-between; font-size: .55rem; }
.phone-nav i { width: 16px; height: 2px; background: var(--ink); box-shadow: 0 5px 0 var(--ink); }
.phone-screen > small { display: block; margin-top: 19px; color: #5c43dc; font-size: .41rem; font-weight: 1000; letter-spacing: .1em; }
.phone-screen > strong { display: block; margin-top: 7px; font-size: clamp(.95rem, 1.7vw, 1.45rem); line-height: .92; letter-spacing: -.06em; }
.phone-image {
  display: block;
  height: 42%;
  margin: 13px 0 11px;
  border: 2px solid var(--ink);
  border-radius: 14px 45px 14px 14px;
  background:
    radial-gradient(circle at 58% 34%, #f0ad88 0 11%, transparent 11.5%),
    radial-gradient(circle at 58% 27%, #211b2a 0 16%, transparent 16.5%),
    linear-gradient(140deg, #82e6df 0 53%, #4058ff 53% 100%);
}
.phone-screen > b { display: block; padding: 8px; border-radius: 999px; background: var(--ink); color: #fff; text-align: center; font-size: .48rem; }

.campaign-card {
  position: absolute;
  left: 7%;
  bottom: 2%;
  width: 49%;
  min-height: 205px;
  padding: 18px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 25px 50px rgba(19,21,38,.3);
  transform: rotate(2.6deg);
  z-index: 7;
}
.campaign-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -72px;
  top: -70px;
  border: 22px solid rgba(130,230,223,.38);
  border-radius: 50%;
}
.campaign-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.campaign-head span { color: var(--aqua); font-size: .52rem; font-weight: 1000; letter-spacing: .13em; }
.campaign-head b { padding: 5px 7px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .42rem; }
.campaign-card > strong { display: block; margin: 12px 0 13px; font-size: clamp(1rem, 1.8vw, 1.55rem); line-height: .95; letter-spacing: -.05em; }
.campaign-stats { display: flex; gap: 9px; }
.campaign-stats span { min-width: 0; flex: 1; padding: 8px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; }
.campaign-stats b { display: block; color: var(--butter); font-size: .95rem; }
.campaign-stats em { display: block; color: rgba(255,255,255,.62); font-size: .42rem; font-style: normal; }
.campaign-chart { height: 38px; margin-top: 10px; display: flex; align-items: end; gap: 5px; }
.campaign-chart i { flex: 1; min-width: 4px; height: 25%; border-radius: 5px 5px 0 0; background: var(--violet); }
.campaign-chart i:nth-child(2) { height: 43%; }
.campaign-chart i:nth-child(3) { height: 34%; }
.campaign-chart i:nth-child(4) { height: 68%; background: var(--aqua); }
.campaign-chart i:nth-child(5) { height: 77%; background: var(--aqua); }
.campaign-chart i:nth-child(6) { height: 100%; background: var(--lime); }

.design-tool-card {
  position: absolute;
  right: 2%;
  bottom: 7%;
  width: 37%;
  padding: 11px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-4deg);
  z-index: 8;
}
.design-tool-card span { padding: 7px 5px; border-radius: 8px; background: #f0ebff; text-align: center; font-size: .46rem; font-weight: 1000; letter-spacing: .06em; }
.design-tool-card span:nth-child(2) { background: #dffffb; }
.design-tool-card span:nth-child(3) { background: #fff1c0; }
.design-tool-card span:nth-child(4) { background: #ffdce9; }
.design-status {
  position: absolute;
  right: 7%;
  top: 5%;
  padding: 9px 11px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .58rem;
  font-weight: 900;
  transform: rotate(3deg);
  z-index: 9;
}
.design-status i { display: inline-block; width: 8px; height: 8px; margin-right: 5px; border-radius: 50%; background: #2bd466; box-shadow: 0 0 0 3px rgba(43,212,102,.18); }
.design-arrow { position: absolute; width: 145px; right: 23%; bottom: 25%; fill: none; stroke: var(--coral); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; z-index: 10; transform: rotate(-2deg); }
.hero-design-lab .hero-price { left: -1%; bottom: 5%; z-index: 11; }

/* Slower, guaranteed back-and-forth benefit ticker */
.brand-strip { transform: rotate(-.55deg) scale(1.012); }
.strip-track {
  width: max-content;
  min-width: max-content;
  padding: 18px 34px;
  gap: 29px;
  animation: none !important;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.strip-track span { white-space: nowrap; }
.strip-track b { color: var(--lime); }

@media (max-width: 1020px) {
  .hero-design-lab { min-height: 680px; max-width: 780px; width: 100%; margin: 0 auto; }
}

@media (max-width: 760px) {
  .hero-design-lab { min-height: 600px; }
  .design-stage { inset: 4px 0 10px 3px; border-radius: 30px; }
  .design-browser { left: 3%; top: 8%; width: 86%; height: 54%; border-width: 4px; border-radius: 18px; }
  .browser-top { height: 34px; padding: 0 8px; }
  .browser-address { padding: 4px 7px; font-size: .46rem; }
  .browser-live { font-size: .39rem; }
  .browser-site { height: calc(100% - 34px); }
  .site-nav-mini { height: 36px; padding: 0 10px; gap: 7px; }
  .site-nav-mini span { display: none; }
  .site-nav-mini strong { font-size: .62rem; }
  .site-nav-mini b { font-size: .4rem; padding: 5px 7px; }
  .site-hero-mini { min-height: 180px; padding: 15px 11px 10px; gap: 8px; }
  .mini-copy > strong { font-size: 1.48rem; }
  .mini-copy p { font-size: .47rem; }
  .mini-copy > b { margin-top: 9px; padding: 6px 8px; font-size: .4rem; }
  .mini-visual { min-height: 135px; }
  .mini-review { font-size: .4rem; }
  .mini-review em { font-size: .34rem; }
  .site-cards-mini { padding: 0 11px 10px; gap: 5px; }
  .site-cards-mini i { height: 20px; }
  .design-phone { right: 1%; top: 20%; width: 29%; height: 46%; padding: 6px; border-width: 3px; border-radius: 25px; }
  .phone-screen { padding: 16px 8px 8px; border-radius: 18px; }
  .phone-screen > small { margin-top: 13px; }
  .phone-screen > strong { font-size: .92rem; }
  .phone-image { height: 39%; margin: 9px 0 7px; }
  .campaign-card { left: 6%; bottom: 4%; width: 58%; min-height: 180px; padding: 13px; border-width: 4px; }
  .campaign-card > strong { font-size: 1rem; }
  .campaign-stats b { font-size: .78rem; }
  .campaign-stats em { font-size: .34rem; }
  .campaign-chart { height: 28px; }
  .design-tool-card { right: 2%; bottom: 8%; width: 35%; padding: 8px; gap: 4px; }
  .design-tool-card span { font-size: .35rem; padding: 5px 2px; }
  .design-status { right: 6%; top: 2%; font-size: .44rem; padding: 7px 8px; }
  .design-arrow { width: 100px; right: 24%; bottom: 28%; stroke-width: 6; }
  .hero-design-lab .hero-price { width: 92px; height: 92px; left: -1%; bottom: 2%; }
  .hero-design-lab .hero-price strong { font-size: 1.55rem; }
  .hero-design-lab .hero-price span { font-size: .47rem; }
  .strip-track { padding: 15px 22px; gap: 23px; font-size: .74rem; }
}

@media (max-width: 430px) {
  .hero-design-lab { min-height: 535px; }
  .design-browser { width: 88%; height: 52%; }
  .site-hero-mini { grid-template-columns: 1.12fr .88fr; min-height: 154px; }
  .mini-copy > strong { font-size: 1.16rem; }
  .mini-copy p { display: none; }
  .mini-visual { min-height: 112px; }
  .design-phone { width: 31%; height: 43%; }
  .phone-screen > strong { font-size: .72rem; }
  .phone-image { height: 36%; }
  .campaign-card { width: 62%; min-height: 160px; }
  .campaign-card > strong { margin: 9px 0; font-size: .88rem; }
  .campaign-stats { gap: 5px; }
  .campaign-stats span { padding: 6px; }
  .campaign-chart { height: 22px; }
  .design-tool-card { width: 36%; bottom: 7%; }
  .design-arrow { display: none; }
  .design-status { max-width: 170px; }
  .stage-cross { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-design-lab .hero-price { animation: none !important; }
}

/* =========================================================
   GOODFORM V4 — richer benefit visuals + expanded package
   ========================================================= */

/* The package now has four balanced rows of two items. */
.package-list {
  min-height: 790px;
  grid-template-rows: auto repeat(4, 1fr);
}
.price-card { min-height: 790px; }
.package-list article:nth-last-child(-n+2) { border-bottom: 0; }

/* Replace the three simple placeholder-style illustrations with
   compact scenes that relate directly to web design and enquiries. */
.benefit-art {
  min-height: 174px;
  border-width: 3px;
  box-shadow: 7px 7px 0 rgba(19,21,38,.18);
}

/* 01 — clear services shown inside a tiny website browser */
.clarity-art {
  padding: 0;
  background: #fffaf4;
  color: var(--ink);
}
.clarity-browser-bar {
  height: 35px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--ink);
  background: #efeae3;
}
.clarity-browser-bar > span { display: flex; gap: 4px; }
.clarity-browser-bar i { width: 7px; height: 7px; display: block; border-radius: 50%; background: var(--coral); }
.clarity-browser-bar i:nth-child(2) { background: var(--butter); }
.clarity-browser-bar i:nth-child(3) { background: var(--aqua); }
.clarity-browser-bar b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .49rem;
  letter-spacing: .03em;
  opacity: .58;
}
.clarity-layout {
  min-height: 137px;
  padding: 15px 14px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 12px;
  background:
    radial-gradient(circle at 92% 10%, rgba(201,255,69,.82) 0 17%, transparent 17.5%),
    #fffaf4;
}
.clarity-heading small { display: block; color: #4058ff; font-size: .45rem; font-weight: 1000; letter-spacing: .13em; }
.clarity-heading strong { display: block; margin: 7px 0 10px; font-size: 1rem; line-height: .92; letter-spacing: -.055em; }
.clarity-heading em { display: block; width: 90%; height: 5px; margin-top: 6px; border-radius: 9px; background: rgba(19,21,38,.16); }
.clarity-heading em:last-child { width: 58%; }
.clarity-services { display: grid; align-content: center; gap: 6px; }
.clarity-services span {
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: #fff;
  font-size: .49rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}
.clarity-services span:nth-child(2) { background: #dffffb; transform: translateX(-6px); }
.clarity-services span:nth-child(3) { background: #ffe8f1; }
.clarity-services b { color: var(--coral); }
.clarity-sticker {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  font-size: .46rem;
  font-weight: 1000;
  line-height: 1.05;
  transform: rotate(8deg);
}

/* 02 — review and verification card */
.proof-art {
  padding: 15px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px),
    var(--ink);
  background-size: 20px 20px;
}
.proof-card {
  position: relative;
  width: 83%;
  min-height: 142px;
  padding: 13px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: #fffaf4;
  box-shadow: 6px 6px 0 var(--coral);
  transform: rotate(-2deg);
  z-index: 2;
}
.proof-card-top { display: flex; align-items: center; gap: 8px; }
.proof-avatar {
  width: 31px; height: 31px; flex: 0 0 31px;
  border: 2px solid var(--ink); border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, #f0b38d 0 22%, transparent 23%), linear-gradient(145deg, var(--aqua), var(--violet));
}
.proof-card-top p { min-width: 0; margin: 0 auto 0 0; line-height: 1.05; }
.proof-card-top p b, .proof-card-top p small { display: block; }
.proof-card-top p b { font-size: .55rem; }
.proof-card-top p small { margin-top: 3px; font-size: .42rem; opacity: .58; }
.proof-card-top > strong { font-size: 1.2rem; letter-spacing: -.08em; }
.proof-stars { margin: 10px 0 6px; color: #f1b400; letter-spacing: .08em; font-size: .8rem; }
.proof-card blockquote { margin: 0; max-width: 190px; font-size: .66rem; font-weight: 850; line-height: 1.25; }
.proof-badge {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 91px;
  height: 91px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
  transform: rotate(8deg);
  z-index: 3;
}
.proof-badge span { font-size: 1.25rem; line-height: .8; }
.proof-badge b { margin-top: 4px; font-size: .45rem; line-height: 1.05; }
.proof-spark { position: absolute; color: var(--butter); font-size: 1.3rem; z-index: 1; }
.proof-spark-one { right: 18px; top: 8px; }
.proof-spark-two { right: 111px; bottom: 3px; font-size: .85rem; }

/* 03 — a website enquiry arriving on a phone */
.enquiry-art {
  padding: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 17%, var(--butter) 0 13%, transparent 13.5%),
    linear-gradient(135deg, #fffaf4 0 62%, #dffffb 62% 100%);
}
.enquiry-phone {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 64%;
  min-height: 134px;
  padding: 12px 11px 11px 42px;
  border: 3px solid var(--ink);
  border-radius: 17px;
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 rgba(19,21,38,.18);
  transform: rotate(-2deg);
}
.enquiry-phone > span {
  position: absolute;
  left: 10px;
  top: 13px;
  width: 23px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: linear-gradient(var(--aqua) 0 52%, var(--violet) 52%);
}
.enquiry-phone small { display: block; color: var(--aqua); font-size: .43rem; font-weight: 1000; letter-spacing: .13em; }
.enquiry-phone strong { display: block; margin: 13px 0 7px; font-size: .86rem; line-height: 1.02; }
.enquiry-phone p { margin: 0; color: rgba(255,255,255,.57); font-size: .47rem; }
.enquiry-route {
  position: absolute;
  left: 58%;
  top: 48px;
  width: 22%;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: rotate(-8deg);
}
.enquiry-route i { width: 9px; height: 9px; display: block; border-radius: 50%; background: var(--coral); }
.enquiry-route i:nth-child(2) { width: 18px; border-radius: 999px; }
.enquiry-route i:nth-child(3) { clip-path: polygon(0 0,100% 50%,0 100%); border-radius: 0; }
.enquiry-actions {
  position: absolute;
  right: 10px;
  bottom: 14px;
  display: grid;
  gap: 7px;
  z-index: 2;
}
.enquiry-actions span {
  min-width: 76px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  font-size: .48rem;
  font-weight: 1000;
}
.enquiry-actions span:last-child { background: var(--lime); }
.enquiry-live {
  position: absolute;
  right: 8px;
  top: 10px;
  padding: 6px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: .42rem;
  font-weight: 1000;
  transform: rotate(4deg);
}
.enquiry-live i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: #28cf68; box-shadow: 0 0 0 3px rgba(40,207,104,.18); }

@media (max-width: 1020px) {
  .package-list, .price-card { min-height: 0; }
}

@media (max-width: 760px) {
  .benefit-art { min-height: 170px; }
  .package-list { grid-template-rows: auto; }
  .package-list article:nth-last-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .package-list article:last-child { border-bottom: 0; }
}

@media (max-width: 430px) {
  .clarity-layout { grid-template-columns: .95fr 1.05fr; gap: 7px; padding: 13px 10px; }
  .clarity-heading strong { font-size: .85rem; }
  .clarity-services span { padding: 6px; font-size: .43rem; }
  .clarity-sticker { width: 58px; height: 58px; }
  .proof-card { width: 86%; }
  .proof-badge { width: 78px; height: 78px; }
  .enquiry-phone { width: 68%; }
  .enquiry-actions span { min-width: 67px; }
}
