/*
Theme Name: ASIN Experts Theme
Author: ASIN Experts
Description: Client-facing site for independent Amazon PPC, listing, and brand defense.
Version: 1.16.4
Text Domain: ASIN-Experts
*/

:root {
    --amz-orange: #ff9a1f;
    --amz-orange-deep: #e07d00;
    --amz-navy: #0f1c2e;
    --navy-2: #1a2b42;
    --ink: #1a1f2c;
    --muted: #5c6573;
    --line: #e7e4dc;
    --paper: #f4f1ea;
    --white: #ffffff;
    --star-gold: #f5c518;
    --bg-light: var(--paper);
    --radius: 18px;
    --shadow: 0 22px 50px rgba(15, 28, 46, 0.08);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --pad: clamp(20px, 5vw, 96px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--paper);
    max-width: 100%;
    overflow-x: clip;
    overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }

a { color: var(--amz-orange-deep); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--amz-navy); color: white; padding: 8px 16px; z-index: 2000; }
.skip-link:focus { left: 16px; top: 16px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.honeypot { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; pointer-events: none; }

/* HEADER */
.custom-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    padding: 0 clamp(16px, 3vw, 48px);
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 12px;
    border-bottom: 1px solid transparent;
    overflow: visible;
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.custom-nav.is-scrolled {
    box-shadow: 0 10px 30px rgba(15, 28, 46, 0.08);
    border-bottom-color: var(--line);
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--amz-navy);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo span { color: var(--amz-orange); }
.logo-on-dark { color: white; display: inline-block; margin-bottom: 16px; }
.nav-links {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    min-width: 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--amz-navy);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--amz-orange-deep); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; align-self: center; }
.menu-toggle-bar { display: block; width: 22px; height: 2px; background: var(--amz-navy); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0 10px;
    white-space: nowrap;
}
.nav-item.has-sub > a { cursor: pointer; }
.nav-caret {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    opacity: 0.5;
    transition: transform 0.2s var(--ease), margin 0.2s var(--ease);
}
.nav-item.is-open > a .nav-caret,
.nav-item:hover > a .nav-caret,
.nav-item:focus-within > a .nav-caret {
    transform: rotate(225deg);
    margin-top: 2px;
}

.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(15, 28, 46, 0.12);
    padding: 10px;
    z-index: 1100;
    border: 1px solid var(--line);
    border-top: 0;
}
.nav-sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px;
}
.nav-item.has-mega {
    position: static;
}
.nav-item.has-mega > .nav-mega {
    inset-inline-start: var(--pad);
    inset-inline-end: auto;
    left: auto;
    right: auto;
    width: min(980px, calc(100% - (2 * var(--pad))));
    max-width: calc(100vw - 32px);
}
.nav-item.has-sub-end .nav-sub {
    inset-inline-start: auto;
    inset-inline-end: 0;
    left: auto;
    right: auto;
    border-radius: 0 0 16px 16px;
}
.nav-item:hover > .nav-sub,
.nav-item:focus-within > .nav-sub,
.nav-item.is-open > .nav-sub { display: grid; }
.nav-sub a {
    display: block;
    margin: 0;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: normal;
    line-height: 1.25;
}
.nav-sub a:hover { background: #fff7ed; color: var(--amz-orange-deep); }

.nav-mega {
    width: min(980px, calc(100% - (2 * var(--pad))));
    max-width: calc(100vw - 32px);
    padding: 16px 16px 10px;
    grid-template-columns: 1.25fr 1.1fr 1fr 1.05fr;
    gap: 2px 16px;
    border-radius: 0 0 18px 18px;
}
.nav-mega-col { min-width: 0; }
.nav-mega-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 6px;
    padding: 0 12px;
}
.nav-mega-foot {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}
.nav-mega-foot a { font-weight: 800; color: var(--amz-navy); }
.nav-mega-stack {
    grid-template-columns: 0.9fr 1.15fr 0.75fr 1.1fr;
}

.nav-cta {
    background: var(--amz-orange);
    color: white !important;
    padding: 10px 16px;
    border-radius: 999px;
    margin-block: 16px !important;
    margin-inline: 10px 0 !important;
    align-self: center;
    box-shadow: 0 8px 20px rgba(255, 154, 31, 0.28);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--amz-navy) !important; color: white !important; }
.nav-cta-ghost {
    background: transparent;
    color: var(--amz-navy) !important;
    box-shadow: none;
    border: 1px solid var(--line);
    margin-inline-start: 8px !important;
}
.nav-cta-ghost:hover { background: var(--paper) !important; color: var(--amz-navy) !important; }
.nav-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-inline-start: 4px;
}

/* HERO */
.hero {
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(255, 154, 31, 0.18), transparent 55%),
        linear-gradient(165deg, #0c1726 0%, var(--amz-navy) 55%, #16263c 100%);
    color: white;
    padding: 72px var(--pad) 64px;
}
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.hero-copy { text-align: start; }
.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--amz-orange);
    margin-bottom: 14px;
}
.hero h1, .page-hero h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 16px; max-width: 620px; }
.hero-note { font-size: 15px !important; opacity: 0.7 !important; margin-bottom: 28px !important; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-row-center { justify-content: center; }
.cta-sub {
    font-size: 14px;
    margin: 14px 0 0;
    opacity: 0.78;
    max-width: 560px;
    line-height: 1.45;
}
.page-hero .cta-sub,
.section-padding .cta-sub {
    color: var(--muted);
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}

.desk-preview {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
.desk-preview-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amz-orange);
    margin-bottom: 16px !important;
    opacity: 1 !important;
}
.desk-preview ul { list-style: none; }
.desk-preview li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    opacity: 0.92;
}
.desk-preview li span {
    display: inline-block;
    min-width: 88px;
    color: var(--amz-orange);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.desk-preview-foot { margin-top: 16px !important; font-size: 13px !important; opacity: 0.65 !important; margin-bottom: 0 !important; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 48px auto 0;
}
.stats-row div {
    background: #16263c;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
}
.stats-row strong { display: block; font-size: 26px; color: #fff; letter-spacing: -0.03em; }
.stats-row span { display: block; font-size: 12px; color: #c5ced8; margin-top: 4px; }
.stats-block { max-width: 1180px; margin: 48px auto 0; }
.stats-block .stats-row { margin-top: 0; }
.stats-note, .proof-note {
    margin: 14px auto 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
    max-width: 720px;
    text-align: center;
}
.proof-note { color: var(--muted); text-align: left; max-width: none; margin: 12px 0 28px; }
.sample-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amz-navy);
    background: #f4f1ea;
    border-radius: 999px;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.cta-btn {
    background: var(--amz-orange);
    color: white;
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 154, 31, 0.32);
    font-family: inherit;
}
.cta-btn:hover { background: #ffb347; color: var(--amz-navy); transform: translateY(-2px); }
.cta-btn:active { transform: translateY(1px); }
.cta-btn-secondary { background: white; color: var(--amz-navy); box-shadow: none; }
.cta-btn-secondary:hover { background: var(--amz-orange); color: white; }
.cta-btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}
.cta-btn-ghost:hover { background: white; color: var(--amz-navy); }

.section-padding { padding: 84px var(--pad); text-align: center; }
.band-soft { background: #efece4; }
.section-lead { max-width: 680px; margin: -12px auto 40px; color: var(--muted); font-size: 17px; }
.section-lead-left { margin-left: 0; margin-right: 0; text-align: left; }
h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 36px;
    color: var(--amz-navy);
    letter-spacing: -0.03em;
    position: relative;
}
h2::after {
    content: '';
    width: 48px;
    height: 3px;
    background: var(--amz-orange);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.content-wrap h2::after, .service-body h2::after, .contact-aside h2::after, .faq-wrap h2::after { left: 0; transform: none; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in,
.hero .reveal {
    opacity: 1;
    transform: none;
}
.form-section h2, .contact-split h2 { text-align: left; }

/* CARDS */
.problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; text-align: left; max-width: 1040px; margin: 0 auto; }
.problem-card, .service-tile, .update-card, .testimonial-card, .case-card, .blog-card, .article-body {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.problem-card { padding: 28px; transition: transform 0.25s var(--ease), border-color 0.25s; }
.problem-card:hover { transform: translateY(-4px); border-color: #f3d5a3; }
.problem-card h3 { color: var(--amz-navy); margin-bottom: 10px; font-size: 20px; }
.problem-card h3::after { display: none; }
.problem-card p { color: var(--muted); font-size: 15px; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1120px; margin: 0 auto; text-align: left; }
.service-grid-compact { grid-template-columns: repeat(4, 1fr); }
.service-tile {
    display: block;
    padding: 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s var(--ease), border-color 0.25s;
}
.service-tile:hover { transform: translateY(-6px); border-color: var(--amz-orange); }
.service-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--amz-navy);
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}
.service-tile h3 { font-size: 18px; margin-bottom: 8px; color: var(--amz-navy); }
.service-tile p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.read-more { color: var(--amz-orange-deep); font-weight: 700; text-decoration: none; font-size: 14px; }
.read-more:hover { text-decoration: underline; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; text-align: left; }
.steps-grid-four { grid-template-columns: repeat(4, 1fr); }
.step-num { display: block; color: var(--amz-orange-deep); font-weight: 800; letter-spacing: 0.08em; margin-bottom: 10px; }
.steps-grid h3 { color: var(--amz-navy); margin-bottom: 8px; }
.steps-grid p { color: var(--muted); font-size: 15px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1120px; margin: 0 auto; text-align: left; }
.case-card {
    padding: 28px;
    text-decoration: none;
    color: inherit;
    background: var(--case-bg, white);
    transition: transform 0.25s var(--ease);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.case-card:hover { transform: translateY(-6px); }
.case-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--case-accent, var(--amz-orange-deep)); margin-bottom: 10px; }
.case-metric { display: block; font-size: 32px; letter-spacing: -0.04em; color: var(--amz-navy); line-height: 1.1; }
.case-metric-l { display: block; font-size: 13px; color: var(--muted); margin: 4px 0 14px; }
.case-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--amz-navy); }
.case-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.case-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.case-facts, .impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 36px auto 0;
}
.case-facts div, .impact-row div {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 10px;
}
.case-facts strong, .impact-row strong { display: block; font-size: 18px; }
.case-facts span, .impact-row span { display: block; font-size: 12px; opacity: 0.75; }
.impact-row { margin: 0 0 36px; }
.impact-row div { background: var(--paper); text-align: center; }
.impact-row strong { color: var(--amz-navy); font-size: 22px; }
.impact-row span { color: var(--muted); opacity: 1; }

.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
}
.review-container-static { max-height: none; overflow: visible; }
.testimonial-card {
    padding: 22px;
    display: flex;
    gap: 14px;
    text-align: left;
    transition: transform 0.25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: #f3d5a3; }
.avatar { width: 48px; height: 48px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 16px; }
.stars { color: var(--star-gold); letter-spacing: 2px; margin-bottom: 6px; }
.quote-text { font-size: 14px; margin-bottom: 10px; }
.quote-name { font-weight: 800; font-size: 13px; color: var(--amz-navy); display: block; }
.quote-role { display: block; font-size: 12px; color: var(--muted); }

.updates-home { background: #fff7ed; }
.update-feed { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; text-align: left; }
.update-card { padding: 24px; }
.update-card h3 { margin-bottom: 10px; font-size: 20px; }
.update-card h3 a { color: var(--amz-navy); text-decoration: none; }
.update-card h3 a:hover { color: var(--amz-orange-deep); }
.update-card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; font-size: 12px; color: #777; margin-bottom: 10px; }
.severity-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.severity-urgent { background: #fef2f2; color: #b91c1c; }
.severity-act { background: #fff7ed; color: #c2410c; }
.severity-watch { background: #eef2ff; color: #3730a3; }
.topic-chip { display: inline-block; padding: 3px 10px; border-radius: 999px; background: #f3f4f6; color: #374151; font-weight: 600; text-decoration: none; font-size: 12px; }
.topic-chip.is-active { background: var(--amz-navy); color: white; }
.updates-home-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.topic-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.updates-signup { display: flex; flex-direction: row; align-items: stretch; gap: 10px; max-width: 560px; margin: 0 auto 36px; }
.updates-signup input { flex: 1; }
.updates-signup .submit-btn { padding: 16px 22px; width: auto; }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.brief-grid div { background: var(--paper); border-radius: 12px; padding: 18px; }
.brief-grid h2 { font-size: 16px; margin-bottom: 8px; text-align: left; }
.brief-grid h2::after { display: none; }
.update-source { font-size: 13px; color: #666; margin: 24px 0; }
.update-cta { margin-top: 36px; padding: 28px; background: var(--amz-navy); color: white; border-radius: var(--radius); text-align: center; }
.update-cta p { margin-bottom: 16px; }
.contact-email { margin-top: 28px; color: var(--muted); }
.contact-email a { color: var(--amz-orange-deep); font-weight: 700; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 20px; }
.blog-card { overflow: hidden; text-align: left; transition: transform 0.3s var(--ease); }
.blog-card:hover { transform: translateY(-8px); }
.blog-img-placeholder { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-content { padding: 24px; }
.blog-content h3 { font-size: 20px; margin-bottom: 12px; color: var(--amz-navy); }
.blog-content h3 a { color: inherit; text-decoration: none; }
.blog-content p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 18px;
    text-align: left;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--amz-navy);
    padding: 16px 0;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); padding-bottom: 16px; font-size: 15px; }

/* FORMS */
.form-section { background: white; padding: 88px var(--pad); }
.form-section-page { padding-top: 48px; }
.form-section h2::after { left: 0; transform: none; }
.contact-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
    align-items: start;
}
.contact-split .section-lead { max-width: none; }
.lead-form, form { max-width: none; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; text-align: start; font-size: 13px; font-weight: 700; color: var(--amz-navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    width: 100%;
    max-width: 100%;
    color: var(--ink);
}
input[type="radio"],
input[type="checkbox"] {
    width: auto;
    max-width: none;
    padding: 0;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--amz-orange);
    box-shadow: 0 0 0 4px rgba(255, 154, 31, 0.15);
}
.submit-btn {
    background: var(--amz-navy);
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-weight: 800;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: #16263c; }
.submit-btn:active { transform: translateY(1px); }
.form-fineprint { font-size: 13px; color: var(--muted); font-weight: 500; }
.field-hint {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.45;
}
.form-message { padding: 14px 18px; border-radius: 12px; font-weight: 700; margin-bottom: 12px; }
.form-message--success { background: #ecfdf3; color: #166534; }
.form-message--error { background: #fef2f2; color: #991b1b; }
.intent-pills { border: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-width: 0; }
.intent-pill { cursor: pointer; position: relative; min-width: 0; }
.intent-pill input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    opacity: 0;
    pointer-events: none;
}
.intent-pill span {
    display: block;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: var(--amz-navy);
    transition: border-color 0.2s, background 0.2s;
}
.intent-pill input:checked + span {
    border-color: var(--amz-navy);
    background: var(--amz-navy);
    color: white;
}
.contact-aside {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-aside h2 { font-size: 18px; margin: 20px 0 10px; text-align: left; }
.contact-aside h2:first-child { margin-top: 0; }
.next-steps { padding-left: 18px; color: var(--muted); }
.next-steps li { margin-bottom: 8px; }

.content-wrap { max-width: 820px; margin: 0 auto; text-align: left; }
.content-wrap h1 { text-align: center; margin-bottom: 40px; color: var(--amz-navy); }
.article-body { padding: 40px; }
.article-hero { border-radius: 12px; margin-bottom: 24px; }
.article-meta { color: var(--muted); margin-bottom: 24px; }
.article-byline { color: var(--muted); font-size: 14px; margin: -8px 0 24px; }
.article-byline a { color: var(--amz-navy); font-weight: 700; text-decoration: none; }
.answer-callout, .article-content .direct-answer {
    background: #fff7ed;
    border: 1px solid #f3d5a3;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 0 0 24px;
}
.article-content .direct-answer { font-size: 16px; }
.playbook-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 28px;
    font-size: 14px;
}
.playbook-table th, .playbook-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.playbook-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }

.review-offer { max-width: 1120px; margin: 0 auto; }
.review-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 28px 0 8px;
    text-align: left;
}
.review-offer-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    min-width: 0;
}
.review-offer-card h3 { font-size: 18px; margin: 8px 0 10px; }
.review-offer-card p { color: var(--muted); font-size: 15px; }
.bring-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    margin: 36px 0 8px;
    text-align: left;
}
.bring-grid h3 { font-size: 18px; margin-bottom: 4px; }
.choose-wrap { max-width: 1040px; margin: 8px auto 0; }
.choose-scroll {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}
.choose-table { min-width: 640px; margin-bottom: 0; }
.choose-table th[scope="row"] {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
}
.choose-table td:last-child { font-weight: 600; color: var(--amz-navy); }
.article-content p { margin-bottom: 16px; }
.article-content ol, .article-content ul { margin: 0 0 20px 20px; }
.article-content li { margin-bottom: 8px; }

.calc-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto 28px;
    text-align: left;
}
.asin-calc {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.asin-calc h2 { text-align: left; margin-bottom: 8px; }
.asin-calc h2::after { display: none; }
.calc-lead { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.calc-out {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.calc-stat { margin-bottom: 8px; }
.calc-stat strong { display: block; font-size: 36px; color: var(--amz-navy); letter-spacing: -0.03em; }
.calc-stat span { font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-note { color: var(--muted); font-size: 14px; }
.pagination { margin-top: 40px; text-align: center; }

.seasonal-banner {
    background: #fff4e8;
    border-bottom: 1px solid #f3d5b0;
    padding: 10px var(--pad);
    text-align: center;
    font-size: 14px;
    color: var(--ink);
}
.seasonal-banner p { margin: 0; max-width: 100%; overflow-wrap: anywhere; }
.seasonal-banner a { color: var(--amz-orange-deep); font-weight: 700; }
.hub-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1040px;
    margin: 0 auto 36px;
    text-align: left;
}
.hub-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
}
.hub-card strong { color: var(--amz-navy); font-size: 16px; }
.hub-card span { color: var(--muted); font-size: 14px; }
.hub-card:hover { border-color: var(--amz-orange); }
.glossary-list { max-width: 820px; margin: 0 auto 40px; }
.glossary-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.glossary-item dt { font-weight: 800; color: var(--amz-navy); margin-bottom: 6px; font-size: 18px; }
.glossary-item dd { color: var(--muted); font-size: 15px; line-height: 1.55; }
.calendar-list {
    display: grid;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto 28px;
}
.calendar-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow);
    text-align: left;
}
.calendar-card time { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--amz-orange-deep); }
.calendar-card h2 { margin: 8px 0 10px; font-size: 22px; }
.calendar-do { margin-top: 10px; color: var(--ink); }

footer { background: var(--amz-navy); color: white; padding: 0 var(--pad) 88px; text-align: start; }
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta h2 {
    color: white;
    margin-bottom: 10px;
    text-align: start;
    font-size: clamp(22px, 2.4vw, 30px);
}
.footer-cta h2::after { display: none; }
.footer-cta p { color: #b7c0cc; margin: 0; max-width: 520px; }
.footer-cta-copy { min-width: 0; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 36px 32px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 0 8px;
}
.footer-col { min-width: 0; }
.footer-col h4 { color: var(--amz-orange); margin-bottom: 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col p { color: #b7c0cc; font-size: 14px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: white; font-weight: 700; text-decoration: none; }
.footer-contact a:hover { color: var(--amz-orange); }
.footer-contact span { color: #8892a0; font-size: 13px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #b7c0cc; text-decoration: none; font-size: 13.5px; line-height: 1.35; overflow-wrap: anywhere; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12.5px;
    color: #8892a0;
    line-height: 1.45;
}
.copyright > span { min-width: 0; }
.copyright a { color: #d7dde4; text-decoration: none; }
.copyright a:hover { color: white; }
.legal-foot { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.legal-switch { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.legal-switch a { color: #ffd7a8; font-weight: 700; text-decoration: none; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; }
.legal-switch a[aria-current="page"] { background: white; color: var(--amz-navy); }
.legal-body h2 { margin-top: 28px; }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); font-weight: 500; margin: 8px 0 12px; }
.consent-line input { margin-top: 3px; flex: 0 0 auto; }
.pack-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 36px; align-items: start; max-width: 1040px; margin: 0 auto; }
.pack-form { display: grid; gap: 10px; }
.pack-form .submit-btn { width: 100%; }
.pack-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 24px 0; }
.pack-card { display: block; background: white; border-radius: 16px; padding: 20px; text-decoration: none; color: inherit; box-shadow: var(--shadow); }
.pack-card strong { display: block; margin: 6px 0 8px; font-size: 18px; }
.pack-card p { margin: 0; color: var(--muted); font-size: 14px; }
.cookie-bar {
    position: fixed;
    z-index: 1200;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 920px;
    margin: 0 auto;
    background: var(--amz-navy);
    color: white;
    border-radius: 16px;
    padding: 16px 18px;
    display: none;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 18px 40px rgba(15, 28, 46, 0.28);
}
.cookie-bar.is-open {
    display: flex;
}
.cookie-bar[hidden] {
    display: none !important;
}
.cookie-bar-copy { min-width: 0; }
.cookie-bar-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
}
.cookie-bar p { margin: 0; font-size: 14px; color: #d7dde4; max-width: 58ch; }
.cookie-bar a { color: #ffd7a8; }
.cookie-bar-status { margin-top: 8px !important; color: #ffd7a8 !important; font-weight: 700; font-size: 13px !important; }
.cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; align-items: center; }
.cookie-bar .cta-btn { padding: 10px 16px; cursor: pointer; }
.cookie-bar .cta-btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.cookie-bar .cta-btn[aria-pressed="true"] { box-shadow: 0 0 0 2px #ffd7a8; }
.cookie-bar-close {
    background: transparent;
    border: 0;
    color: #d7dde4;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-bar-close:hover { color: white; }
.cookie-bar-close[hidden] { display: none !important; }
.cookie-widget {
    position: fixed;
    z-index: 1100;
    left: 16px;
    bottom: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--amz-navy);
    color: white;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 28, 46, 0.28);
}
.cookie-widget.is-visible {
    display: flex;
}
.cookie-widget[hidden] {
    display: none !important;
}
.cookie-widget:hover,
.cookie-widget:focus-visible {
    background: var(--navy-2);
    outline: 2px solid var(--amz-orange);
    outline-offset: 2px;
}
.cookie-widget-icon {
    display: flex;
    color: var(--amz-orange);
}
.cookie-reset { margin: 28px 0; padding: 20px; background: var(--soft); border-radius: 14px; }

@media (max-width: 900px) {
    .pack-split { grid-template-columns: 1fr; }
    .cookie-bar.is-open { flex-direction: column; align-items: stretch; bottom: 84px; }
    .cookie-widget.is-visible { bottom: 84px; }
}

.page-hero {
    background:
        radial-gradient(900px 420px at 90% 0%, rgba(255, 154, 31, 0.16), transparent 50%),
        var(--amz-navy);
    color: white;
    padding: 72px var(--pad) 64px;
    text-align: center;
}
.page-hero h1 { max-width: 860px; margin: 0 auto 18px; }
.page-hero p { max-width: 680px; margin: 0 auto 28px; opacity: 0.9; font-size: 17px; }
.page-hero a.hero-kicker, .page-hero .hero-kicker a { color: var(--amz-orange); text-decoration: none; }
.page-hero-compact { padding: 56px var(--pad) 44px; }
.page-hero-compact h1 { font-size: 36px; }

.band-navy { background: var(--amz-navy); color: white; }
.band-navy h2, .band-navy h3 { color: white; }
.band-navy h2::after { background: var(--amz-orange); }
.band-navy p, .band-navy .section-lead { color: #d7dde4; }

.service-body { max-width: 760px; }
.service-body .lede { font-size: 18px; color: #3e4654; margin-bottom: 18px; line-height: 1.7; }
.service-fit {
    display: inline-block;
    margin: 0 auto 24px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 154, 31, 0.35);
    color: var(--amz-orange);
    font-size: 13px;
    font-weight: 700;
}
.service-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1040px;
    margin: 32px auto 0;
    padding: 0 var(--pad);
}
.service-outcomes div {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: var(--shadow);
    text-align: center;
}
.service-outcomes strong { display: block; font-size: 26px; color: var(--amz-navy); letter-spacing: -0.03em; margin-bottom: 6px; }
.service-outcomes span { display: block; font-size: 13px; color: var(--muted); }
.problem-callout {
    background: #fff7ed;
    border-left: 4px solid var(--amz-orange);
    border-radius: 0 14px 14px 0;
    padding: 20px 22px;
    margin-bottom: 28px;
}
.problem-callout-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amz-orange-deep);
    margin-bottom: 8px;
}
.problem-callout p { color: #3e4654; margin: 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0 8px; }
.fit-grid h2 { font-size: 18px; margin-bottom: 20px; }
.fit-grid p { color: var(--muted); font-size: 15px; }
.deliver-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin: 8px 0 0;
}
.deliver-grid li {
    padding: 12px 12px 12px 28px;
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--amz-navy);
}
.deliver-grid li::before { content: '→'; position: absolute; left: 10px; color: var(--amz-orange-deep); font-weight: 800; }
.week-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}
.week-split div { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--line); }
.week-split h2 { font-size: 20px; margin-bottom: 22px; text-align: left; }
.week-split h2::after { left: 0; transform: none; }
.week-split p { color: var(--muted); font-size: 15px; }
.service-process { max-width: 1120px; }
.service-tile-fit { display: block; font-size: 12px; font-weight: 700; color: var(--amz-orange-deep); margin-bottom: 10px; }
.service-grid-compact { grid-template-columns: repeat(4, 1fr); }
.check-list { list-style: none; margin: 24px 0 8px; text-align: left; }
.check-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '→'; position: absolute; left: 0; color: var(--amz-orange-deep); font-weight: 800; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 36px 0; }
.about-stats div { background: var(--paper); border-radius: 12px; padding: 16px; text-align: center; }
.about-stats strong { display: block; font-size: 24px; color: var(--amz-navy); }
.about-split { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; margin-bottom: 28px; }
.about-portrait {
    background: var(--amz-navy);
    color: white;
    border-radius: 20px;
    padding: 28px 18px;
    text-align: center;
}
.about-portrait span {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--amz-orange);
    color: var(--amz-navy);
    font-size: 32px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.about-portrait p { font-weight: 700; line-height: 1.35; }
.about-portrait small { font-weight: 500; opacity: 0.7; }

.stack-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 8px;
}
.stack-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--amz-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.stack-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 5px;
    border-radius: 6px;
    background: var(--paper);
    color: var(--amz-orange-deep);
    font-size: 10px;
    letter-spacing: 0.04em;
}
.stack-chip:hover {
    border-color: var(--amz-orange);
    color: var(--amz-orange-deep);
}
.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.stack-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-tile .stack-also {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--amz-orange-deep);
    margin-bottom: 8px;
}

.service-mini {
    position: sticky;
    top: 68px;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px var(--pad);
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.service-mini a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--amz-navy);
    padding: 8px 12px;
    border-radius: 999px;
}
.service-mini a:hover { background: white; }

.mobile-cta {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    background: var(--amz-orange);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    padding: 14px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(255, 154, 31, 0.4);
}
.page-template-template-contact-php .mobile-cta { display: none !important; }

.updates-desk { background: #f4f1ea; }
.desk-head {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 4% 8px;
}
.desk-head .hero-kicker { color: var(--amz-orange-deep); }
.desk-head h1 {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.04em;
    color: var(--amz-navy);
    max-width: 28ch;
    line-height: 1.15;
    margin: 0 0 12px;
}
.desk-head p {
    max-width: 58ch;
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}
.desk-head .cta-row { margin-top: 20px; }
.desk-head .cta-btn-ghost,
.desk-cta .cta-btn-ghost {
    color: var(--amz-navy);
    border-color: var(--line);
}
.desk-crumb {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin: 0 0 12px;
}
.desk-crumb a { color: var(--amz-navy); text-decoration: none; }
.desk-crumb a:hover { color: var(--amz-orange-deep); }
.desk-crumb span { margin: 0 6px; color: #c4c0b6; }

.desk-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px 10px;
    margin: 0 0 18px;
    align-items: end;
}
.desk-search { grid-column: 1 / -1; }
.desk-filters label,
.desk-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.desk-filters label span,
.desk-filter-spacer {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8478;
}
.desk-filter-spacer { visibility: hidden; }
.desk-filters select,
.desk-filters input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
}
.desk-apply { padding: 11px 18px; width: auto; min-width: 88px; }
.desk-count { font-size: 13px; color: #6b7280; font-weight: 600; margin: 0 0 16px; }
.desk-kinds { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.desk-kinds a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--amz-navy);
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
}
.desk-kinds a.is-active { background: var(--amz-navy); color: white; border-color: var(--amz-navy); }

.desk-feed { display: grid; gap: 14px; }
.desk-entry {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 24px;
    text-align: left;
}
.desk-entry:not(:has(.desk-entry-shot)) { grid-template-columns: minmax(0, 1fr); }
.desk-entry-shot {
    width: 148px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--amz-navy);
    align-self: start;
}
.desk-entry-shot img { width: 100%; height: 100px; object-fit: cover; display: block; }
.desk-entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 8px;
}
.desk-entry h2 { font-size: 20px; line-height: 1.3; margin: 0 0 8px; letter-spacing: -0.02em; }
.desk-entry h2 a { color: var(--amz-navy); text-decoration: none; }
.desk-entry h2 a:hover { color: var(--amz-orange-deep); }
.desk-entry-excerpt { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 10px; }
.desk-entry .read-more { font-weight: 700; font-size: 14px; }

.desk-pagination { margin-top: 28px; }
.desk-pagination .page-numbers { display: inline-block; padding: 8px 12px; margin: 0 3px; background: white; border-radius: 8px; text-decoration: none; color: var(--amz-navy); font-weight: 600; }
.desk-pagination .current { background: var(--amz-navy); color: white; }

.update-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 4% 80px;
    align-items: start;
}
.update-main { min-width: 0; }
.update-article-layout h1 {
    font-size: clamp(26px, 3.4vw, 36px);
    letter-spacing: -0.035em;
    line-height: 1.2;
    color: var(--amz-navy);
    margin: 0 0 8px;
    max-width: 28ch;
}
.update-rail {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.update-rail-card, .update-toc, .desk-cta, .updates-signup-rail {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}
.update-toc-label, .desk-cta-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8478;
    margin: 0 0 8px;
}
.update-toc ol { margin: 0; padding-left: 18px; }
.update-toc li { margin: 0 0 6px; }
.update-toc a { color: var(--amz-navy); text-decoration: none; font-weight: 600; font-size: 13px; line-height: 1.35; }
.update-toc a:hover { color: var(--amz-orange-deep); }
.desk-cta p { font-size: 14px; line-height: 1.5; margin: 0 0 12px; color: var(--muted); }
.desk-cta-compact .cta-btn { width: 100%; text-align: center; margin: 0; }
.updates-signup-rail { display: grid; gap: 8px; }
.updates-signup-copy { font-size: 13px; color: var(--muted); margin: 0; }
.updates-signup-rail input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
}
.updates-signup-rail .submit-btn { width: 100%; padding: 11px 14px; }
.update-rail-card p { margin: 0 0 6px; font-size: 14px; }
.update-rail-card p:last-child { margin: 0; }
.update-rail-card a { color: var(--amz-navy); text-decoration: none; font-weight: 700; }
.update-rail-card a:hover { color: var(--amz-orange-deep); }

.updates-desk .brief-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 24px;
}
.updates-desk .brief-grid div {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}
.updates-desk .brief-grid h2 { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8478; margin: 0 0 8px; }
.updates-desk .brief-grid p { font-size: 15px; line-height: 1.55; margin: 0; color: var(--ink); }

.update-read {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 36px 40px;
    font-size: 17px;
    line-height: 1.75;
    color: #242a36;
    overflow-x: auto;
}
.update-read h2 {
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 32px 0 12px;
    color: var(--amz-navy);
}
.update-read h2:first-child { margin-top: 0; }
.update-read h3 { font-size: 18px; margin: 24px 0 10px; color: var(--amz-navy); }
.update-read p { margin: 0 0 16px; }
.update-read ul, .update-read ol { margin: 0 0 20px 22px; }
.update-read li { margin-bottom: 8px; }
.update-read .playbook-table { font-size: 14px; margin: 8px 0 24px; }
.update-read .problem-callout { margin: 0 0 24px; }
.update-read .proof-note { font-size: 14px; }

.sc-shot, .update-read figure, .update-read .wp-block-image {
    margin: 28px 0;
    background: #0f1c2e;
    border-radius: 14px;
    overflow: hidden;
    padding: 10px 10px 0;
}
.sc-shot img, .sc-shot-img, .update-read figure img, .update-read .wp-block-image img, .update-read p > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    background: #111;
}
.sc-shot figcaption, .update-read figcaption, .update-read .wp-element-caption {
    color: #d7d1c4;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px 12px;
}
.sc-shot-hero { margin: 8px 0 24px; }

.ad-slot {
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px 14px;
    text-align: center;
}
.ad-slot-label {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9aa0a6;
    margin: 0 0 8px;
    font-weight: 700;
}
.ad-slot--sidebar { min-height: 250px; }
.ad-slot--inarticle { min-height: 90px; margin: 16px 0 24px; }
.ad-slot--feed { min-height: 90px; margin: 0 0 20px; }
.update-source { font-size: 13px; color: var(--muted); margin: 22px 0; line-height: 1.5; }
.update-source a { font-weight: 700; }
.related-updates { margin-top: 36px; }
.related-updates h2 { font-size: 18px; margin-bottom: 12px; color: var(--amz-navy); }
.desk-related { display: grid; gap: 10px; }
.desk-related-item {
    display: block;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
}
.desk-related-item span { display: block; font-size: 12px; font-weight: 700; color: #8a8478; margin-bottom: 4px; }
.desk-related-item strong { color: var(--amz-navy); font-size: 15px; line-height: 1.35; }
.desk-related-item:hover strong { color: var(--amz-orange-deep); }
.desk-back { margin: 20px 0 0; font-size: 14px; font-weight: 700; }
.desk-back a { text-decoration: none; color: var(--amz-navy); }
.desk-back a:hover { color: var(--amz-orange-deep); }
.update-faq { margin-top: 28px; }
.update-faq h2 { font-size: 22px; color: var(--amz-navy); margin-bottom: 12px; }
.desk-host-banner {
    background: var(--amz-navy);
    color: white;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
}
.desk-host-banner a { color: var(--amz-orange); }

@media (max-width: 1440px) {
    .nav-cta-ghost { display: none; }
}

@media (max-width: 1280px) {
    .nav-cta-ghost { display: block; }
    .nav-end { margin-inline-start: auto; }
    .lang-switch-menu {
        min-width: 200px;
        max-width: min(260px, calc(100vw - 24px));
    }
    .nav-item > a { margin: 0; padding: 10px 0; white-space: normal; }
    .nav-item.has-mega { position: relative; }
    .nav-item { flex-direction: column; align-items: stretch; }
    .nav-caret { margin-inline-start: auto; }
    .nav-sub {
        position: static;
        display: none;
        box-shadow: none;
        padding: 0 0 8px 12px;
        padding-inline: 12px 0;
        min-width: 0;
        width: auto;
        max-width: none;
        border: 0;
        border-radius: 0;
        inset: auto;
        left: auto;
        right: auto;
    }
    .nav-sub::before { display: none; }
    .nav-mega {
        width: auto;
        max-width: none;
        grid-template-columns: 1fr;
        padding: 0 0 8px 4px;
        gap: 12px;
    }
    .nav-mega-stack { grid-template-columns: 1fr; }
    .nav-mega-foot { margin-top: 0; padding-top: 0; border-top: 0; }
    .nav-item.is-open > .nav-sub { display: grid; }
    .nav-item:hover > .nav-sub { display: none; }
    .nav-item.is-open:hover > .nav-sub,
    .nav-item.is-open > .nav-sub { display: grid; }
    .menu-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 12px var(--pad) 24px;
        box-shadow: 0 16px 40px rgba(15, 28, 46, 0.12);
        max-height: min(80vh, calc(100dvh - 72px));
        overflow: auto;
        z-index: 1100;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { margin: 6px 0; }
    .nav-cta, .nav-cta-ghost {
        margin: 8px 0 !important;
        text-align: center;
        white-space: normal;
        display: block;
        align-self: stretch;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .footer-brand { grid-column: 1 / -1; max-width: 42ch; }
    .footer-cta { flex-direction: column; align-items: flex-start; }
    .footer-cta-actions { width: 100%; }
    .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pack-links { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1024px) {
    .hero-split, .contact-split, .case-grid, .steps-grid-four, .service-grid-compact, .review-offer-grid, .hub-strip, .stack-grid-compact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .about-split { grid-template-columns: 1fr; }
    .service-outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .service-grid, .service-grid-compact, .steps-grid, .steps-grid-four, .about-stats, .desk-filters, .hero-split, .contact-split, .case-grid, .case-facts, .impact-row, .field-row, .intent-pills, .fit-grid, .week-split, .deliver-grid, .calc-grid, .hub-strip, .review-offer-grid, .bring-grid, .stack-grid, .stack-grid-compact, .update-shell, .update-article-layout, .updates-desk .brief-grid { grid-template-columns: 1fr; }
    .update-rail { position: static; }
    .desk-entry, .desk-entry:not(:has(.desk-entry-shot)) { grid-template-columns: 1fr; }
    .desk-entry-shot { width: 100%; }
    .desk-entry-shot img { height: 160px; }
    .update-read { padding: 24px 20px 32px; }
    .cta-btn-ghost { margin-inline-start: 0; }
    .hero, .hero-copy { text-align: start; }
    .hero, .page-hero { padding-block: 44px 40px; }
    .section-padding { padding-block: 56px; }
    .mobile-cta { display: block; }
    .nav-links > .nav-cta:not(.nav-cta-ghost) { display: none; }
    body { padding-bottom: 76px; }
    footer { padding-bottom: 160px; }
    .copyright { flex-direction: column; align-items: flex-start; }
    .service-mini { top: 60px; overflow-x: auto; justify-content: flex-start; }
    .footer-cta-actions .cta-btn { flex: 1 1 100%; text-align: center; }
    .pack-links { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stats-row, .problem-grid, .brief-grid { grid-template-columns: 1fr 1fr; }
    .article-body { padding: 24px; }
    .custom-nav { padding-inline: 16px; min-height: 64px; }
    .seasonal-banner { font-size: 13px; padding-block: 8px; }
}

@media (max-width: 560px) {
    .stats-row, .problem-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .cta-btn, .service-tile, .case-card, .problem-card, .testimonial-card, .blog-card {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.lang-switch {
    position: relative;
    align-self: center;
    flex-shrink: 0;
}
.lang-switch-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 8px 12px;
    min-height: 40px;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    color: var(--amz-navy);
}
.lang-switch-code { color: var(--amz-orange-deep); }
.lang-switch-name { display: none; }
.lang-switch-menu {
    display: none;
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    max-height: 70vh;
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    list-style: none;
    z-index: 1200;
    padding: 8px;
}
.lang-switch.is-open .lang-switch-menu { display: block; }
.lang-switch-menu a {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
}
.lang-switch-menu a span { font-weight: 800; color: var(--amz-orange-deep); min-width: 28px; }
.lang-switch-menu a:hover,
.lang-switch-menu a[aria-current="true"] { background: var(--paper); }
.locale-note {
    margin: 12px 0 0;
    padding: 12px 14px;
    background: #fff7eb;
    border: 1px solid #f0d9b0;
    border-radius: 12px;
    font-size: 14px;
    color: var(--ink);
}
body.locale-ja { font-family: 'Noto Sans JP', 'Plus Jakarta Sans', system-ui, sans-serif; }
body.locale-ar { font-family: 'Noto Sans Arabic', 'Plus Jakarta Sans', system-ui, sans-serif; }
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .footer-cta h2,
html[dir="rtl"] .footer-col,
html[dir="rtl"] footer { text-align: start; }
html[dir="rtl"] .page-hero { text-align: center; }
html[dir="rtl"] .nav-sub { padding-inline: 12px 0; }
html[dir="rtl"] .footer-links a:hover { padding-inline-start: 0; }

