:root {
    --blue: #0875cc;
    --blue-strong: #055ca0;
    --navy: #061d43;
    --navy-deep: #04142f;
    --ink: #10213b;
    --muted: #70869c;
    --line: #dce8f1;
    --line-strong: #c9d9e6;
    --pale: #f4f8fc;
    --white: #ffffff;
    --success: #169b64;
    --warning: #e17b22;
    --danger: #dd4b39;
    --font: 'DM Sans', sans-serif;
    --display: 'Manrope', sans-serif;
    --shadow-soft: 0 18px 40px rgba(4, 26, 53, 0.08);
    --shadow-card: 0 22px 34px rgba(0, 24, 68, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font: 15px/1.6 var(--font);
}

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

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

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

button {
    cursor: pointer;
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.eyebrow.inverse {
    color: #9ddcff;
}

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

.button,
.btn,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 7px;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.btn:hover,
.button-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 117, 204, 0.22);
}

.button.secondary,
.btn-secondary,
.outline,
.ghost-button {
    background: var(--white);
    color: var(--blue);
    border-color: #b8d5e8;
    box-shadow: none;
}

.button.ai {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.button.white,
.btn-white {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.plain-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecf7ff;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.section {
    padding: 88px 0;
    scroll-margin-top: 115px;
}

.soft {
    background: var(--pale);
}

.heading,
.section-head,
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.heading h2,
.section-head h2,
.section-heading h2,
.assistant h2,
.page-hero h1,
.hero h1 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -2px;
}

.heading h2,
.section-head h2,
.section-heading h2,
.assistant h2 {
    margin: 0;
    font-size: clamp(29px, 3.3vw, 43px);
    line-height: 1.14;
}

.heading > a,
.section-head > a,
.section-heading > a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.notice,
.form-message,
.status-message {
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 12px;
}

.status-message,
.form-message {
    display: none;
}

.status-message.show,
.form-message.show {
    display: block;
}

.status-message.success,
.form-message.success {
    background: #eefaf4;
    color: #0e6f49;
}

.status-message.error,
.form-message.error {
    background: #fff4f1;
    color: #a53b2d;
}

.screen-reader {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Home header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e4eef5;
    box-shadow: 0 10px 30px rgba(8, 19, 41, 0.03);
    overflow-x: hidden;
}

.site-header .container {
    max-width: 1280px;
}

.header-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    transition: min-height 0.2s ease, padding 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.site-header.is-scrolled .header-row {
    min-height: 74px;
    padding: 6px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font: 800 20px var(--display);
    letter-spacing: -1.1px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.brand > span:last-child > span {
    color: var(--blue);
}

.brand-mark {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue);
    color: var(--white);
    font-size: 16px;
}

.header-search,
.ai-search {
    height: 43px;
    flex: 1 1 320px;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dce8f2;
    background: #f4f8fc;
    border-radius: 999px;
    padding: 0 12px;
    color: #69839d;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    margin: 0 auto;
}

.header-search input,
.ai-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.header-search kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 999px;
    background: #f4f7fb;
    color: #526a82;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex: 0 0 auto;
}

kbd {
    font: 600 10px var(--font);
    white-space: nowrap;
    border: 1px solid #d5e1eb;
    background: var(--white);
    border-radius: 4px;
    padding: 3px 5px;
}

.header-row nav,
.market-actions,
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 800;
}

.header-row nav a,
.market-actions a,
.main-nav a {
    color: #4f6880;
}

.header-row nav a:hover,
.market-actions a:hover,
.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
}

.sign,
.signin,
.btn-small {
    color: var(--blue);
    border: 1px solid #bbd8ea;
    border-radius: 6px;
    padding: 9px 12px;
    background: var(--white);
}

.menu,
.market-toggle,
.nav-toggle {
    display: none;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 22px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-strip,
.topic-nav {
    border-top: 1px solid #edf3f7;
}

.nav-strip .container,
.topic-nav .container {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: auto;
    padding-top: 2px;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.nav-strip .container::-webkit-scrollbar,
.topic-nav .container::-webkit-scrollbar {
    display: none;
}

.nav-strip a,
.topic-nav a {
    color: #526a82;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-strip a:first-child,
.topic-nav a:first-child,
.topic-nav a.current {
    color: var(--blue);
}

/* Home hero */
.hero {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 73% 43%, #176ec8, #07478e 35%, #061d43 75%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 120px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.08;
}

.hero h1 em,
.assistant h2 em,
.page-hero h1 em {
    font-style: normal;
    color: #7bccff;
}

.hero-inner > p:not(.eyebrow) {
    max-width: 570px;
    color: #c6dff3;
    font-size: 17px;
    line-height: 1.65;
}

.hero-search {
    max-width: 600px;
    min-height: 59px;
    margin-top: 29px;
    padding: 8px 8px 8px 17px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 9px;
    background: var(--white);
    box-shadow: 0 20px 30px rgba(0, 26, 73, 0.17);
    color: #61809c;
}

.hero-search input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.hero-search button {
    min-width: 128px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trending-searches {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    color: #a9c5df;
    font-size: 10px;
}

.trending-searches b {
    color: #d7ebfb;
}

.trending-searches a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-stack {
    position: absolute;
    z-index: 1;
    right: max(4%, calc((100vw - 1210px) / 2));
    top: 107px;
    width: 460px;
    height: 420px;
}

.floating-card {
    position: absolute;
    width: 203px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 14px;
    padding: 17px;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(7px);
}

.floating-card::after {
    content: '';
    position: absolute;
    right: -35px;
    bottom: -51px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.11);
}

.floating-card span {
    font-size: 10px;
    letter-spacing: 1px;
    color: #c3eaff;
    text-transform: uppercase;
}

.floating-card b {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 13px;
    font: 700 19px/1.18 var(--display);
    letter-spacing: -0.8px;
}

.floating-card i {
    position: absolute;
    right: 17px;
    bottom: 15px;
    z-index: 1;
    font-style: normal;
    font-size: 28px;
}

.car-card {
    top: 33px;
    left: 10px;
    background: linear-gradient(135deg, rgba(20, 143, 226, 0.72), rgba(34, 84, 181, 0.75));
    transform: rotate(-7deg);
}

.tech-card {
    top: 16px;
    right: 4px;
    background: linear-gradient(135deg, rgba(25, 55, 95, 0.66), rgba(8, 117, 203, 0.72));
    transform: rotate(6deg);
}

.stay-card {
    bottom: 28px;
    left: 113px;
    background: linear-gradient(135deg, rgba(10, 144, 127, 0.66), rgba(12, 82, 160, 0.72));
    transform: rotate(-2deg);
}

.score-pill {
    position: absolute;
    right: 35px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue);
    font-size: 18px;
}

.score-pill span b,
.score-pill span small {
    display: block;
    line-height: 1.1;
}

.score-pill span b {
    color: var(--ink);
    font-size: 11px;
}

.score-pill span small {
    color: #71879c;
    font-size: 9px;
}

.hero-glow {
    position: absolute;
    right: -60px;
    top: -50px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(131, 207, 255, 0.21);
    border-radius: 50%;
}

.hero-glow.two {
    right: 105px;
    top: 58px;
    width: 440px;
    height: 440px;
}

/* Homepage modules */
.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.category-grid a {
    min-height: 125px;
    padding: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font: 700 12px var(--display);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-grid a:hover {
    background: #eff8ff;
    color: var(--blue);
    transform: translateY(-3px);
}

.category-grid i {
    display: block;
    margin-bottom: 15px;
    color: var(--blue);
    font-style: normal;
    font-size: 21px;
}

.category-grid small {
    display: block;
    margin-top: 2px;
    color: #8295a8;
    font: 10px var(--font);
}

.pager {
    color: var(--blue);
    font-weight: 700;
}

.product-grid,
.story-grid,
.news-grid,
.travel-grid,
.deal-grid,
.promo-grid,
.collection-grid,
.template-grid,
.review-grid,
.guide-grid,
.comparison-grid,
.deal-board,
.travel-board,
.category-spotlight,
.policy-grid,
.feature-grid,
.service-grid,
.industry-cards,
.insight-grid,
.result-grid,
.faq-grid {
    display: grid;
    gap: 17px;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid article,
.story,
.news-grid article,
.review-card,
.guide-card,
.comparison-card,
.deal-card,
.travel-card,
.feature-card,
.policy-card,
.result-card,
.info-panel,
.module-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-grid article:hover,
.story:hover,
.news-grid article:hover,
.review-card:hover,
.guide-card:hover,
.comparison-card:hover,
.deal-card:hover,
.travel-card:hover,
.feature-card:hover,
.result-card:hover,
.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.art {
    position: relative;
    height: 184px;
    overflow: hidden;
}

.art span {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 1;
    padding: 4px 6px;
    border-radius: 3px;
    background: var(--white);
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.art i {
    font-style: normal;
}

.phone {
    background: linear-gradient(135deg, #b7e6fa, #eaf9ff);
}

.phone i {
    position: absolute;
    left: calc(50% - 42px);
    top: 22px;
    width: 84px;
    height: 153px;
    border: 5px solid #a9ddff;
    border-radius: 15px;
    background: linear-gradient(135deg, #175fa7, #061e58);
    box-shadow: 8px 12px 18px rgba(0, 67, 115, 0.27);
}

.laptop {
    background: linear-gradient(135deg, #d9ebfa, #f4faff);
}

.laptop i {
    position: absolute;
    left: calc(50% - 78px);
    top: 33px;
    width: 156px;
    height: 106px;
    border: 6px solid #2b4264;
    border-radius: 7px 7px 0 0;
    background: radial-gradient(circle, #61bef5, #0875cc 42%, #092d62 75%);
    display: grid;
    place-items: center;
    color: var(--white);
    font: 800 36px var(--display);
}

.scooter {
    background: linear-gradient(135deg, #c8f1f8, #70b9dc);
}

.scooter i {
    position: absolute;
    left: 20%;
    bottom: 26px;
    width: 64%;
    height: 62px;
    border-radius: 65px 70px 17px 24px;
    background: linear-gradient(160deg, #4fd4ee, #0874c4 59%, #06498c 61%);
    color: var(--white);
    text-align: center;
    padding-top: 16px;
    font-size: 26px;
}

.camera {
    background: linear-gradient(135deg, #222f42, #6a92b5);
}

.camera i {
    position: absolute;
    left: calc(50% - 44px);
    top: 47px;
    width: 88px;
    height: 76px;
    border-radius: 11px;
    background: #101c2e;
    border: 5px solid #5d748e;
    color: #b5dff9;
    display: grid;
    place-items: center;
    font-size: 33px;
}

.product-grid article > p,
.product-grid h3,
.product-grid .rating,
.product-grid strong,
.product-grid footer {
    margin-left: 16px;
    margin-right: 16px;
}

.product-grid article > p {
    margin-top: 14px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.product-grid h3 {
    margin-bottom: 7px;
    font: 700 16px var(--display);
    letter-spacing: -0.5px;
}

.rating {
    margin-bottom: 8px;
    color: #ec9f00;
    font-size: 11px;
}

.rating small {
    color: #7f92a5;
}

.product-grid strong {
    font: 700 15px var(--display);
}

.product-grid footer {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 13px;
    margin-bottom: 16px;
}

.product-grid button,
.mini-button {
    border: 1px solid #add2e9;
    background: var(--white);
    border-radius: 4px;
    padding: 7px 9px;
    color: var(--blue);
    font: 700 10px var(--font);
}

.deal-grid {
    grid-template-columns: repeat(3, 1fr) 1.2fr;
}

.deal-grid article {
    position: relative;
    min-height: 245px;
    border-radius: 10px;
    padding: 16px;
    overflow: hidden;
    color: var(--white);
}

.deal-grid article > b {
    position: absolute;
    right: 12px;
    top: 12px;
    background: var(--white);
    color: #e13e5d;
    border-radius: 4px;
    padding: 3px 5px;
    font-size: 10px;
}

.deal-one {
    background: linear-gradient(135deg, #553de2, #a59bff);
}

.deal-two {
    background: linear-gradient(135deg, #0e455d, #1aa5c6);
}

.deal-three {
    background: linear-gradient(135deg, #d25c16, #f3a543);
}

.deal-art {
    height: 112px;
    display: grid;
    place-items: center;
    font-size: 70px;
    color: rgba(255, 255, 255, 0.45);
}

.deal-grid article p {
    margin: 5px 0 1px;
    font: 700 13px var(--display);
}

.deal-grid strong {
    font: 700 17px var(--display);
}

.deal-grid s {
    font: 400 10px var(--font);
    opacity: 0.7;
}

.deal-grid small {
    display: block;
    font-size: 10px;
    opacity: 0.88;
}

.deal-grid article a {
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-size: 10px;
    font-weight: 700;
}

.deal-grid aside,
.cta-box,
.feature-banner,
.tool-banner,
.assistant-panel {
    border-radius: 12px;
}

.deal-grid aside {
    padding: 26px;
    background: var(--navy);
    color: var(--white);
}

.deal-grid aside h3 {
    font: 700 25px/1.1 var(--display);
    letter-spacing: -1px;
}

.deal-grid aside > p:not(.eyebrow) {
    color: #b5cfe7;
    font-size: 13px;
    line-height: 1.5;
}

.compare {
    background: var(--navy);
    color: var(--white);
    padding: 91px 0;
}

.compare .container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.compare-title > p:not(.eyebrow) {
    color: #b6d0e7;
    font-size: 14px;
}

.comparison {
    overflow: hidden;
    border-radius: 11px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(0, 19, 46, 0.27);
}

.comparison header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.comparison header i {
    width: 36px;
    height: 52px;
    border-radius: 7px;
    background: linear-gradient(135deg, #66c3ef, #0751aa);
}

.comparison header p {
    margin: 0;
    color: #71869b;
    font-size: 11px;
}

.comparison header b {
    font: 700 15px var(--display);
}

.comparison header small {
    display: block;
    color: #7b8fa3;
    font-size: 10px;
}

.comparison article {
    position: relative;
    display: grid;
    grid-template-columns: 35px 1.2fr 0.9fr 1.15fr 92px;
    gap: 10px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e5edf3;
    font-size: 12px;
}

.store {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: var(--white);
}

.amz {
    background: #182f61;
}

.flp {
    background: #f5dc00;
    color: #2372ba;
}

.crm {
    background: #2fad70;
}

.comparison em {
    font: 700 14px var(--display);
    font-style: normal;
}

.comparison article small {
    color: #74899e;
    font-size: 9px;
}

.comparison button {
    border: 1px solid #abd0e9;
    background: var(--white);
    color: var(--blue);
    border-radius: 4px;
    padding: 6px;
    font: 700 10px var(--font);
}

.comparison .best {
    background: #ebf8ff;
}

.comparison label {
    position: absolute;
    right: 6px;
    top: -7px;
    padding: 2px 4px;
    border-radius: 3px;
    background: var(--blue);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison > a {
    display: block;
    padding: 12px;
    text-align: center;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.assistant {
    padding: 88px 0;
    background: #eff8fe;
}

.assistant-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 100px;
    align-items: center;
}

.assistant-grid > div > p:not(.eyebrow) {
    max-width: 470px;
    color: #667f97;
    line-height: 1.65;
}

.chat {
    background: var(--white);
    border: 1px solid #d8e7f1;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 19px 36px rgba(12, 82, 131, 0.11);
}

.chat header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px;
    border-bottom: 1px solid #e2ecf3;
}

.chat header > i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #59c7fb, #2363d5);
    color: var(--white);
    font-style: normal;
}

.chat header b,
.chat header small {
    display: block;
}

.chat header b {
    font-size: 12px;
}

.chat header small {
    color: #8094a7;
    font-size: 9px;
}

.chat header span {
    margin-left: auto;
    color: #8294a7;
}

.chat main {
    padding: 16px;
}

.chat main p {
    max-width: 90%;
    padding: 9px 10px;
    border-radius: 3px 10px 10px 10px;
    font-size: 12px;
    line-height: 1.45;
}

.bot {
    background: #eff7fc;
}

.user {
    margin-left: auto;
    background: var(--blue);
    color: var(--white);
    border-radius: 10px 3px 10px 10px;
}

.chat main .choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat main button {
    border: 1px solid #b8d9ee;
    background: var(--white);
    border-radius: 4px;
    color: var(--blue);
    padding: 6px 8px;
    font: 700 10px var(--font);
}

.chat footer {
    padding: 12px 15px;
    border-top: 1px solid #e2ecf3;
    color: #94a5b5;
    font-size: 11px;
}

.chat footer b {
    float: right;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--blue);
    color: var(--white);
}

.story-grid,
.news-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
}

.story {
    padding-bottom: 15px;
}

.story > div {
    height: 130px;
    padding: 16px;
    background: linear-gradient(135deg, #164b92, #62c5f4);
    color: var(--white);
    font: 800 25px/0.9 var(--display);
}

.story:nth-child(2) > div {
    background: linear-gradient(135deg, #172339, #40638a);
}

.story:nth-child(3) > div {
    background: linear-gradient(135deg, #c98011, #ffd367);
}

.story p,
.story h3,
.story a,
.news-grid p,
.news-grid h3,
.news-grid a {
    margin-left: 15px;
    margin-right: 15px;
}

.story p,
.news-grid p {
    margin-top: 14px;
    color: #70869c;
    font-size: 9px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.story h3,
.news-grid h3 {
    font: 700 16px/1.3 var(--display);
    letter-spacing: -0.4px;
}

.story a,
.news-grid a {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

.lead {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
}

.lead > div {
    height: 100%;
}

.news-art {
    height: 130px;
    display: grid;
    place-items: center;
    color: var(--white);
    font: 800 43px var(--display);
}

.n1 {
    background: linear-gradient(135deg, #584cd7, #a69eff);
}

.n2 {
    background: linear-gradient(135deg, #107cba, #4fcae1);
}

.n3 {
    background: linear-gradient(135deg, #d46a1d, #ffc85f);
}

.travel-grid {
    grid-template-columns: repeat(3, 1fr);
}

.travel-grid article {
    min-height: 220px;
    padding: 25px;
    border-radius: 10px;
    background: #eef8ff;
}

.travel-grid article:nth-child(2) {
    background: #f2f4fb;
}

.travel-grid .holiday {
    background: linear-gradient(135deg, #076fc4, #35b0e4);
    color: var(--white);
}

.travel-grid > article > span {
    color: var(--blue);
    font-size: 23px;
}

.holiday > span {
    color: var(--white);
}

.travel-grid p {
    margin: 8px 0 4px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.holiday p {
    color: #caefff;
}

.travel-grid h3 {
    margin-bottom: 18px;
    font: 700 21px/1.2 var(--display);
    letter-spacing: -0.8px;
}

.travel-grid article > form,
.travel-grid article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.travel-grid input,
.travel-grid select,
.field input,
.field select,
.field textarea,
.contact-form input,
.contact-form textarea,
.search-panel input,
.search-panel select,
.filter-bar input,
.filter-bar select {
    min-width: 0;
    width: 100%;
    padding: 10px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    outline-color: var(--blue);
}

.travel-grid input {
    flex: 1;
}

.travel-grid button {
    width: 100%;
    border: 0;
    background: var(--blue);
    color: var(--white);
    border-radius: 4px;
    padding: 10px;
    font: 700 11px var(--font);
}

.travel > .container > small,
.footnote {
    display: block;
    margin-top: 16px;
    color: #8295a7;
    font-size: 10px;
    text-align: center;
}

/* Shared page shell */
.page-hero {
    padding: 70px 0 58px;
    background: linear-gradient(120deg, #f2f9ff, #ffffff);
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 16px;
}

.page-nav {
    border-top: 1px solid #edf3f7;
}

.nav-wrap,
.market-nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav {
    margin-left: auto;
}

.surface {
    background: var(--pale);
}

.split-grid,
.contact-grid,
.two-column,
.data-grid,
.page-grid,
.travel-board,
.deal-board,
.policy-grid {
    display: grid;
    gap: 22px;
}

.split-grid,
.two-column,
.page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-title h2,
.intro-copy h2,
.process-item h2,
.industry-cards h2,
.feature-card h3,
.review-card h3,
.guide-card h3,
.comparison-card h3,
.deal-card h3,
.travel-card h3,
.policy-copy h2,
.faq-card h3,
.search-panel h2,
.contact-form h2 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -1px;
}

.intro-copy,
.panel-copy,
.policy-copy,
.page-copy {
    color: #5f7690;
}

.service-grid,
.feature-grid,
.template-grid,
.collection-grid,
.review-grid,
.guide-grid,
.comparison-grid,
.result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.template-card,
.comparison-card,
.deal-card,
.travel-card,
.policy-card,
.faq-card,
.result-card,
.module-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
}

.icon-box,
.feature-icon,
.module-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #eaf6ff;
    color: var(--blue);
    font-size: 20px;
}

.cta-section .cta-box,
.feature-banner,
.tool-banner,
.assistant-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--navy);
    color: var(--white);
}

.cta-box h2,
.feature-banner h2,
.tool-banner h2,
.assistant-panel h2 {
    margin: 0;
    font: 800 30px/1.15 var(--display);
    letter-spacing: -1.3px;
}

.cta-box p,
.feature-banner p,
.tool-banner p,
.assistant-panel p {
    color: #bdd2e8;
}

.process-list,
.faq-list {
    display: grid;
    gap: 16px;
}

.process-item,
.faq-card,
.policy-card,
.search-panel,
.filter-bar,
.contact-form,
.info-panel,
.stat-grid,
.timeline,
.resource-list,
.travel-search-card,
.deal-alert-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.process-item {
    display: grid;
    grid-template-columns: 70px 1fr 220px;
    gap: 18px;
    padding: 22px;
}

.process-item > span,
.industry-cards article > span,
.mini-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf8ff;
    color: var(--blue);
    font: 800 16px var(--display);
}

.process-item ul,
.bullet-list,
.check-list {
    margin: 0;
    padding-left: 18px;
    color: #5f7690;
}

.industry-cards,
.category-spotlight,
.deal-board,
.travel-board,
.promo-grid,
.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-cards article,
.category-panel,
.review-card,
.guide-card,
.comparison-card,
.deal-card,
.travel-card,
.faq-card,
.policy-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.industry-cards article p,
.review-card p,
.guide-card p,
.comparison-card p,
.deal-card p,
.travel-card p,
.policy-card p,
.faq-card p {
    color: #62788f;
}

.contact-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f5f9fd, #ffffff);
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-details a {
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-details small {
    display: block;
    color: #70869c;
    font-size: 11px;
}

.contact-form {
    padding: 24px;
}

.contact-form label,
.field {
    display: block;
    margin-bottom: 14px;
    color: #4e667f;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.field input,
.field textarea,
.field select {
    margin-top: 6px;
}

.contact-form textarea,
.field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row,
.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-meta,
.card-meta {
    color: #7c90a3;
    font-size: 11px;
}

.stat-grid,
.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.stat,
.mini-stat {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
}

.stat b,
.mini-stat b {
    display: block;
    color: var(--blue);
    font: 800 24px var(--display);
}

.stat small,
.mini-stat small {
    color: var(--muted);
    font-size: 10px;
}

.feature-banner,
.tool-banner,
.assistant-panel {
    margin-top: 26px;
}

.tool-list,
.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-list a,
.chip-link,
.chip-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #b8d9ee;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.chip-button {
    cursor: pointer;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.policy-copy,
.not-found-copy,
.search-copy {
    max-width: 820px;
}

.policy-copy h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-size: 28px;
}

.policy-copy ul {
    padding-left: 18px;
    color: #5d7590;
}

.not-found {
    padding: 100px 0;
    background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.not-found-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.not-found-card b {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blue);
    font: 800 72px/1 var(--display);
    letter-spacing: -4px;
}

.filter-bar,
.search-panel,
.travel-search-card,
.deal-alert-card {
    padding: 20px;
}

.filter-bar form,
.search-panel form,
.travel-search-card form,
.deal-alert-card form {
    display: grid;
    gap: 12px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.result-grid {
    margin-top: 22px;
}

.result-card h3,
.review-card h3,
.guide-card h3,
.comparison-card h3,
.deal-card h3,
.travel-card h3,
.feature-card h3,
.service-card h3,
.policy-card h3,
.faq-card h3 {
    margin-bottom: 8px;
    font: 700 20px/1.25 var(--display);
}

.result-card .actions,
.review-card .actions,
.guide-card .actions,
.comparison-card .actions,
.deal-card .actions,
.travel-card .actions,
.feature-card .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.search-summary {
    color: #577089;
    font-size: 13px;
}

.assistant-layout,
.deal-layout,
.travel-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
}

.assistant-panel .tool-list .chip-link {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.resource-list {
    padding: 0;
    overflow: hidden;
}

.resource-list article {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.resource-list article:last-child {
    border-bottom: 0;
}

.resource-list h3 {
    margin-bottom: 6px;
    font: 700 18px var(--display);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 13px;
}

.comparison-table th {
    background: #f6fbff;
    color: var(--blue);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.quote-box,
.mini-panel,
.result-empty {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fbfe;
}

.timeline {
    padding: 0;
    overflow: hidden;
}

.timeline article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.timeline article:last-child {
    border-bottom: 0;
}

.timeline b {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf8ff;
    color: var(--blue);
    font: 800 14px var(--display);
}

/* Footer */
.site-footer,
.market-footer {
    background: #06152c;
    color: #b3c6d9;
    padding: 55px 0 20px;
}

.footer-grid,
.foot {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 42px;
}

.footer-grid .brand,
.foot .brand {
    color: var(--white);
}

.footer-grid p,
.foot p {
    max-width: 250px;
    font-size: 12px;
}

.footer-grid b,
.foot b {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font: 700 12px var(--display);
}

.footer-grid a:not(.brand),
.foot a:not(.brand) {
    display: block;
    margin: 7px 0;
    font-size: 11px;
}

.footer-end,
.footer-bottom,
.end {
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #7891a9;
    font-size: 10px;
}

/* Utility and page-specific shared classes */
.blue-note {
    color: var(--blue);
}

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

.hidden {
    display: none;
}

.mobile-only {
    display: none;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Tablet */
@media (max-width: 980px) {
    .header-row {
        gap: 14px;
    }

    .header-search {
        flex: 1 1 260px;
    }

    .hero-stack {
        opacity: 0.7;
        right: -95px;
    }

    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

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

    .deal-grid aside {
        grid-column: span 2;
    }

    .compare .container,
    .assistant-grid,
    .contact-grid,
    .split-grid,
    .two-column,
    .page-grid,
    .assistant-layout,
    .deal-layout,
    .travel-layout {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lead {
        grid-column: span 2;
    }

    .travel-grid,
    .industry-cards,
    .feature-grid,
    .service-grid,
    .review-grid,
    .guide-grid,
    .comparison-grid,
    .deal-board,
    .travel-board,
    .category-spotlight,
    .filter-grid,
    .result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .process-item {
        grid-template-columns: 54px 1fr;
    }

    .process-item ul {
        grid-column: 2;
    }
}

@media (max-width: 860px) {
    .header-row {
        gap: 12px;
    }

    .header-search {
        max-width: 360px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .container {
        width: calc(100% - 32px);
        box-sizing: border-box;
    }

    .site-header {
        box-shadow: 0 8px 24px rgba(8, 19, 41, 0.04);
    }

    .header-row {
        min-height: 72px;
        gap: 10px;
        flex-wrap: nowrap;
        padding: 8px 0;
    }

    .site-header.is-scrolled .header-row {
        min-height: 66px;
        padding: 6px 0;
    }

    .brand {
        font-size: 17px;
        flex: 0 0 auto;
    }

    .brand-mark {
        width: 26px;
        height: 26px;
    }

    .header-search,
    .ai-search {
        height: 40px;
        margin: 0;
        width: 100%;
        max-width: none;
        min-width: 0;
        background: var(--white);
        box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .header-actions {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-strip {
        display: none;
        padding: 8px 0 12px;
        border-top: 1px solid #edf3f7;
        position: relative;
        z-index: 2;
    }

    .nav-strip.open {
        display: block;
    }

    .nav-strip .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .nav-strip,
    .topic-nav {
        margin-top: 0;
    }

    .nav-strip .container,
    .topic-nav .container {
        gap: 16px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-inner {
        padding-top: 88px;
        padding-bottom: 92px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-inner {
        padding-top: 61px;
        padding-bottom: 110px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .hero-inner > p:not(.eyebrow) {
        font-size: 14px;
    }

    .hero-search {
        min-height: 52px;
        flex-wrap: wrap;
    }

    .hero-search button {
        width: 100%;
    }

    .hero-stack {
        top: auto;
        right: -15px;
        bottom: 7px;
        transform: scale(0.65);
        transform-origin: bottom right;
        opacity: 1;
    }

    .trending-searches {
        display: none;
    }

    .section,
    .assistant,
    .contact-section,
    .not-found {
        padding: 58px 0;
    }

    .heading,
    .section-head,
    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .heading > a,
    .section-head > a,
    .section-heading > a,
    .pager {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid a {
        min-height: 102px;
        padding: 12px;
        font-size: 10px;
    }

    .category-grid i {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .category-grid small {
        font-size: 8px;
    }

    .product-grid,
    .deal-grid,
    .story-grid,
    .news-grid,
    .review-grid,
    .guide-grid,
    .comparison-grid,
    .deal-board,
    .travel-board,
    .category-spotlight,
    .feature-grid,
    .service-grid,
    .industry-cards,
    .result-grid {
        display: flex;
        overflow: auto;
        margin-right: -16px;
        padding-right: 16px;
    }

    .product-grid article,
    .deal-grid article,
    .deal-grid aside,
    .story,
    .news-grid article,
    .review-card,
    .guide-card,
    .comparison-card,
    .deal-card,
    .travel-card,
    .feature-card,
    .service-card,
    .industry-cards article,
    .result-card {
        min-width: 245px;
    }

    .comparison article {
        grid-template-columns: 30px 1fr auto;
        padding: 13px;
    }

    .comparison article small,
    .comparison button {
        display: none;
    }

    .story-grid,
    .news-grid {
        grid-template-columns: none;
    }

    .lead {
        display: block;
    }

    .lead > div {
        height: 130px;
    }

    .travel-grid,
    .filter-grid,
    .form-row,
    .field-row,
    .stats,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .foot {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-grid > div:first-child,
    .foot > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-end,
    .footer-bottom,
    .end {
        flex-direction: column;
    }

    .cta-section .cta-box,
    .feature-banner,
    .tool-banner,
    .assistant-panel {
        grid-template-columns: 1fr;
    }

    .not-found-card {
        padding: 28px 22px;
    }

    .mobile-only {
        display: inline-flex;
    }
}
