:root {
    --orange: #ff5a2a;
    --blue: #23a8f2;
    --orange-hover: #eb4f24;
    --blue-hover: #1687c8;
    --background: #f4eee6;
    --surface: #fffaf2;
    --surface-warm: #ffeddc;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #d8cabd;
    --white: #ffffff;
    --shadow-soft: 0 14px 34px rgba(31, 41, 55, .09);
    --shadow-lift: 0 18px 42px rgba(31, 41, 55, .13);
}

body[data-theme="clear"] {
    --background: #eaf4fb;
    --surface: #f8fcff;
    --surface-warm: #fff0e5;
    --text: #163246;
    --muted: #5d7587;
    --border: #bfd7e7;
    --shadow-soft: 0 14px 34px rgba(20, 76, 112, .1);
    --shadow-lift: 0 18px 42px rgba(20, 76, 112, .14);
}

body[data-theme="rainy"] {
    --background: #e7eeec;
    --surface: #f7fbfa;
    --surface-warm: #fff0df;
    --text: #1d302d;
    --muted: #5b6f6b;
    --border: #c2d0cc;
    --shadow-soft: 0 14px 34px rgba(31, 47, 44, .1);
    --shadow-lift: 0 18px 42px rgba(31, 47, 44, .14);
}

body[data-theme="sunset"] {
    --background: #f7eadf;
    --surface: #fff8f1;
    --surface-warm: #ffe7d2;
    --text: #35251e;
    --muted: #7a6257;
    --border: #dcc0ae;
    --shadow-soft: 0 14px 34px rgba(73, 45, 31, .1);
    --shadow-lift: 0 18px 42px rgba(73, 45, 31, .15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease;
}

a:hover {
    color: var(--blue-hover);
}

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

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.narrow {
    max-width: 720px;
}

.site-header,
.site-footer {
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--border);
}

.site-header {
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(31, 41, 55, .07);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-footer {
    border-top: 1px solid var(--border);
    border-bottom: 0;
}

.site-header__inner,
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-nav a {
    color: var(--muted);
}

.site-nav a:hover {
    color: var(--text);
}

.theme-switcher {
    align-items: center;
    color: var(--muted);
    display: inline-flex;
    font-size: .82rem;
    font-weight: 800;
    gap: 8px;
}

.theme-switcher select {
    appearance: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    min-width: 132px;
    padding: 8px 28px 8px 10px;
}

.theme-switcher {
    position: relative;
}

.theme-switcher::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--muted);
    content: "";
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}

.logo__image {
    display: block;
    height: 44px;
    width: auto;
}

.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
    padding: 72px 0;
}

.hero__inner {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    line-height: 1.05;
}

h2 {
    font-size: 2rem;
    line-height: 1.15;
}

.hero__copy {
    color: var(--muted);
    font-size: 1.25rem;
    max-width: 650px;
}

.hero__actions {
    margin-top: 28px;
}

.hero__trust-list {
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.hero__trust-list li {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.hero__trust-list li::before {
    background: var(--blue);
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(31, 41, 55, .08);
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.hero-card::before {
    background: linear-gradient(90deg, var(--orange), var(--blue));
    content: "";
    height: 5px;
    inset: 0 0 auto;
    position: absolute;
}

.hero-card__header {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-card__dot {
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(255, 90, 42, .12);
    height: 12px;
    width: 12px;
}

.hero-flow {
    counter-reset: hero-flow;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-flow li {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(31, 41, 55, .04);
    display: grid;
    gap: 10px;
    grid-template-columns: 24px 38px 1fr;
    padding: 12px;
}

.workflow-icon,
.visual-icon {
    align-items: center;
    background: rgba(35, 168, 242, .12);
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    position: relative;
    width: 38px;
}

.workflow-icon::before,
.workflow-icon::after,
.visual-icon::before,
.visual-icon::after {
    content: "";
    position: absolute;
}

.workflow-icon::before {
    background: var(--blue);
    border-radius: 5px;
    height: 16px;
    width: 19px;
}

.workflow-icon::after {
    background: var(--orange);
    border-radius: 999px;
    height: 8px;
    right: 8px;
    top: 8px;
    width: 8px;
}

.workflow-icon--1 {
    background: rgba(255, 90, 42, .12);
}

.workflow-icon--1::before {
    background: var(--orange);
    border-radius: 999px;
    height: 18px;
    width: 18px;
}

.workflow-icon--1::after {
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 6px 0 var(--white);
    height: 2px;
    left: 14px;
    top: 14px;
    width: 10px;
}

.workflow-icon--2::before {
    background: transparent;
    border: 3px solid var(--blue);
    border-radius: 3px;
    height: 18px;
    width: 15px;
}

.workflow-icon--2::after {
    background: var(--orange);
    border-radius: 999px;
    bottom: 8px;
    height: 7px;
    right: 9px;
    top: auto;
    width: 7px;
}

.workflow-icon--3 {
    background: rgba(255, 90, 42, .12);
}

.workflow-icon--3::before {
    background: transparent;
    border: 3px solid var(--orange);
    border-radius: 999px;
    height: 18px;
    width: 18px;
}

.workflow-icon--3::after {
    background: var(--orange);
    border-radius: 2px;
    height: 9px;
    left: 18px;
    top: 10px;
    transform: rotate(35deg);
    transform-origin: bottom;
    width: 3px;
}

.hero-flow li::before {
    align-items: center;
    background: rgba(35, 168, 242, .12);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--blue);
    content: counter(hero-flow);
    counter-increment: hero-flow;
    display: inline-flex;
    font-weight: 900;
    font-size: .7rem;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.hero-card__result {
    background: var(--surface-warm);
    border: 1px solid rgba(255, 90, 42, .22);
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
    margin: 16px 0 0;
    padding: 14px;
}

.eyebrow {
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section,
.cta {
    padding: 64px 0;
}

.section--soft {
    background: var(--surface);
}

.section-heading {
    margin-bottom: 24px;
    position: relative;
}

.section-heading::after {
    background: var(--orange);
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    margin-top: 14px;
    width: 54px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.use-case-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
}

.pack-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 32px;
}

.pricing-grid {
    align-items: stretch;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 32px;
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.card:hover {
    border-color: rgba(35, 168, 242, .32);
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.card--visual {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card--visual a {
    align-self: flex-start;
    margin-top: auto;
}

.card__top {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 44px 1fr;
    margin-bottom: 12px;
}

.card__top h3 {
    margin-bottom: 0;
}

.card h3 {
    line-height: 1.2;
}

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

.card p strong {
    color: var(--text);
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-card .card__top {
    margin-bottom: 0;
}

.solution-card h3,
.solution-card p {
    margin-bottom: 0;
}

.solution-flow {
    display: grid;
    gap: 8px;
    position: relative;
}

.solution-flow::before {
    background: var(--orange);
    border-radius: 999px;
    color: var(--white);
    content: "->";
    font-size: .76rem;
    font-weight: 900;
    left: 16px;
    line-height: 1;
    padding: 5px 7px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.solution-flow span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
    padding: 10px 12px 10px 48px;
}

.solution-flow span:first-child {
    color: var(--muted);
}

.use-case-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case-card .card__top {
    margin-bottom: 0;
}

.use-case-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0;
}

.use-case-card > p {
    margin-bottom: 0;
}

.use-case-kicker {
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 4px;
}

.mini-flow {
    display: grid;
    gap: 8px;
}

.mini-flow span {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    display: grid;
    gap: 10px;
    grid-template-columns: 10px 1fr;
    padding: 10px 12px;
}

.mini-flow span::before {
    background: var(--blue);
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tag-list li {
    background: rgba(255, 90, 42, .09);
    border: 1px solid rgba(255, 90, 42, .18);
    border-radius: 999px;
    color: var(--text);
    font-size: .86rem;
    font-weight: 700;
    padding: 6px 10px;
}

.use-case-card a {
    align-self: flex-start;
    margin-top: auto;
}

.pack-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pack-card .card__top,
.pack-card > p {
    margin-bottom: 0;
}

.pack-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0;
}

.pack-facts {
    display: grid;
    gap: 10px;
}

.pack-facts p {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 12px;
}

.pack-facts strong {
    color: var(--orange);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pack-facts span {
    color: var(--text);
}

.pack-label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pack-flow {
    counter-reset: pack-flow;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pack-flow li {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    display: grid;
    gap: 10px;
    grid-template-columns: 28px 1fr;
    padding: 10px 12px;
}

.pack-flow li::before {
    align-items: center;
    background: rgba(35, 168, 242, .12);
    border-radius: 8px;
    color: var(--blue);
    content: counter(pack-flow);
    counter-increment: pack-flow;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.pack-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.pricing-card h2,
.pricing-card p {
    margin-bottom: 0;
}

.pricing-card .button {
    margin-top: auto;
}

.pricing-card--featured {
    border-color: rgba(255, 90, 42, .34);
    box-shadow: 0 20px 48px rgba(255, 90, 42, .13);
}

.pricing-card--featured::before {
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 8px 8px 0 0;
    content: "";
    height: 4px;
    inset: 0 0 auto;
    position: absolute;
}

.pricing-badge {
    align-self: flex-start;
    background: rgba(255, 90, 42, .1);
    border: 1px solid rgba(255, 90, 42, .2);
    border-radius: 999px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    padding: 6px 10px;
}

.price-stack {
    display: grid;
    gap: 2px;
}

.pricing-list {
    margin: 4px 0 0;
}

.pricing-list li {
    background: var(--surface);
    padding: 10px 12px;
}

.section--soft .card {
    background: var(--white);
}

.audience-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-pill {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(31, 41, 55, .05);
    display: grid;
    gap: 12px;
    font-weight: 800;
    justify-content: center;
    min-height: 92px;
    padding: 18px;
    place-items: center;
    text-align: center;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.audience-pill:hover {
    border-color: rgba(255, 90, 42, .28);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.visual-icon {
    background: #eef8ff;
    box-shadow: inset 0 0 0 1px rgba(35, 168, 242, .08);
    height: 44px;
    width: 44px;
}

.visual-icon::before {
    background: var(--blue);
    border-radius: 5px;
    height: 18px;
    width: 22px;
}

.visual-icon::after {
    background: var(--orange);
    border-radius: 999px;
    height: 9px;
    right: 9px;
    top: 9px;
    width: 9px;
}

.visual-icon--real-estate-agents::before,
.visual-icon--real-estate-starter-pack::before {
    background: var(--orange);
    border-radius: 3px;
    height: 17px;
    top: 20px;
    width: 22px;
}

.visual-icon--real-estate-agents::after,
.visual-icon--real-estate-starter-pack::after {
    background: transparent;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 14px solid var(--blue);
    border-radius: 0;
    height: 0;
    left: 9px;
    right: auto;
    top: 8px;
    width: 0;
}

.visual-icon--consultants::before,
.visual-icon--client-follow-up-pack::before,
.visual-icon--follow-up-message-generator::before {
    background: var(--blue);
    border-radius: 9px;
    height: 21px;
    width: 26px;
}

.visual-icon--consultants::after,
.visual-icon--client-follow-up-pack::after,
.visual-icon--follow-up-message-generator::after {
    background: var(--orange);
    border-radius: 2px;
    bottom: 9px;
    height: 10px;
    right: 13px;
    top: auto;
    transform: rotate(35deg);
    width: 8px;
}

.visual-icon--creators::before,
.visual-icon--content-repurpose-pack::before,
.visual-icon--social-caption-generator::before {
    background: var(--orange);
    border-radius: 8px;
    height: 24px;
    width: 24px;
}

.visual-icon--creators::after,
.visual-icon--content-repurpose-pack::after,
.visual-icon--social-caption-generator::after {
    background: var(--white);
    border-left: 9px solid var(--white);
    border-bottom: 6px solid transparent;
    border-radius: 0;
    border-top: 6px solid transparent;
    height: 0;
    left: 19px;
    right: auto;
    top: 16px;
    width: 0;
}

.visual-icon--local-shops::before {
    background: repeating-linear-gradient(90deg, var(--orange) 0 6px, var(--blue) 6px 12px);
    border-radius: 6px 6px 2px 2px;
    height: 12px;
    top: 11px;
    width: 28px;
}

.visual-icon--local-shops::after,
.visual-icon--restaurants-cafes::after {
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 2px;
    height: 14px;
    left: 14px;
    right: auto;
    top: 22px;
    width: 16px;
}

.visual-icon--restaurants-cafes::before {
    background: transparent;
    border: 3px solid var(--orange);
    border-radius: 0 0 10px 10px;
    border-top: 0;
    height: 18px;
    width: 24px;
}

.visual-icon--restaurants-cafes::after {
    border-color: var(--blue);
    border-radius: 999px;
    height: 10px;
    left: auto;
    right: 8px;
    top: 15px;
    width: 8px;
}

.visual-icon--local-service-businesses::before {
    background: var(--blue);
    border-radius: 6px;
    height: 21px;
    width: 25px;
}

.visual-icon--local-service-businesses::after {
    background: var(--orange);
    border-radius: 3px;
    box-shadow: 8px 0 0 var(--orange), 16px 0 0 var(--orange);
    height: 5px;
    left: 10px;
    right: auto;
    top: 19px;
    width: 5px;
}

.visual-icon--tattoo-studios::before {
    background: transparent;
    border: 3px solid var(--blue);
    border-radius: 999px;
    height: 22px;
    width: 22px;
}

.visual-icon--tattoo-studios::after {
    background: var(--orange);
    border-radius: 2px 2px 8px 8px;
    height: 21px;
    left: 20px;
    right: auto;
    top: 9px;
    transform: rotate(35deg);
    width: 7px;
}

.visual-icon--agencies::before {
    background: var(--blue);
    border-radius: 4px;
    box-shadow: 14px 0 0 var(--orange), 0 14px 0 var(--orange), 14px 14px 0 var(--blue);
    height: 10px;
    left: 10px;
    top: 10px;
    width: 10px;
}

.visual-icon--agencies::after {
    content: none;
}

.visual-icon--lead-capture-pack::before,
.visual-icon--ai-email-reply-generator::before {
    background: transparent;
    border: 3px solid var(--blue);
    border-radius: 3px;
    height: 17px;
    width: 25px;
}

.visual-icon--lead-capture-pack::after,
.visual-icon--ai-email-reply-generator::after {
    background: transparent;
    border-bottom: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
    border-radius: 0;
    height: 8px;
    left: 17px;
    right: auto;
    top: 14px;
    transform: rotate(45deg);
    width: 8px;
}

.visual-icon--simple-crm-sheet-pack::before,
.visual-icon--website-quick-audit::before {
    background: linear-gradient(var(--blue) 0 0) 0 0 / 100% 7px no-repeat, linear-gradient(90deg, transparent 48%, rgba(35, 168, 242, .35) 48% 54%, transparent 54%), linear-gradient(transparent 48%, rgba(35, 168, 242, .35) 48% 54%, transparent 54%);
    border: 3px solid var(--blue);
    border-radius: 4px;
    height: 24px;
    width: 27px;
}

.visual-icon--simple-crm-sheet-pack::after,
.visual-icon--website-quick-audit::after {
    background: var(--orange);
    border-radius: 999px;
    bottom: 8px;
    height: 8px;
    right: 8px;
    top: auto;
    width: 8px;
}

.visual-icon--proposal-starter::before {
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 4px;
    height: 26px;
    width: 20px;
}

.visual-icon--proposal-starter::after {
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 7px 0 var(--orange);
    height: 3px;
    left: 16px;
    right: auto;
    top: 16px;
    width: 13px;
}

.compare-grid,
.setup-band {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}

.compare-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.compare-card--after {
    background: #f0f9ff;
    border-color: rgba(35, 168, 242, .28);
}

.plain-list,
.setup-steps {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.plain-list li,
.setup-steps li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
}

.compare-card--after .plain-list li {
    background: var(--white);
}

.setup-band {
    align-items: center;
}

.setup-band p {
    color: var(--muted);
}

.setup-band .button {
    margin-top: 10px;
}

.setup-steps {
    counter-reset: setup-step;
}

.setup-steps li {
    align-items: center;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(31, 41, 55, .05);
    display: grid;
    gap: 12px;
    grid-template-columns: 34px 1fr;
}

.setup-steps li::before {
    align-items: center;
    background: rgba(255, 90, 42, .12);
    border-radius: 8px;
    color: var(--orange);
    content: counter(setup-step);
    counter-increment: setup-step;
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

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

.button--primary {
    background: var(--orange);
    color: var(--white);
}

.button--primary:hover {
    background: var(--orange-hover);
    box-shadow: 0 10px 24px rgba(255, 90, 42, .22);
    color: var(--white);
}

.button--secondary {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}

.button--secondary:hover {
    border-color: rgba(35, 168, 242, .36);
    color: var(--text);
}

.check-list {
    margin: 0;
    padding-left: 20px;
}

.price {
    color: var(--orange);
    font-size: 1.75rem;
    font-weight: 900;
}

.old-price {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 90, 42, .72);
    text-decoration-thickness: 2px;
}

.annual-price {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 800;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
}

.contact-notes {
    margin-top: 24px;
}

.contact-notes li {
    background: var(--white);
}

.contact-form,
.tool-card label {
    display: grid;
    gap: 10px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

input,
textarea {
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    padding: 12px;
    width: 100%;
}

textarea {
    min-height: 120px;
}

.sample-output {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 14px;
    padding: 14px;
}

.form-status {
    color: var(--muted);
    margin: 0;
}

.cta {
    background: var(--text);
    color: var(--white);
    position: relative;
}

.cta::before {
    background: linear-gradient(90deg, var(--orange), var(--blue));
    content: "";
    height: 4px;
    inset: 0 0 auto;
    position: absolute;
}

.cta__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.cta p {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .site-header__inner,
    .site-footer__inner,
    .hero__inner,
    .audience-grid,
    .compare-grid,
    .setup-band,
    .use-case-grid,
    .pricing-grid,
    .solution-grid,
    .contact-layout,
    .split {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .site-header__inner,
    .site-footer__inner {
        flex-direction: column;
    }

    .theme-switcher {
        width: 100%;
    }

    .theme-switcher select {
        width: 100%;
    }

    .hero {
        padding: 48px 0;
    }

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

    .logo__image {
        height: 38px;
    }
}
