/* ============================================================
   Suacua Theme — main.css
   Design system: sc-* prefix
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
    --sc-blue:        #0b2f4a;
    --sc-blue-2:      #14506f;
    --sc-blue-light:  #1a6494;
    --sc-orange:      #f47721;
    --sc-orange-dark: #d95f08;
    --sc-yellow:      #ffc043;
    --sc-ink:         #17212b;
    --sc-muted:       #5d6b78;
    --sc-line:        #dce5ec;
    --sc-soft:        #f3f7fa;
    --sc-white:       #fff;
    --sc-radius:      10px;
    --sc-shadow:      0 4px 6px -1px rgba(11,47,74,.07), 0 12px 32px rgba(11,47,74,.10);
    --sc-shadow-lg:   0 20px 54px rgba(11,47,74,.16);
    --sc-trans:       200ms cubic-bezier(0.4, 0, 0.2, 1);
    --sc-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --sc-font-head:   'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html, body.sc-body {
    overflow-x: hidden;
    max-width: 100%;
}

body.sc-body {
    font-family: var(--sc-font);
    color: var(--sc-ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.sc-body a {
    color: inherit;
    text-decoration: none;
}

body.sc-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.sc-body h1,
body.sc-body h2,
body.sc-body h3,
body.sc-body h4 {
    text-wrap: balance;
    font-optical-sizing: auto;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.sc-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.sc-narrow {
    max-width: 820px;
}

.sc-wide {
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.sc-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(220, 229, 236, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(11, 47, 74, .07);
}

/* Topbar (kept for compat, hidden by default) */
.sc-topbar { display: none; }

/* ── Main nav row — 3-col: brand | nav center | hotline ── */
.sc-nav {
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
}

/* ── Brand ── */
.sc-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
    justify-self: start;
}

.sc-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
    color: #fff;
    border-radius: 10px;
    font-family: var(--sc-font-head);
    font-weight: 900;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(244, 119, 33, .32);
    letter-spacing: -0.02em;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans);
}

.sc-brand:hover .sc-brand-mark {
    transform: rotate(-4deg) scale(1.06);
    box-shadow: 0 8px 24px rgba(244, 119, 33, .44);
}

.sc-brand strong {
    display: block;
    font-family: var(--sc-font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--sc-blue);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.sc-brand small {
    display: block;
    color: var(--sc-muted);
    font-size: 11.5px;
    margin-top: 2px;
    font-weight: 500;
}

/* Footer brand variant */
.sc-brand-footer strong { color: #fff; }
.sc-brand-footer small  { color: rgba(255, 255, 255, .52); }

/* ── Nav menu — cột giữa, căn tâm ── */
.sc-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc-menu ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.sc-menu a,
.sc-menu > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 15px;
    color: var(--sc-muted);
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 0;
    transition: color var(--sc-trans);
    letter-spacing: 0.005em;
    white-space: nowrap;
}

/* Animated underline */
.sc-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 15px;
    right: 15px;
    height: 2px;
    border-radius: 2px;
    background: var(--sc-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sc-menu a:hover::after {
    transform: scaleX(1);
}

/* Active / current page */
.sc-menu .current-menu-item > a,
.sc-menu .current-page-ancestor > a {
    color: var(--sc-blue);
    font-weight: 700;
}

.sc-menu .current-menu-item > a::after,
.sc-menu .current-page-ancestor > a::after {
    transform: scaleX(1);
    background: var(--sc-orange);
}

/* ── Hotline CTA — cột phải, căn phải ── */
.sc-hotline {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 158px;
    box-shadow: 0 6px 20px rgba(244, 119, 33, .28);
    text-decoration: none;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer line */
.sc-hotline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .35);
}

.sc-hotline:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(244, 119, 33, .40);
}

.sc-hotline span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.85;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.sc-hotline strong {
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
    font-family: var(--sc-font-head);
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* ── Mobile menu toggle ── */
.sc-menu-toggle {
    display: none;
    border: 1.5px solid var(--sc-line);
    background: #fff;
    border-radius: 9px;
    padding: 9px 14px;
    font-weight: 700;
    color: var(--sc-blue);
    cursor: pointer;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    transition: background var(--sc-trans), border-color var(--sc-trans), color var(--sc-trans);
    font-family: var(--sc-font);
}

.sc-menu-toggle:hover {
    background: var(--sc-soft);
    border-color: var(--sc-blue);
    color: var(--sc-blue);
}

/* Mobile quick links bar */
.sc-mobile-links {
    display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.sc-main {
    overflow: hidden;
}

.sc-hero {
    background:
        linear-gradient(135deg,
            rgba(11,47,74,.97) 0%,
            rgba(20,80,111,.92) 50%,
            rgba(244,119,33,.80) 100%),
        repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,.04) 48px 50px),
        repeating-linear-gradient(0deg,  transparent 0 48px, rgba(255,255,255,.04) 48px 50px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 78% 55%, rgba(244,119,33,.18) 0%, transparent 70%);
    pointer-events: none;
}

.sc-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    align-items: stretch;
    padding: 80px 0;
}

.sc-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Hero photo visual ── */
.sc-hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, .48),
        0 0 0 1px rgba(255, 255, 255, .13);
    align-self: stretch;
}

.sc-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Floating info badge on the photo */
.sc-hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .96);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sc-hero-badge-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.sc-hero-badge strong {
    display: block;
    font-family: var(--sc-font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--sc-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.sc-hero-badge span {
    display: block;
    font-size: 12px;
    color: var(--sc-muted);
    margin-top: 2px;
    font-weight: 500;
}

/* Eyebrow label */
.sc-eyebrow,
.sc-section-head span {
    display: inline-flex;
    color: var(--sc-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 12px;
}

.sc-hero .sc-eyebrow,
.sc-page-hero .sc-eyebrow {
    color: var(--sc-yellow);
}

/* Hero headings */
.sc-hero h1,
.sc-page-hero h1 {
    font-family: var(--sc-font-head);
    font-size: clamp(34px, 5.2vw, 66px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    max-width: 820px;
}

.sc-hero p,
.sc-page-hero p {
    font-size: clamp(16px, 1.7vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 0 32px;
    line-height: 1.65;
}

/* Trust badges */
.sc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.sc-trust-row span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 7px 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

/* Hero panel (right side stats) */
.sc-hero-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 28px 56px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sc-repair-visual {
    min-height: 290px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.sc-door-frame {
    position: absolute;
    inset: 28px 52px;
    border: 10px solid rgba(255, 255, 255, 0.88);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
}

.sc-door-frame div {
    background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.07));
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.sc-tool-card {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: #fff;
    color: var(--sc-blue);
    padding: 11px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(0,0,0,.22);
}

.sc-hero-panel ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.sc-hero-panel li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sc-hero-panel strong {
    color: var(--sc-yellow);
    font-size: 22px;
    font-weight: 900;
    font-family: var(--sc-font-head);
    letter-spacing: -0.02em;
}

.sc-hero-panel span {
    color: rgba(255, 255, 255, 0.78);
    text-align: right;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 10px;
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans), background var(--sc-trans), border-color var(--sc-trans);
    letter-spacing: 0.01em;
    text-decoration: none;
}

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

.sc-btn-primary {
    background: linear-gradient(135deg, var(--sc-orange), var(--sc-orange-dark));
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(244,119,33,.30);
}

.sc-btn-primary:hover {
    box-shadow: 0 14px 32px rgba(244,119,33,.42);
}

.sc-btn-secondary {
    background: #fff;
    color: var(--sc-blue) !important;
    border-color: var(--sc-line);
    box-shadow: 0 2px 8px rgba(11,47,74,.07);
}

.sc-btn-secondary:hover {
    border-color: rgba(11,47,74,.4);
    box-shadow: 0 6px 18px rgba(11,47,74,.14);
}

.sc-btn-light {
    background: rgba(255,255,255,.96);
    color: var(--sc-blue) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.16);
}

.sc-btn-light:hover {
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
.sc-section {
    padding: 88px 0;
}

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

.sc-dark {
    background: var(--sc-blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sc-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(20,100,148,.4) 0%, transparent 65%);
    pointer-events: none;
}

.sc-dark h2 {
    font-family: var(--sc-font-head);
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}

.sc-dark p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 680px;
    line-height: 1.65;
}

/* Section title block */
.sc-section-head {
    max-width: 760px;
    margin: 0 0 44px;
}

.sc-section-head h2 {
    font-family: var(--sc-font-head);
    margin: 0 0 12px;
    color: var(--sc-blue);
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.sc-section-head p {
    color: var(--sc-muted);
    font-size: 18px;
    margin: 0;
    line-height: 1.65;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.sc-card-grid {
    display: grid;
    gap: 20px;
}

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

.sc-service-card {
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 12px;
    padding: 26px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans), border-color var(--sc-trans);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: var(--sc-ink);
}

.sc-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sc-orange), var(--sc-yellow));
    opacity: 0;
    transition: opacity var(--sc-trans);
}

.sc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sc-shadow-lg);
    border-color: rgba(244, 119, 33, 0.28);
}

.sc-service-card:hover::after {
    opacity: 1;
}

.sc-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff3ea, #ffe0ca);
    color: var(--sc-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244,119,33,.14);
}

.sc-service-card h2,
.sc-service-card h3 {
    font-family: var(--sc-font-head);
    margin: 4px 0 0;
    color: var(--sc-blue);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.sc-service-card p {
    margin: 0;
    color: var(--sc-muted);
    font-size: 14.5px;
    line-height: 1.6;
    flex: 1;
}

.sc-service-card strong {
    margin-top: auto;
    color: var(--sc-orange);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-top: 4px;
}

/* ============================================================
   SPLIT LAYOUT (two column grid)
   ============================================================ */
.sc-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 52px;
    align-items: start;
}

/* ============================================================
   CHECK LIST
   ============================================================ */
.sc-check-list {
    display: grid;
    gap: 10px;
}

.sc-check-list div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--sc-ink);
    font-weight: 600;
    font-size: 15px;
    transition: border-color var(--sc-trans), box-shadow var(--sc-trans);
}

.sc-check-list div:hover {
    border-color: rgba(244, 119, 33, 0.28);
    box-shadow: 0 4px 16px rgba(244,119,33,.07);
}

.sc-check-list span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sc-orange), var(--sc-orange-dark));
    color: #fff;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ============================================================
   PRICE BOX
   ============================================================ */
.sc-price-box {
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    position: relative;
}

.sc-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-orange), var(--sc-yellow));
}

.sc-price-box h2,
.sc-price-box h3 {
    font-family: var(--sc-font-head);
    color: var(--sc-blue);
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sc-price-box table {
    width: 100%;
    border-collapse: collapse;
    min-width: 260px;
}

.sc-price-box td,
.sc-price-box th {
    padding: 11px 8px;
    border-bottom: 1px solid var(--sc-line);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    color: var(--sc-ink);
}

.sc-price-box td:last-child,
.sc-price-box th:last-child {
    text-align: right;
    color: var(--sc-orange);
    font-weight: 800;
}

.sc-price-box tr:last-child td {
    border-bottom: none;
}

.sc-price-box tr:hover td {
    background: var(--sc-soft);
}

.sc-price-box p {
    color: var(--sc-muted);
    margin: 18px 0 0;
    font-size: 14px;
}

.sc-price-box a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--sc-orange);
    font-weight: 800;
    font-size: 14px;
    gap: 4px;
    align-items: center;
    transition: color var(--sc-trans);
}

.sc-price-box a:hover {
    color: var(--sc-orange-dark);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
/* ── Process timeline ── */
.sc-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    padding-top: 28px; /* room for badge circles above */
}

/* Horizontal connector line through badge centers */
.sc-process::before {
    content: '';
    position: absolute;
    top: 28px; /* = half of 56px badge */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sc-orange) 0%, var(--sc-blue) 100%);
    z-index: 0;
}

.sc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 84px 20px 0;
    position: relative;
    transition: transform var(--sc-trans);
}

.sc-step:hover {
    transform: translateY(-3px);
}

.sc-step-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
    color: #fff;
    font-family: var(--sc-font-head);
    font-weight: 900;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(244, 119, 33, .42);
    z-index: 2;
    border: 3px solid var(--sc-soft); /* matches section bg, punches through the line */
    letter-spacing: -0.02em;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans);
}

.sc-step:hover .sc-step-num {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(244, 119, 33, .56);
}

.sc-step h3 {
    font-family: var(--sc-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--sc-blue);
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.sc-step p {
    margin: 0;
    color: var(--sc-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ============================================================
   AREA LIST
   ============================================================ */
.sc-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    position: relative;
}

.sc-area-list span {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: background var(--sc-trans);
}

.sc-area-list span:hover {
    background: rgba(255, 255, 255, 0.22);
}

.sc-area-list-light span {
    background: #fff;
    color: var(--sc-blue);
    border-color: var(--sc-line);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.sc-faq-list {
    display: grid;
    gap: 10px;
}

.sc-faq-list details {
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color var(--sc-trans), box-shadow var(--sc-trans);
}

.sc-faq-list details[open] {
    border-color: rgba(244, 119, 33, 0.3);
    box-shadow: 0 4px 18px rgba(244,119,33,.07);
}

.sc-faq-list summary {
    cursor: pointer;
    padding: 17px 20px;
    font-weight: 700;
    color: var(--sc-blue);
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    user-select: none;
    line-height: 1.4;
}

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

.sc-faq-list summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--sc-orange);
    flex-shrink: 0;
    transition: transform var(--sc-trans);
    line-height: 1;
    margin-top: 1px;
}

.sc-faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.sc-faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--sc-muted);
    font-size: 14.5px;
    line-height: 1.72;
}

/* ============================================================
   NEWS / BLOG BOX
   ============================================================ */
.sc-news-box {
    background: linear-gradient(150deg, var(--sc-blue) 0%, var(--sc-blue-2) 100%);
    color: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    position: relative;
}

.sc-news-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 10%, rgba(244,119,33,.15) 0%, transparent 65%);
    pointer-events: none;
}

.sc-news-box h3 {
    font-family: var(--sc-font-head);
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.sc-news-box a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transition: opacity var(--sc-trans);
    position: relative;
}

.sc-news-box a:hover {
    opacity: 0.82;
}

.sc-news-box strong {
    display: block;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.sc-news-box span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   FINAL CTA / FOOTER CTA
   ============================================================ */
.sc-final-cta,
.sc-footer-cta {
    background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sc-final-cta::before,
.sc-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 32px,
            rgba(255,255,255,.04) 32px,
            rgba(255,255,255,.04) 34px
        );
    pointer-events: none;
}

.sc-final-cta .sc-container,
.sc-footer-cta .sc-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sc-final-cta h2,
.sc-footer-cta h2 {
    font-family: var(--sc-font-head);
    margin: 0 0 8px;
    font-size: clamp(24px, 3.2vw, 40px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.sc-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.sc-footer-cta span {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.85;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.sc-page-hero {
    background: linear-gradient(135deg,
        var(--sc-blue) 0%,
        var(--sc-blue-2) 55%,
        var(--sc-blue-light) 100%);
    color: #fff;
    padding: 72px 0 58px;
    position: relative;
    overflow: hidden;
}

.sc-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 85% 50%, rgba(244,119,33,.18) 0%, transparent 65%),
        repeating-linear-gradient(90deg, transparent 0 52px, rgba(255,255,255,.03) 52px 54px);
    pointer-events: none;
}

.sc-page-hero .sc-container {
    position: relative;
    z-index: 1;
}

.sc-page-hero p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 0;
    font-size: 18px;
    max-width: 680px;
    line-height: 1.65;
}

.sc-page-content {
    padding-top: 36px;
}

.sc-inline-cta {
    margin-top: 36px;
    background: var(--sc-soft);
    border: 1.5px solid var(--sc-line);
    border-radius: 12px;
    padding: 26px;
}

.sc-inline-cta h2 {
    margin-top: 0;
    color: var(--sc-blue);
    font-family: var(--sc-font-head);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Breadcrumb nav in page hero */
.sc-page-hero nav,
.sc-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.sc-page-hero nav a,
.sc-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--sc-trans);
}

.sc-page-hero nav a:hover,
.sc-breadcrumb a:hover {
    color: var(--sc-yellow);
}

.sc-page-hero nav span,
.sc-breadcrumb span {
    opacity: 0.5;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.sc-contact-form {
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--sc-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sc-contact-form label {
    display: grid;
    gap: 7px;
    color: var(--sc-blue);
    font-weight: 700;
    font-size: 14px;
}

.sc-contact-form input,
.sc-contact-form select,
.sc-contact-form textarea {
    width: 100%;
    border: 1.5px solid var(--sc-line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    color: var(--sc-ink);
    background: #fff;
    transition: border-color var(--sc-trans), box-shadow var(--sc-trans);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.sc-contact-form input:focus,
.sc-contact-form select:focus,
.sc-contact-form textarea:focus {
    border-color: var(--sc-orange);
    box-shadow: 0 0 0 3px rgba(244, 119, 33, 0.14);
}

.sc-contact-form textarea,
.sc-contact-form button,
.sc-contact-form label:nth-of-type(3),
.sc-contact-form label:nth-of-type(4) {
    grid-column: 1 / -1;
}

.sc-hp {
    display: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — open editorial layout
   ============================================================ */
.sc-footer {
    background: #07192a;
    color: rgba(255, 255, 255, .65);
    padding: 72px 0 0;
}

/* ── Top row: brand + contact ── */
.sc-foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 52px;
}

.sc-foot-brand {
    max-width: 420px;
}

.sc-foot-brand .sc-brand {
    margin-bottom: 20px;
    display: inline-flex;
}

.sc-foot-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .52);
    margin: 0;
}

/* Contact block — right side */
.sc-foot-contact {
    text-align: right;
    flex-shrink: 0;
}

.sc-foot-phone {
    display: block;
    font-family: var(--sc-font-head);
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 900;
    color: var(--sc-yellow);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 10px;
    transition: color var(--sc-trans);
}

.sc-foot-phone:hover {
    color: var(--sc-orange);
}

.sc-foot-availability {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin: 0 0 16px;
    font-weight: 500;
}

.sc-foot-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.sc-foot-meta a {
    color: rgba(255, 255, 255, .62);
    transition: color var(--sc-trans);
}

.sc-foot-meta a:hover {
    color: var(--sc-yellow);
}

/* ── Horizontal rule ── */
.sc-foot-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 0 0 44px;
}

/* ── Link rows — flowing horizontal, no columns ── */
.sc-foot-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 52px;
}

.sc-foot-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
}

.sc-foot-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sc-orange);
    margin-right: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.sc-foot-row a {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .58);
    transition: color var(--sc-trans);
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    line-height: 1.2;
    white-space: nowrap;
}

.sc-foot-row a:last-child {
    border-right: none;
}

.sc-foot-row a:first-of-type {
    padding-left: 0;
}

.sc-foot-row a:hover {
    color: var(--sc-yellow);
}

/* ── Bottom bar ── */
.sc-foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .3);
}

.sc-foot-bottom a {
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    font-size: 13px;
    transition: color var(--sc-trans);
    letter-spacing: 0.01em;
}

.sc-foot-bottom a:hover {
    color: var(--sc-yellow);
}

/* keep brand mark white in footer */
.sc-brand-footer .sc-brand-mark {
    background: linear-gradient(135deg, var(--sc-orange), var(--sc-orange-dark));
}

.sc-brand-footer strong {
    color: #fff;
}

.sc-brand-footer small {
    color: rgba(255, 255, 255, .52);
}

/* ============================================================
   FLOATING CALL / ZALO ACTIONS
   ============================================================ */
.sc-floating-actions {
    position: fixed;
    z-index: 120;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.sc-float-call,
.sc-float-zalo {
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    font-weight: 800;
    text-decoration: none;
    transition: transform var(--sc-trans), box-shadow var(--sc-trans);
    border: none;
}

.sc-float-call:hover,
.sc-float-zalo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,.28);
}

.sc-float-call {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--sc-orange), var(--sc-orange-dark));
    padding: 11px 20px;
    min-width: 158px;
    box-shadow: 0 8px 24px rgba(244,119,33,.38);
}

.sc-float-call span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.88;
    font-weight: 700;
}

.sc-float-call strong {
    font-size: 17px;
    line-height: 1.2;
    font-family: var(--sc-font-head);
}

.sc-float-zalo {
    background: #0068FF;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0,104,255,.38);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--sc-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(11,47,74,.35);
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9000;
    font-size: 18px;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background: var(--sc-orange);
    transform: translateY(-2px) scale(1.05);
}

/* ============================================================
   PROSE (article body text)
   ============================================================ */
.suacua-prose {
    color: var(--sc-ink);
    font-size: 17px;
    line-height: 1.78;
    max-width: none;
}

.suacua-prose h2 {
    font-family: var(--sc-font-head);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--sc-blue);
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.suacua-prose h3 {
    font-family: var(--sc-font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sc-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.suacua-prose p {
    color: var(--sc-muted);
    margin-bottom: 1.25rem;
}

.suacua-prose ul,
.suacua-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.suacua-prose li {
    margin-bottom: 0.4rem;
    color: var(--sc-muted);
}

.suacua-prose a {
    color: var(--sc-orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--sc-trans);
}

.suacua-prose a:hover {
    color: var(--sc-orange-dark);
}

.suacua-prose blockquote {
    border-left: 4px solid var(--sc-orange);
    padding: 1.25rem 1.5rem;
    background: var(--sc-soft);
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-family: var(--sc-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sc-blue);
}

.suacua-prose img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.suacua-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 14.5px;
    display: block;
    overflow-x: auto;
}

.suacua-prose table th {
    background: var(--sc-blue);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.suacua-prose table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--sc-line);
}

.suacua-prose table tr:hover td {
    background: var(--sc-soft);
}

/* ============================================================
   UTILITY / MISC
   ============================================================ */
/* Tag chips */
.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--sc-soft);
    color: var(--sc-muted);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background var(--sc-trans), color var(--sc-trans);
    text-decoration: none;
}

.tag-chip:hover {
    background: rgba(244, 119, 33, 0.12);
    color: var(--sc-orange);
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 229, 236, 0.5);
}

/* Table of contents */
.toc-wrapper {
    background: var(--sc-soft);
    border-left: 4px solid var(--sc-orange);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
}

.toc-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sc-muted);
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--sc-muted);
    text-decoration: none;
    transition: color var(--sc-trans);
    display: block;
}

.toc-link:hover,
.toc-link.toc-active {
    color: var(--sc-orange);
    font-weight: 700;
}

/* Before/After comparison slider */
.ba-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-after {
    clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ba-pos, 50%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ba-line {
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 12px rgba(0,0,0,.4);
}

.ba-drag-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    color: var(--sc-orange);
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

/* Cookie consent */
.cookie-consent-bar {
    background: rgba(7, 25, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Mobile menu animation */
@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1060px)
   ============================================================ */
@media (max-width: 1060px) {
    .sc-topbar-inner span:last-child {
        display: none;
    }

    /* Tablet: drop grid, switch back to flex */
    .sc-nav {
        display: flex;
        flex-wrap: wrap;
        min-height: 64px;
        padding: 10px 0;
        align-items: center;
        gap: 8px;
    }

    .sc-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        order: 2;
    }

    .sc-hotline {
        display: none;
    }

    /* Menu collapses: controlled by aria-hidden via JS */
    .sc-menu {
        order: 5;
        width: 100%;
        margin: 0;
    }

    .sc-menu[aria-hidden="true"] {
        display: none;
    }

    .sc-menu[aria-hidden="false"] {
        display: block;
        animation: mobileMenuIn 0.22s ease forwards;
    }

    .sc-menu ul {
        display: grid;
        gap: 4px;
        padding: 10px 0 6px;
        border-top: 1px solid var(--sc-line);
    }

    .sc-menu a,
    .sc-menu > a {
        display: flex;
        width: 100%;
        padding: 11px 4px;
        border-radius: 0;
        font-size: 15px;
        border-bottom: 1px solid var(--sc-line);
    }

    .sc-menu ul li:last-child a {
        border-bottom: none;
    }

    /* Layouts */
    .sc-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 60px 0;
        gap: 36px;
        align-items: start;
    }

    .sc-hero-copy {
        justify-content: flex-start;
    }

    .sc-hero-visual {
        min-height: 380px;
        max-height: 480px;
        border-radius: 16px;
    }

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

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

    /* Process: drop connector line, switch to card grid */
    .sc-process {
        grid-template-columns: repeat(3, 1fr);
        padding-top: 0;
        gap: 16px;
    }

    .sc-process::before {
        display: none;
    }

    .sc-step {
        padding: 28px 20px 24px;
        background: #fff;
        border: 1.5px solid var(--sc-line);
        border-radius: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .sc-step-num {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 44px;
        height: 44px;
        font-size: 14px;
        margin-bottom: 18px;
        border: none;
        box-shadow: 0 6px 16px rgba(244, 119, 33, .38);
    }

    .sc-step:hover .sc-step-num {
        transform: scale(1.06);
    }

    /* Footer: stack brand + contact vertically */
    .sc-foot-top {
        flex-direction: column;
        gap: 36px;
    }

    .sc-foot-contact {
        text-align: left;
    }

    .sc-foot-phone {
        font-size: 36px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
    html, body.sc-body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .sc-header,
    .sc-main,
    .sc-footer,
    .sc-footer-cta,
    .sc-final-cta {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .sc-container {
        width: auto !important;
        max-width: none !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    .sc-topbar {
        display: none;
    }

    /* Nav: no toggle, always show menu as grid */
    .sc-nav {
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        min-height: 60px;
    }

    .sc-brand {
        flex: 1;
        min-width: 0;
    }

    .sc-brand strong {
        font-size: 17px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
    }

    .sc-brand small {
        font-size: 11px;
    }

    .sc-brand-mark {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .sc-menu-toggle {
        display: none !important;
    }

    .sc-menu,
    .sc-menu[aria-hidden="true"],
    .sc-menu[aria-hidden="false"] {
        display: block !important;
        order: 3;
        width: 100%;
        margin-top: 6px;
    }

    .sc-menu ul {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        border-top: 1px solid var(--sc-line);
        padding: 8px 0 4px;
    }

    .sc-menu a,
    .sc-menu > a {
        min-height: 36px;
        padding: 7px 6px;
        background: var(--sc-soft);
        border-radius: 8px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        border-bottom: none;
        width: 100%;
    }

    /* Hero */
    .sc-hero-grid {
        padding: 42px 0 34px;
        gap: 22px;
    }

    .sc-hero-visual {
        min-height: 280px;
        max-height: 360px;
        border-radius: 12px;
    }

    .sc-hero-badge {
        padding: 10px 14px;
        gap: 10px;
    }

    .sc-hero-badge-icon {
        font-size: 20px;
    }

    .sc-hero-badge strong {
        font-size: 13px;
    }

    .sc-hero-badge span {
        font-size: 11px;
    }

    .sc-hero h1,
    .sc-page-hero h1 {
        font-size: clamp(24px, 8vw, 34px);
        max-width: 100%;
        width: 100%;
    }

    .sc-hero p,
    .sc-page-hero p {
        font-size: 15px;
        max-width: 100%;
        width: 100%;
    }

    .sc-trust-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .sc-trust-row span {
        width: max-content;
        max-width: 100%;
        font-size: 13px;
    }

    .sc-hero-panel {
        padding: 14px;
        overflow: hidden;
    }

    .sc-hero-panel li {
        display: block;
    }

    .sc-hero-panel span {
        text-align: left;
        display: block;
    }

    .sc-repair-visual {
        min-height: 210px;
    }

    .sc-tool-card {
        font-size: 13px;
    }

    /* Sections */
    .sc-section {
        padding: 52px 0;
    }

    .sc-section-head {
        margin-bottom: 28px;
    }

    .sc-section-head h2 {
        font-size: 27px;
    }

    .sc-section-head p {
        font-size: 16px;
    }

    /* Grids → single column */
    .sc-service-grid,
    .sc-footer-grid {
        grid-template-columns: 1fr;
    }

    .sc-service-card {
        min-height: auto;
    }

    /* Process: single col, horizontal badge+text layout */
    .sc-process {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sc-step {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        padding: 16px;
        border-radius: 14px;
    }

    .sc-step-num {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .sc-step h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 4px;
    }

    .sc-step p {
        grid-column: 2;
        grid-row: 2;
    }

    /* Split → single column */
    .sc-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Price box */
    .sc-price-box {
        overflow-x: auto;
        padding: 18px;
    }

    /* Page hero */
    .sc-page-hero {
        padding: 48px 0 40px;
    }

    /* CTA sections */
    .sc-actions,
    .sc-final-cta .sc-container,
    .sc-footer-cta .sc-container {
        flex-direction: column;
        align-items: stretch;
    }

    .sc-btn {
        width: 100%;
    }

    /* Contact form */
    .sc-contact-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .sc-contact-form label {
        grid-column: 1 / -1;
    }

    /* Footer mobile */
    .sc-foot-top {
        gap: 28px;
    }

    .sc-foot-phone {
        font-size: 30px;
    }

    .sc-foot-row {
        row-gap: 8px;
    }

    .sc-foot-row a {
        font-size: 13px;
        padding: 0 10px;
    }

    .sc-foot-bottom {
        padding-bottom: 80px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Floating actions → horizontal bar */
    .sc-floating-actions {
        left: 10px;
        right: 10px;
        bottom: 10px;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
    }

    .sc-float-call {
        flex: 1;
        min-width: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .sc-float-zalo {
        min-width: 72px;
        justify-content: center;
    }

    /* Back to top hidden on mobile (floating bar takes its place) */
    .back-to-top-btn {
        display: none;
    }

    /* Mobile quick links bar */
    .sc-mobile-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 8px 16px 10px;
        background: var(--sc-soft);
        border-bottom: 1px solid var(--sc-line);
    }

    .sc-mobile-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        background: #fff;
        border: 1px solid var(--sc-line);
        border-radius: 8px;
        color: var(--sc-blue);
        font-weight: 700;
        font-size: 11px;
        text-align: center;
        padding: 4px;
        transition: background var(--sc-trans), color var(--sc-trans);
    }

    .sc-mobile-links a:hover {
        background: var(--sc-orange);
        color: #fff;
        border-color: var(--sc-orange);
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .sc-hero h1,
    .sc-page-hero h1 {
        font-size: 22px;
    }

    .sc-repair-visual {
        min-height: 180px;
    }

    .sc-door-frame {
        inset: 22px 36px;
        border-width: 8px;
    }

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

/* ============================================================
   HOMEPAGE REDESIGN — new component classes
   ============================================================ */

/* Hero: em accent + stat panel */
.sc-hero h1 em {
    color: var(--sc-yellow);
    font-style: normal;
}

.sc-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
}

.sc-hero-stat {
    padding: 28px 24px;
    background: rgba(255, 255, 255, .07);
    transition: background var(--sc-trans);
}

.sc-hero-stat:hover {
    background: rgba(255, 255, 255, .13);
}

.sc-hero-stat strong {
    display: block;
    font-family: var(--sc-font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--sc-yellow);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.sc-hero-stat span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
}

/* Outline button (hero secondary CTA) */
.sc-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, .92) !important;
    border: 2px solid rgba(255, 255, 255, .38);
}

.sc-btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .72);
    transform: translateY(-2px);
    box-shadow: none;
}

/* ── USP / Commitment section ── */
.sc-usp-section {
    background: var(--sc-blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sc-usp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 110% 50%, rgba(244, 119, 33, .18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at -10% 50%, rgba(255, 192, 67, .10) 0%, transparent 70%);
    pointer-events: none;
}

.sc-usp-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.sc-usp-left .sc-eyebrow {
    color: var(--sc-yellow);
}

.sc-usp-left h2 {
    font-family: var(--sc-font-head);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.sc-usp-left p {
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sc-usp-items {
    padding-top: 4px;
}

.sc-usp-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    align-items: flex-start;
    transition: background var(--sc-trans);
}

.sc-usp-item:first-child {
    padding-top: 0;
}

.sc-usp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sc-usp-num {
    font-family: var(--sc-font-head);
    font-size: 11px;
    font-weight: 900;
    color: var(--sc-orange);
    letter-spacing: 0.08em;
    min-width: 28px;
    padding-top: 3px;
    line-height: 1;
}

.sc-usp-item h3 {
    font-family: var(--sc-font-head);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sc-usp-item p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ── Price dark box ── */
.sc-price-dark {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(8px);
}

.sc-price-dark h3 {
    font-family: var(--sc-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sc-price-dark table {
    width: 100%;
    border-collapse: collapse;
}

.sc-price-dark tr {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.sc-price-dark tr:last-child {
    border-bottom: none;
}

.sc-price-dark td {
    padding: 11px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    vertical-align: middle;
}

.sc-price-dark td:last-child {
    text-align: right;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* ── Service area split + chip grid ── */
.sc-area-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.sc-area-split > div > h2 {
    margin-bottom: 16px;
}

.sc-area-split > div > p {
    color: var(--sc-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.sc-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sc-area-grid span {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--sc-line);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--sc-blue);
    font-weight: 600;
    font-size: 14px;
    transition: border-color var(--sc-trans), box-shadow var(--sc-trans), transform var(--sc-trans);
}

.sc-area-grid span:hover {
    border-color: var(--sc-orange);
    box-shadow: 0 4px 16px rgba(244, 119, 33, .14);
    transform: translateY(-2px);
}

/* ── FAQ narrow wrap ── */
.sc-faq-wrap {
    max-width: 820px;
    margin-inline: auto;
}

/* ── Centered section head ── */
.sc-section-head--center {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 48px;
}

.sc-section-head--center h2 {
    margin-inline: auto;
}

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */

@media (max-width: 1060px) {
    /* Hero stats: remain 2×2 but slightly smaller */
    .sc-hero-stat {
        padding: 22px 18px;
    }

    /* USP section: stack */
    .sc-usp-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .sc-usp-left h2 {
        font-size: 28px;
    }

    /* Area split: stack */
    .sc-area-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    /* Hero stats: 2×2 remains but shrink padding */
    .sc-hero-stats {
        margin-top: 8px;
    }

    .sc-hero-stat {
        padding: 18px 14px;
    }

    .sc-hero-stat strong {
        font-size: 28px;
    }

    /* USP */
    .sc-usp-grid {
        gap: 32px;
    }

    .sc-usp-item {
        gap: 14px;
        padding: 18px 0;
    }

    /* Price dark */
    .sc-price-dark {
        padding: 20px;
    }

    /* Area grid: single col on very small */
    .sc-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sc-area-grid span {
        font-size: 13px;
        padding: 12px 14px;
    }

    /* Section head center */
    .sc-section-head--center {
        margin-bottom: 32px;
    }
}
