:root {
    --primary: #13325e;
    --secondary: #ea131f;
    --accent: #16a34a;
    --primary-light: #1f4a83;
    --primary-dark: #0b2245;
    --secondary-light: #ff4d57;
    --white: #ffffff;
    --light-bg: #f4f7fc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: #dbe2ec;
    --card-shadow: 0 6px 24px rgba(19, 50, 94, 0.1);
    --card-shadow-hover: 0 14px 40px rgba(19, 50, 94, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(234, 19, 31, 0.35);
    transition: transform 0.3s;
}

.back-to-top:hover { transform: translateY(-3px); }
.back-to-top.show { display: flex; }

.fix-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.offcanvas__info {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 30px 24px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    pointer-events: all;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(19, 50, 94, 0.35);
}

.offcanvas__info.active { left: 0; }

.offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 34, 69, 0.62);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.offcanvas__overlay.active {
    opacity: 1;
    pointer-events: all;
}

.offcanvas__logo img {
    height: 42px;
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
}

.offcanvas__close button {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas__close button:hover { background: var(--secondary); }
.offcanvas__info .nav-links { list-style: none; margin: 24px 0; }
.offcanvas__info .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.offcanvas__info .nav-links a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}

.offcanvas__info .nav-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, #b70c17 100%);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(234, 19, 31, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 19, 31, 0.45);
    color: #fff;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: all 0.25s;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: #fff;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(19, 50, 94, 0.08);
    transition: box-shadow 0.3s;
}

.navbar-custom.scrolled { box-shadow: 0 4px 30px rgba(19, 50, 94, 0.16); }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 24px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(19, 50, 94, 0.12);
}

.navbar-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.navbar-nav-links a {
    display: block;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.navbar-nav-links a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger-btn {
    display: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    color: var(--primary);
}

.hamburger-btn:hover { background: var(--light-bg); }

@media (max-width: 991px) {
    .navbar-nav-links { display: none; }
    .hamburger-btn { display: flex; align-items: center; justify-content: center; font-size: 22px; }
    .navbar-actions .btn-outline-custom { display: none; }
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 19, 31, 0.2) 0%, transparent 70%);
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.16) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #ff6d75, #ffd0d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-stat .num { font-size: 24px; font-weight: 800; color: #fff; }
.hero-stat .label { font-size: 12px; color: rgba(255, 255, 255, 0.62); font-weight: 500; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-phone-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px;
    max-width: 340px;
    width: 100%;
}

.hero-phone-card .card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-phone-card .card-title { color: rgba(255, 255, 255, 0.72); font-size: 13px; font-weight: 500; }
.hero-phone-card .card-balance { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.hero-phone-card .card-sub { color: rgba(255, 255, 255, 0.52); font-size: 12px; }
.hero-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }

.hero-service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-service-item:hover { background: rgba(255, 255, 255, 0.18); }

.hero-service-item .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.icon-blue { background: rgba(19, 50, 94, 0.45); color: #95b6ff; }
.icon-red { background: rgba(234, 19, 31, 0.3); color: #ff9299; }
.icon-green { background: rgba(22, 163, 74, 0.3); color: #8cf8b2; }
.icon-orange { background: rgba(255, 165, 0, 0.2); color: #ffd166; }
.hero-service-item .svc-name { color: #fff; font-size: 12px; font-weight: 600; }
.hero-service-item .svc-desc { color: rgba(255, 255, 255, 0.55); font-size: 11px; }

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(19, 50, 94, 0.22);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.floating-badge .fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-badge .fb-text .fb-title { font-size: 11px; font-weight: 700; color: var(--text-dark); }
.floating-badge .fb-text .fb-sub { font-size: 10px; color: var(--text-muted); }
.fb-top { top: 10%; right: -20px; }
.fb-bottom { bottom: 15%; left: -20px; }

@media (max-width: 991px) {
    .fb-top, .fb-bottom { display: none; }
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(19, 50, 94, 0.08), rgba(234, 19, 31, 0.08));
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(19, 50, 94, 0.12);
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.section-subtitle.center { margin: 0 auto; }
.services-section, .how-section { background: var(--light-bg); }

.service-card, .step-card, .feature-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    height: 100%;
}

.service-card { padding: 30px 24px; }
.step-card { padding: 32px 24px; text-align: center; }
.feature-card { overflow: hidden; }

.service-card:hover,
.step-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(19, 50, 94, 0.16);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.svc-blue { background: linear-gradient(135deg, #e8efff, #cadbff); color: var(--primary); }
.svc-red { background: linear-gradient(135deg, #ffe8ea, #ffc4c8); color: var(--secondary); }
.svc-green { background: linear-gradient(135deg, #e5f8ee, #b8ebca); color: var(--accent); }
.svc-orange { background: linear-gradient(135deg, #fff4e5, #ffe0b2); color: #e67e00; }
.svc-purple { background: linear-gradient(135deg, #f0e8ff, #d9c5ff); color: #6d28d9; }
.service-card h4, .feature-card h4, .step-card h5 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-card p, .feature-card p, .step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-card p, .feature-card p { margin-bottom: 16px; }

.service-card .card-link,
.feature-card .feature-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link:hover { gap: 10px; }
.feature-card .feature-link:hover { color: var(--secondary); }

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.stat-item { text-align: center; padding: 10px; }
.stat-item .num { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-item .num span { color: var(--secondary); }
.stat-item .lbl { font-size: 13px; color: rgba(255, 255, 255, 0.68); font-weight: 500; margin-top: 6px; }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; width: 100%; object-fit: cover; }

.about-accent-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary), #b70c17);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(234, 19, 31, 0.35);
}

.about-accent-card .num { font-size: 28px; font-weight: 900; }
.about-accent-card .lbl { font-size: 12px; opacity: 0.85; }
.about-check-list { list-style: none; margin: 20px 0; }

.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-check-list li .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background: linear-gradient(135deg, var(--accent), #128640);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .feature-img { height: 200px; overflow: hidden; }
.feature-card .feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-card .feature-body { padding: 24px; }

.feature-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 19, 31, 0.22) 0%, transparent 70%);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.18) 0%, transparent 70%);
}

.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: rgba(255, 255, 255, 0.75); margin-bottom: 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.footer-section { background: var(--primary-dark); padding: 70px 0 0; }
.footer-logo img { height: 46px; background: #fff; border-radius: 10px; padding: 5px 10px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255, 255, 255, 0.56); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.footer-heading { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #fff; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }

.footer-contact-item .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(234, 19, 31, 0.2);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-contact-item .fc-label { font-size: 11px; color: rgba(255, 255, 255, 0.45); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.footer-contact-item .fc-value { font-size: 14px; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.footer-contact-item .fc-value a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.footer-contact-item .fc-value a:hover { color: #fff; }

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.42); }
.footer-bottom .footer-badges { display: flex; gap: 8px; }
.footer-badge { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.5); font-size: 11px; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1); }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.networks-strip {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.networks-strip .strip-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.networks-strip .networks-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.networks-strip .networks-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.2s;
}

.networks-strip .networks-logos img:hover { filter: grayscale(0%); }

@media (max-width: 767px) {
    .hero-section { padding: 110px 0 60px; min-height: auto; }
    .hero-phone-card { margin-top: 40px; }
    .about-accent-card { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
