@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #0057FF;
    --blue-dark: #003DD4;
    --blue-light: #EEF3FF;
    --orange: #FF6B00;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --success: #16a34a;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a,
button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

/* --- TOPBAR --- */
.topbar {
    background: var(--blue);
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.topbar a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* --- HEADER --- */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 32px;
    margin-right: auto;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.2s;
}

nav a:hover {
    color: var(--text);
}

nav a:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cabinet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.btn-cabinet:hover {
    background: var(--blue-light);
    color: var(--blue);
    border-color: var(--blue);
}

/* --- BUTTONS --- */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--blue);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
}

.btn-main:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 87, 255, 0.4);
}

.btn-main.big {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.btn-ghost.big {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(5, 15, 40, 0.92) 40%, rgba(5, 15, 40, 0.55) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    color: white;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 87, 255, 0.25);
    border: 1px solid rgba(0, 87, 255, 0.6);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: normal;
    color: #60a5fa;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-item i {
    color: #60a5fa;
}

.trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- CONTAINER --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- STATS --- */
.stats-section {
    background: var(--text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 50px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.stat-num sup {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.srv-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--img) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--border);
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.srv-big {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 660px;
}

.srv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 15, 40, 0.95) 10%, rgba(5, 15, 40, 0.3) 60%, transparent 100%);
    transition: 0.4s;
}

.srv-card:hover .srv-overlay {
    background: linear-gradient(to top, rgba(0, 50, 150, 0.9) 10%, rgba(0, 30, 90, 0.4) 60%, transparent 100%);
}

.srv-content {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s;
}

.srv-card:hover .srv-icon-wrap {
    background: var(--blue);
}

.srv-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.srv-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.srv-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    padding: 6px 14px;
    background: var(--blue);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.srv-cta-card {
    background: var(--blue-light) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.srv-cta-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.srv-cta-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* --- HOW WE WORK --- */
.howwork-section {
    background: var(--bg-alt);
}

.steps-grid {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.step-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--blue);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card:hover .step-num {
    color: var(--blue);
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.3rem;
    color: var(--blue);
    padding: 0 20px;
    flex-shrink: 0;
}

.bigphoto-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.bigphoto {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bigphoto-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 60px;
    background: linear-gradient(to top, rgba(5, 15, 40, 0.95) 0%, transparent 100%);
    color: white;
}

.bigphoto-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bigphoto-caption p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

/* --- REVIEWS --- */
.reviews-section {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-alt);
    transition: 0.3s;
}

.review-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--blue);
}

.stars {
    color: #F59E0B;
    margin-bottom: 16px;
}

.review-card>p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer strong {
    font-size: 0.95rem;
}

.reviewer small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: var(--bg-alt);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.text-blue {
    color: var(--blue);
}

.contact-left p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.contact-info-item i {
    width: 20px;
    color: var(--blue);
    text-align: center;
}

.contact-info-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--blue);
}

.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.25s;
    color: white;
}

.soc-btn.tg {
    background: #229ED9;
}

.soc-btn.vk {
    background: #4C75A3;
}

.soc-btn.wa {
    background: #25D366;
}

.soc-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* CONTACT FORM */
.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

input,
textarea,
select {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-alt);
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 12px;
    justify-content: center;
    margin-top: 8px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* --- FOOTER --- */
footer {
    background: var(--text);
    color: white;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left .logo {
    color: white;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-left p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-socials h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.s-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
}

.s-ico:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- STICKY CTA --- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 12px 20px;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    gap: 12px;
}

.sticky-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: 0.2s;
}

.sticky-call:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.sticky-order {
    flex: 2;
    justify-content: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .srv-big {
        grid-column: span 2;
        min-height: 400px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .srv-big {
        grid-column: span 1;
        min-height: 350px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .trust-sep {
        display: none;
    }

    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }
}

/* --- HERO 2-COLUMN LAYOUT --- */
.hero-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Override old single-column constraint */
.hero-content {
    max-width: 100%;
    color: white;
}

/* --- HERO VISUAL PANEL (right) --- */
.hero-visual-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px;
    z-index: 10;
}

.hvp-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    font-weight: 700;
}

.hvp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.hvp-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.hvp-card:hover {
    transform: scale(1.03);
    border-color: rgba(96, 165, 250, 0.5);
}

.hvp-img {
    height: 90px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    transition: filter 0.3s;
}

.hvp-card:hover .hvp-img {
    filter: brightness(0.9);
}

.hvp-label {
    padding: 8px 12px;
    background: rgba(5, 15, 40, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hvp-label i {
    color: #60a5fa;
    font-size: 0.8rem;
}

.hvp-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.5), rgba(0, 87, 255, 0.15));
    border: 1px solid rgba(0, 87, 255, 0.45);
    border-radius: 14px;
    padding: 16px 20px;
}

.hvp-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    flex-shrink: 0;
    line-height: 1;
}

.hvp-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* --- SERVICES CTA BANNER --- */
.services-cta-banner {
    margin-top: 20px;
    background: linear-gradient(135deg, #0057FF 0%, #003ADD 100%);
    border-radius: 20px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 87, 255, 0.25);
}

.scb-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.scb-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.scb-left>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scb-left strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.scb-left span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.scb-btn {
    background: white !important;
    color: var(--blue) !important;
    box-shadow: none !important;
    flex-shrink: 0;
    white-space: nowrap;
}

.scb-btn:hover {
    background: #f0f5ff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 1100px) {
    .hero-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-panel {
        display: none;
    }

    .services-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
    }

    .scb-btn {
        width: 100%;
        justify-content: center;
    }
}