* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #122033;
    background: #ffffff;
    line-height: 1.6;
    letter-spacing: 0;
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 0 32px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid #e9edf5;
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #0f1f35;
}

.brand img {
    width: auto;
    max-width: 210px;
    max-height: 42px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 9px 12px;
    border-radius: 8px;
    color: #41516a;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover {
    background: #f3f6fb;
    color: #10233f;
}

.main-nav a.nav-cta {
    margin-left: 8px;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 93, 255, .22);
}

.main-nav a.nav-cta:hover {
    background: #0d4edc;
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f3f6fb;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #15233a;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-banner-section {
    padding: 26px 0 42px;
    background: #fff;
}

.home-banner-wrap {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.home-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(15, 35, 70, .12);
}

.home-banner-search {
    width: min(720px, calc(100% - 32px));
    margin: 20px auto 0;
}

.hero {
    min-height: min(640px, calc(100vh - 72px));
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 92px;
}

.hero-layout {
    display: block;
    max-width: 800px;
}

.hero-copy {
    max-width: 800px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #d9f2ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.02;
}

.hero p,
.page-hero p {
    max-width: 680px;
    margin: 18px 0 0;
    font-size: 19px;
    color: rgba(255, 255, 255, .88);
}

.hero-search,
.page-search {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 12px;
    width: min(680px, 100%);
    margin-top: 30px;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7, 20, 45, .22);
}

.live-search-wrap {
    position: relative;
    width: min(680px, 100%);
    margin-top: 30px;
}

.live-search-wrap .hero-search,
.live-search-wrap .page-search {
    width: 100%;
    margin-top: 0;
}

.live-search-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid #dce6f4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(8, 20, 45, .22);
    color: #13213b;
}

.live-search-panel[hidden] {
    display: none;
}

.live-search-title {
    padding: 4px 6px 2px;
    color: #66758c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.live-result {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
    border-radius: 8px;
    color: #13213b;
    background: #f8fbff;
    transition: background .18s ease, transform .18s ease;
}

.live-result:hover,
.live-result:focus {
    background: #eef5ff;
    transform: translateY(-1px);
}

.live-result .icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.live-result strong,
.live-result small {
    display: block;
    min-width: 0;
}

.live-result small {
    margin-top: 3px;
    color: #5c6c82;
    font-size: 12px;
    line-height: 1.35;
}

.live-result-type {
    display: inline-flex;
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-search .icon,
.page-search .icon {
    color: var(--primary);
    margin-left: 8px;
}

.hero-search input,
.page-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #17243a;
    font-size: 16px;
}

.hero-search button,
.page-search button,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.section {
    padding: 70px 0;
}

.section-band {
    border-bottom: 1px solid #e8edf6;
    background: #fff;
}

.section-muted {
    background: #f6f8fc;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading span {
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.section-heading.compact {
    margin-bottom: 22px;
}

.section-heading.inline h2 {
    font-size: 28px;
}

.section-heading.wide {
    max-width: 820px;
}

.section-heading.wide p {
    margin: 12px 0 0;
    color: #5a6a83;
    font-size: 18px;
}

.steps-grid,
.category-grid,
.guide-grid,
.video-grid,
.support-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

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

.beginner-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-tile,
.beginner-step,
.category-card,
.guide-card,
.video-card,
.support-card,
.faq-item,
.side-panel,
.helpful-box,
.video-placeholder {
    border: 1px solid #e4eaf4;
    border-radius: 8px;
    background: #fff;
}

.step-tile {
    position: relative;
    padding: 22px;
    min-height: 190px;
}

.step-index {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--primary);
    font-weight: 900;
}

.step-tile .icon,
.support-card .icon {
    width: 34px;
    height: 34px;
    color: var(--primary);
}

.category-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid #dce8ff;
    border-radius: 8px;
    background: #f3f7ff;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
}

.category-card .category-icon .icon {
    width: 30px;
    height: 30px;
    color: currentColor;
}

.step-tile h3,
.category-card h3,
.guide-card h3,
.video-card h3,
.support-card h2 {
    margin: 14px 0 8px;
    line-height: 1.25;
}

.step-tile p,
.beginner-step p,
.category-card p,
.guide-card p,
.video-card p,
.support-card p {
    margin: 0;
    color: #5a6a83;
}

.beginner-section {
    padding-top: 78px;
}

.beginner-step {
    position: relative;
    min-height: 270px;
    padding: 26px 24px 24px;
}

.beginner-step .icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.beginner-number {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: #10233f;
    font-size: 18px;
    font-weight: 900;
}

.beginner-step h3 {
    margin: 18px 0 10px;
    font-size: 21px;
    line-height: 1.25;
}

.beginner-step p {
    font-size: 16px;
}

.beginner-step a {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    color: var(--primary);
    background: #eef4ff;
    font-weight: 900;
}

.prepare-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.prepare-copy span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.prepare-copy h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.prepare-copy p {
    margin: 0;
    color: #5a6a83;
    font-size: 18px;
}

.prepare-list {
    display: grid;
    gap: 12px;
}

.prepare-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid #e4eaf4;
    border-radius: 8px;
    background: #fff;
    font-size: 17px;
    font-weight: 800;
}

.prepare-item .icon {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.category-card {
    display: block;
    min-height: 210px;
    padding: 24px 22px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-card:hover,
.guide-card:hover,
.video-card:hover,
.support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 93, 255, .35);
    box-shadow: 0 18px 40px rgba(17, 34, 64, .08);
}

.category-card:hover .category-icon {
    border-color: rgba(22, 93, 255, .42);
    background: #eef4ff;
}

.category-card small {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 800;
}

.guide-card,
.video-card {
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.guide-card a,
.video-card a {
    display: block;
    height: 100%;
}

.card-visual {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #eaf2ff, #f7fbff);
    color: var(--primary);
}

.card-visual .icon {
    width: 54px;
    height: 54px;
}

.card-visual img,
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.video-thumb {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #edf5ff, #f8fafc);
}

.video-thumb > .icon {
    position: absolute;
    width: 58px;
    height: 58px;
    padding: 13px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 28px rgba(18, 32, 51, .14);
}

.video-card h3,
.video-card p {
    padding: 0 20px;
}

.video-card h3 {
    margin-top: 18px;
}

.video-card p {
    margin-bottom: 20px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 0;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item div {
    padding: 0 20px 18px;
    color: #52627a;
}

.page-hero {
    padding: 78px 0 72px;
    color: #fff;
    background: linear-gradient(135deg, #10233f, #165dff 58%, #0c9f71);
}

.page-hero.full {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
}

.page-search {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

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

.article-layout {
    align-items: start;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 26px 0 12px;
    color: #63738a;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 800;
}

.guide-shell {
    padding-bottom: 70px;
}

.guide-article {
    min-width: 0;
}

.guide-article header {
    padding: 28px 0 24px;
    border-bottom: 1px solid #e7edf6;
}

.article-kicker {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-article h1 {
    margin: 6px 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.07;
}

.guide-article header p {
    max-width: 780px;
    margin: 0;
    color: #52627a;
    font-size: 18px;
}

.article-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: #64748b;
    font-size: 14px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-meta .icon {
    width: 18px;
    height: 18px;
}

.article-cover {
    width: 100%;
    margin: 28px 0;
    border-radius: 8px;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.article-body,
.article-steps,
.device-guide-tabs,
.video-embed,
.helpful-box,
.article-nav {
    margin-top: 28px;
}

.article-body {
    font-size: 18px;
    color: #263750;
}

.article-body h2,
.article-body h3,
.article-steps h2,
.video-embed h2,
.helpful-box h2 {
    line-height: 1.2;
}

.article-body a {
    color: var(--primary);
    font-weight: 800;
}

.article-body img {
    border-radius: 8px;
}

.article-steps ol {
    display: grid;
    gap: 12px;
    padding-left: 0;
    counter-reset: steps;
    list-style: none;
}

.article-steps li {
    position: relative;
    padding: 18px 18px 18px 62px;
    border: 1px solid #e4eaf4;
    border-radius: 8px;
    background: #fff;
}

.article-steps li::before {
    position: absolute;
    left: 18px;
    top: 16px;
    counter-increment: steps;
    content: counter(steps);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}

.device-guide-tabs {
    padding: 22px;
    border: 1px solid #e2e9f5;
    border-radius: 8px;
    background: #f8fbff;
}

.device-tabs-head span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.device-tabs-head h2 {
    margin: 5px 0 16px;
    line-height: 1.2;
}

.device-tab-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border: 1px solid #dce6f4;
    border-radius: 8px;
    background: #fff;
}

.device-tab-list button {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #42536c;
    font-weight: 900;
    cursor: pointer;
}

.device-tab-list button.is-active {
    background: var(--primary);
    color: #fff;
}

.device-tab-panel {
    display: none;
    margin-top: 18px;
}

.device-tab-panel.is-active {
    display: block;
}

.device-tab-description {
    margin: 0 0 14px;
    color: #5a6a83;
    font-weight: 700;
}

.device-tab-panel .article-body,
.device-tab-panel .article-steps {
    margin-top: 16px;
}

.article-steps.compact li {
    background: #fff;
}

.video-embed iframe,
.video-player iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    background: #0f172a;
}

.video-placeholder {
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 32px;
    text-align: center;
    background: #f6f8fc;
}

.video-placeholder .icon {
    width: 70px;
    height: 70px;
    color: var(--primary);
}

.helpful-box {
    padding: 22px;
}

.helpful-box h2 {
    margin: 0 0 8px;
}

.helpful-box p {
    margin: 0 0 16px;
    color: #607087;
}

.helpful-box form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.helpful-box button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.helpful-box button:first-of-type {
    color: var(--accent);
}

.helpful-box button:last-of-type {
    color: #dc2626;
}

.helpful-box .icon {
    width: 18px;
    height: 18px;
}

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

.article-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 64px;
    padding: 14px 16px;
    border: 1px solid #e4eaf4;
    border-radius: 8px;
    color: #14243a;
    font-weight: 800;
}

.article-nav .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--primary);
}

.side-panel {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.side-panel.sticky {
    position: sticky;
    top: 92px;
}

.side-panel h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.side-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    color: #34445c;
    background: #f7f9fd;
    font-weight: 800;
}

.side-panel .icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex: 0 0 20px;
}

.search-results {
    display: grid;
    gap: 12px;
}

.result-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e4eaf4;
    border-radius: 8px;
    background: #fff;
}

.result-row.is-primary {
    border-color: rgba(22, 93, 255, .34);
    background: #f4f8ff;
}

.result-row .icon {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.result-row em {
    display: inline-flex;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.result-row small {
    display: block;
    margin-top: 4px;
    color: #62728a;
}

.empty-state {
    padding: 24px;
    border: 1px dashed #cdd8ea;
    border-radius: 8px;
    color: #52627a;
    background: #f8fafc;
}

.empty-state.large {
    text-align: center;
    padding: 48px 24px;
}

.support-card {
    display: block;
    padding: 28px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.support-card span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
}

.site-footer {
    padding: 42px 0;
    color: #d8e6ff;
    background: #10233f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-grid strong,
.footer-grid span {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 900;
}

.footer-grid p {
    margin: 0;
    color: #b8c7dd;
}

.footer-grid a {
    display: block;
    margin-top: 8px;
    color: #c7d7ef;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(16, 185, 129, .28);
}

.whatsapp-float .icon {
    width: 22px;
    height: 22px;
}

.icon {
    width: 24px;
    height: 24px;
}

.site-flashes {
    position: fixed;
    top: 86px;
    left: 50%;
    z-index: 80;
    display: grid;
    gap: 8px;
    width: min(520px, calc(100% - 32px));
    transform: translateX(-50%);
}

.site-flash {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(17, 34, 64, .12);
}

.site-flash.success {
    color: #075e42;
    background: #ecfff7;
    border: 1px solid #b9f4d8;
}

.site-flash.error {
    color: #8f1d1d;
    background: #fff0f0;
    border: 1px solid #ffc8c8;
}

@media (max-width: 980px) {
    .site-header {
        padding: 0 20px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid #e5ebf5;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(18, 32, 51, .12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a.nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .steps-grid,
    .beginner-flow,
    .category-grid,
    .guide-grid,
    .guide-grid.two,
    .video-grid,
    .support-grid,
    .content-layout,
    .prepare-section,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .side-panel.sticky {
        position: static;
    }
}

@media (max-width: 680px) {
    .container,
    .hero-inner,
    .footer-grid {
        width: min(100% - 28px, 1160px);
    }

    .brand-text {
        display: none;
    }

    .hero {
        min-height: auto;
        background-position: 58% center;
    }

    .hero-inner {
        padding: 58px 0 70px;
    }

    .home-banner-section {
        padding: 14px 0 34px;
    }

    .home-banner-image {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }

    .home-banner-search {
        width: min(100% - 24px, 720px);
        margin-top: 14px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .hero p,
    .page-hero p {
        font-size: 17px;
    }

    .hero-search,
    .page-search {
        grid-template-columns: 22px 1fr;
    }

    .hero-search button,
    .page-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .live-search-wrap {
        width: 100%;
    }

    .live-search-panel {
        position: static;
        margin-top: 10px;
    }

    .device-guide-tabs {
        padding: 16px;
    }

    .device-tab-list {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .steps-grid,
    .beginner-flow,
    .category-grid,
    .guide-grid,
    .guide-grid.two,
    .video-grid,
    .support-grid,
    .prepare-section,
    .article-nav {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }

    .page-hero {
        padding: 56px 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 52px;
        justify-content: center;
        padding: 0;
    }
}
