:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --accent-orange: #ff7819;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    --glass-bg: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31,38,135,0.15);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --dark-bg: #31364b;
    --topbar-height: 42px;
    --navbar-height: 72px;
    --header-offset: calc(var(--topbar-height) + var(--navbar-height));
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; font-display: swap; }
body { background: var(--bg-gradient); color: var(--text-dark); overflow-x: hidden; }

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.35s ease, visibility 0.35s ease; pointer-events: none; }
.preloader.fade-out { opacity: 0; visibility: hidden; }
.spinner-wrapper { position: relative; width: 100px; height: 100px; margin: 0 auto; }
.spinner-outer { position: absolute; width: 100%; height: 100%; border: 3px solid transparent; border-top-color: var(--primary-color); border-bottom-color: var(--primary-color); border-radius: 50%; animation: spin 1.5s linear infinite; }
.spinner-inner { position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; border: 3px solid transparent; border-left-color: var(--secondary-color); border-right-color: var(--secondary-color); border-radius: 50%; animation: spin-reverse 1s linear infinite; }
.loader-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.8rem; color: var(--primary-color); animation: pulse 2s ease-in-out infinite; }
.loader-brand { font-size: 1.5rem; letter-spacing: 1px; }
.loader-logo {
    width: 186px;
    height: auto;
    display: block;
}
.loader-line { width: 150px; height: 2px; background: rgba(0,0,0,0.05); border-radius: 10px; position: relative; overflow: hidden; }
.loader-line::after { content: ''; position: absolute; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); animation: loading-line 2s infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(0.9); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }
@keyframes loading-line { to { left: 100%; } }

/* Glassmorphism */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--glass-shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.glass-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px 0 rgba(31,38,135,0.2); }

/* Site header: topbar + navbar */
.site-header {
    z-index: 1030;
    transition: box-shadow 0.35s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}
.site-topbar {
    background: linear-gradient(90deg, #1a2744 0%, var(--dark-bg) 45%, #1e40af 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    max-height: var(--topbar-height);
    overflow: hidden;
}
.site-header.is-scrolled .site-topbar {
    max-height: 0;
    opacity: 0;
    padding: 0;
    border-bottom-width: 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--topbar-height);
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.topbar-center {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.topbar-item i {
    color: var(--accent-orange);
    font-size: 0.75rem;
}
.topbar-item:hover {
    color: #fff;
}
.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}
.topbar-badge i {
    color: #fbbf24;
    font-size: 0.7rem;
}
.topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.topbar-social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.topbar-social-link:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}
.topbar-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.topbar-whatsapp:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}
.topbar-whatsapp i {
    font-size: 1rem;
}

/* Header fluid layout (navbar + topbar aligned) */
.header-fluid {
    padding-left: clamp(1rem, 2.5vw, 2.75rem);
    padding-right: clamp(1rem, 2.5vw, 2.75rem);
}
@media (min-width: 1400px) {
    .header-fluid {
        padding-left: clamp(2rem, 4vw, 3.5rem);
        padding-right: clamp(2rem, 4vw, 3.5rem);
    }
}

/* Navbar */
.site-header .glass-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}
.glass-nav .header-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
@media (min-width: 992px) {
    .glass-nav .nav-link { white-space: nowrap; }
    .glass-nav .navbar-nav {
        gap: 0.15rem;
    }
    .site-logo--nav {
        max-width: min(320px, 28vw);
    }
}
.site-header.is-scrolled .glass-nav {
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 0;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    max-width: 100%;
}
.site-logo-link,
.site-logo-link picture {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.site-logo-link {
    text-decoration: none;
    max-width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-logo-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.site-logo-link--footer { margin-bottom: 0.75rem !important; }
.site-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}
.site-logo--nav {
    height: 56px;
    max-width: min(280px, 58vw);
}
.site-logo--footer {
    height: 62px;
    max-width: min(300px, 100%);
}
.site-logo--preloader {
    height: 50px;
    max-width: min(270px, 88vw);
    animation: preloader-logo-pulse 2s ease-in-out infinite;
}
@keyframes preloader-logo-pulse {
    0%, 100% { opacity: 0.88; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}
.loader-brand { line-height: 0; }
.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.brand-text { color: var(--primary-color); font-size: 1.15rem; }
.brand-ext { color: var(--secondary-color); }
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 4px;
    padding: 8px 12px !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.06);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.nav-order-btn {
    font-size: 0.9rem;
    padding: 8px 22px !important;
}
.phone-link { color: var(--primary-color) !important; font-weight: 600; white-space: nowrap; }
.phone-link:hover { color: var(--secondary-color) !important; background: transparent !important; }
.phone-link.active::after { display: none; }
.navbar-toggler {
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 10px;
    border-radius: 10px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
}

/* Buttons */
.btn-premium { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border: 2px solid transparent; border-radius: 50px; padding: 10px 30px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(124,58,237,0.3); display: inline-flex; align-items: center; justify-content: center; }
.btn-premium:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 6px 20px rgba(124,58,237,0.5); }
.btn-outline-premium { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); border-radius: 50px; padding: 10px 30px; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline-premium:hover { background: var(--primary-color); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 8px 20px !important; font-size: 0.85rem; }

/* Hero Section - Competitor Style */
.hero-section-comp { position: relative; padding: calc(var(--header-offset) + 48px) 0 80px; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: var(--dark-bg); }
.hero-section-comp.has-hero-bg {
    background-image: url('../images/hero-bg.png');
    background-image: image-set(
        url('../images/hero-bg.webp') type('image/webp'),
        url('../images/hero-bg.png') type('image/png')
    );
}
.hero-section-comp.comp-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--header-offset) 0 clamp(1.5rem, 3vh, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
}
.comp-hero .hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(0.75rem, 2vh, 1.5rem) clamp(1.5rem, 4.5vw, 3.5rem);
}
.comp-hero .hero-row {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.comp-hero .hero-content-col,
.comp-hero .hero-form-col {
    padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
    padding-right: clamp(0.5rem, 1.5vw, 1.25rem);
}
.comp-hero .hero-content-comp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.comp-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.comp-hero .hero-eyebrow i { color: var(--accent-orange); font-size: 0.85rem; }
.comp-hero .hero-content-comp .heading {
    font-size: clamp(1.5rem, 2vw + 0.65rem, 2.25rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}
.comp-hero .hero-content-comp .hero-desc {
    font-size: clamp(0.92rem, 0.35vw + 0.85rem, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 1.15rem;
    max-width: 34rem;
}
.comp-hero .hero-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.comp-hero .hero-trust-list li {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.comp-hero .hero-trust-list i { color: #4ade80; font-size: 0.8rem; }
.comp-hero .hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.comp-hero .hero-cta-primary {
    padding: 11px 26px !important;
    font-size: 0.95rem;
}
.comp-hero .btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    transition: all 0.25s ease;
}
.comp-hero .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.comp-hero .hero-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.comp-hero .hero-form-card {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 20px 22px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.28);
}
.comp-hero .hero-form-card .form-title {
    margin-top: -36px;
    padding: 11px 16px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(255, 120, 25, 0.35);
}
.comp-hero .hero-form-card .form-title #discount-text { font-size: 1.15rem; }
.comp-hero .hero-form-card .mcd-form .form-group { margin-bottom: 10px; }
.comp-hero .hero-form-card .mcd-form .form-control,
.comp-hero .hero-form-card .mcd-form .form-select,
.comp-hero .hero-form-card .mcd-form select {
    padding: 9px 13px;
    font-size: 0.88rem;
}
.comp-hero .hero-form-card .form-title {
    box-shadow: 0 6px 16px rgba(255, 120, 25, 0.35);
}
@media (min-width: 992px) {
    .comp-hero .hero-container {
        max-width: 1280px;
        padding-left: clamp(2.5rem, 5vw, 4rem);
        padding-right: clamp(2.5rem, 5vw, 4rem);
    }
    .comp-hero .hero-content-col { padding-right: 2rem; }
    .comp-hero .hero-form-col { padding-left: 1.5rem; justify-content: flex-end; }
    .comp-hero .hero-form-card { margin-left: auto; margin-right: 0; }
    .comp-hero .hero-content-comp { text-align: left; }
    .comp-hero .hero-eyebrow { align-self: flex-start; }
}
@media (min-width: 1400px) {
    .comp-hero .hero-container { max-width: 1320px; }
    .comp-hero .hero-row { max-width: 1140px; }
}
@media (max-width: 991.98px) {
    .comp-hero .hero-container {
        padding-left: clamp(1.25rem, 5vw, 2rem);
        padding-right: clamp(1.25rem, 5vw, 2rem);
    }
    .comp-hero .hero-content-comp { text-align: center; align-items: center; }
    .comp-hero .hero-eyebrow { align-self: center; }
    .comp-hero .hero-content-comp .hero-desc { margin-left: auto; margin-right: auto; }
    .comp-hero .hero-trust-list { justify-content: center; max-width: 420px; margin-left: auto; margin-right: auto; }
    .comp-hero .hero-cta-wrap { justify-content: center; }
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(49,54,75,0.96) 0%, rgba(37,99,235,0.88) 100%); z-index: 1; }
.comp-hero .hero-overlay {
    background: linear-gradient(118deg, rgba(26, 39, 68, 0.94) 0%, rgba(37, 99, 235, 0.82) 52%, rgba(49, 54, 75, 0.92) 100%);
}
.hero-section-comp .container { position: relative; z-index: 2; }
.hero-section-comp--compact {
    padding-top: calc(var(--header-offset) + 2.5rem);
    padding-bottom: 1rem;
    min-height: 0;
}
.hero-section-comp--compact .hero-content-comp--compact {
    padding-top: 0.35rem;
}
.hero-section-comp--compact .hero-content-comp .heading {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.hero-section-comp--compact .hero-content-comp .hero-desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.92;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}
.hero-content-comp .heading { font-size: calc(1.8rem + 1.5vw); font-weight: 700; line-height: 1.2; }
.hero-content-comp .hero-desc { font-size: 1.1rem; line-height: 1.7; opacity: 0.9; }
.hero-box-row { display: flex; gap: 15px; margin-top: 20px; }
.hero-box-col { flex: 1; }
.hbox-2 { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 15px 10px; text-align: center; color: #fff; transition: all 0.3s ease; }
.hbox-2:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.hbox-2 i { font-size: 1.5rem; color: #ff7819; margin-bottom: 8px; }
.hbox-2-txt p { font-size: 0.8rem; font-weight: 600; margin: 0; }

/* Hero Signup Form */
.calculate_order { background: #fff; border-radius: 15px; padding: 25px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.calculate_order .form-title { background: #ff7819; color: #fff; text-align: center; padding: 12px 15px; border-radius: 10px; margin-bottom: 20px; font-weight: 700; font-size: 1rem; margin-top: -40px; }
.calculate_order .form-title #discount-text { font-size: 1.3rem; font-weight: 800; }
.order-form .form-group { margin-bottom: 12px; }
.total_prices { margin: 15px 0; }

/* About Sections */
.about-section { padding: 60px 0; }
.about-section.bg-light { background: #f8f9fa; }

/* About page */
.about-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}
.about-section-head {
    max-width: 620px;
    margin: 0 auto 2.25rem;
}
.about-section-title {
    font-size: clamp(1.45rem, 2vw + 0.5rem, 1.9rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.about-section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-intro {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 2vw, 1.5rem);
    background: #fff;
}
.about-intro-media {
    position: relative;
}
.about-intro-img {
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
    width: 100%;
    height: auto;
    display: block;
}
.about-intro-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.about-intro-badge i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.about-intro-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.2;
}
.about-intro-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}
.about-intro-title {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.about-intro-lead {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.about-intro-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}
.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
}
.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.about-check-list i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.about-stats-strip {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(2rem, 4vw, 3rem);
    margin-top: 0;
}
.about-stat-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(145deg, #fff 0%, rgba(224, 242, 254, 0.85) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.06);
    height: 100%;
}
.about-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}
.about-stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-cards-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.25rem);
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.4) 0%, #fff 100%);
}
.about-cards-grid {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.about-info-card {
    position: relative;
    text-align: center;
    padding: 1.65rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, #fff 0%, rgba(224, 242, 254, 0.9) 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.14);
}
.about-info-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.about-info-card-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
}
.about-info-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
}
.about-info-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}
.about-info-card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.about-values-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.35) 0%, #fff 90%);
}
.about-value-pill {
    text-align: center;
    padding: 1.85rem 1.35rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}
.about-value-pill i {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    color: var(--secondary-color);
    border: 1px solid rgba(124, 58, 237, 0.12);
}
.about-value-pill h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.about-value-pill p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .about-intro {
        padding-bottom: 0.75rem;
    }
    .about-stats-strip {
        padding-top: 0.35rem;
    }
    .about-intro-badge {
        left: auto;
        right: 1rem;
        bottom: 1rem;
    }
    .about-intro-content { text-align: center; }
    .about-check-list { text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 575.98px) {
    .about-intro-badge { position: relative; left: auto; right: auto; bottom: auto; margin: -2rem auto 0; max-width: 100%; }
    .about-stat-value { font-size: 1.25rem; }
}
.welcome-image img, .welcome-img img { border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); max-width: 100%; height: auto; }
.main-title { font-size: 2rem; font-weight: 700; color: var(--primary-color); line-height: 1.3; }
.section-title h2, .section-title .main-title { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); line-height: 1.3; }
.section-title h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-top: 25px; }
.section-title p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* University trust section */
.uni-section {
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.65) 0%, rgba(248, 250, 252, 0.15) 88%);
    overflow: hidden;
}
.uni-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 90vw);
    height: 240px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 72%);
    pointer-events: none;
}
.uni-section-head {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto 1.75rem;
}
.uni-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}
.uni-section-title {
    font-size: clamp(1.35rem, 2vw + 0.5rem, 1.85rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.uni-section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}
.uni-cards-panel {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(2.75rem, 5vw, 3.25rem) clamp(2.5rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 50px rgba(15, 23, 42, 0.07),
        0 4px 16px rgba(37, 99, 235, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.uni-swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 0.25rem;
}
.uni-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.uni-swiper .swiper-slide .uni-card {
    width: 100%;
}
.uni-swiper-pagination {
    position: relative;
    margin-top: 1.25rem;
    bottom: auto !important;
}
.uni-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-58%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.uni-swiper-nav:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.uni-swiper-prev { left: 0.35rem; }
.uni-swiper-next { right: 0.35rem; }
.uni-card {
    --uni-accent: #2563eb;
    --uni-accent-soft: rgba(37, 99, 235, 0.12);
    --uni-accent-ring: rgba(37, 99, 235, 0.28);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 138px;
    padding: 1.15rem 0.65rem 1rem;
    background: linear-gradient(165deg, #fff 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.uni-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--uni-accent) 0%, rgba(255, 255, 255, 0.35) 100%);
    opacity: 0.9;
}
.uni-card:hover {
    transform: translateY(-8px);
    border-color: var(--uni-accent-ring);
    box-shadow:
        0 18px 36px var(--uni-accent-soft),
        0 6px 16px rgba(15, 23, 42, 0.06);
}
.uni-card-logo {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    padding: 0 0.25rem;
}
.uni-card-logo img {
    display: block;
    max-width: 92%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.uni-card:hover .uni-card-logo img {
    transform: scale(1.06);
}
.uni-card--stanford .uni-card-logo img,
.uni-card--mit .uni-card-logo img {
    max-height: 48px;
}
.uni-card--mit .uni-card-logo {
    height: 58px;
}
.uni-card-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
    max-width: 100%;
    padding: 0 0.15rem;
}
.uni-card--ucla .uni-card-name,
.uni-card--mit .uni-card-name,
.uni-card--utexas .uni-card-name,
.uni-card--penn .uni-card-name {
    font-size: 0.66rem;
}
.uni-card--harvard { --uni-accent: #a51c30; --uni-accent-soft: rgba(165, 28, 48, 0.14); --uni-accent-ring: rgba(165, 28, 48, 0.32); }
.uni-card--stanford { --uni-accent: #8c1515; --uni-accent-soft: rgba(140, 21, 21, 0.14); --uni-accent-ring: rgba(140, 21, 21, 0.32); }
.uni-card--ucla { --uni-accent: #2774ae; --uni-accent-soft: rgba(39, 116, 174, 0.14); --uni-accent-ring: rgba(39, 116, 174, 0.32); }
.uni-card--mit { --uni-accent: #750014; --uni-accent-soft: rgba(117, 0, 20, 0.14); --uni-accent-ring: rgba(117, 0, 20, 0.32); }
.uni-card--columbia { --uni-accent: #003865; --uni-accent-soft: rgba(0, 56, 101, 0.14); --uni-accent-ring: rgba(0, 56, 101, 0.32); }
.uni-card--nyu { --uni-accent: #57068c; --uni-accent-soft: rgba(87, 6, 140, 0.14); --uni-accent-ring: rgba(87, 6, 140, 0.32); }
.uni-card--yale { --uni-accent: #00356b; --uni-accent-soft: rgba(0, 53, 107, 0.14); --uni-accent-ring: rgba(0, 53, 107, 0.32); }
.uni-card--princeton { --uni-accent: #e77500; --uni-accent-soft: rgba(231, 117, 0, 0.14); --uni-accent-ring: rgba(231, 117, 0, 0.32); }
.uni-card--michigan { --uni-accent: #00274c; --uni-accent-soft: rgba(0, 39, 76, 0.14); --uni-accent-ring: rgba(0, 39, 76, 0.32); }
.uni-card--utexas { --uni-accent: #bf5700; --uni-accent-soft: rgba(191, 87, 0, 0.14); --uni-accent-ring: rgba(191, 87, 0, 0.32); }
.uni-card--duke { --uni-accent: #003087; --uni-accent-soft: rgba(0, 48, 135, 0.14); --uni-accent-ring: rgba(0, 48, 135, 0.32); }
.uni-card--penn { --uni-accent: #011f5b; --uni-accent-soft: rgba(1, 31, 91, 0.14); --uni-accent-ring: rgba(1, 31, 91, 0.32); }
@media (max-width: 575.98px) {
    .uni-cards-panel { padding: 1rem 2.25rem 2rem; border-radius: 18px; }
    .uni-swiper-nav { width: 32px; height: 32px; font-size: 0.75rem; }
    .uni-swiper-prev { left: 0.15rem; }
    .uni-swiper-next { right: 0.15rem; }
    .uni-card { min-height: 124px; padding: 1rem 0.45rem 0.85rem; }
    .uni-card-logo { height: 46px; margin-bottom: 0.55rem; }
    .uni-card-logo img { max-height: 38px; }
    .uni-card--mit .uni-card-logo { height: 50px; }
    .uni-card--mit .uni-card-logo img { max-height: 42px; }
    .uni-card-name { font-size: 0.65rem; }
    .uni-card--ucla .uni-card-name,
    .uni-card--mit .uni-card-name,
    .uni-card--utexas .uni-card-name,
    .uni-card--penn .uni-card-name { font-size: 0.6rem; }
}

/* Services Features (homepage) */
.feature-sections,
.home-services-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #fff 100%);
}
.home-services-head {
    max-width: 620px;
    margin: 0 auto 2.5rem;
}
.home-services-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}
.home-services-title {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.home-services-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.home-services-grid {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.home-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #a855f7);
    opacity: 1;
}
.home-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.14);
}
.home-service-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 1.15rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.06) 100%);
    color: var(--secondary-color);
    border: 1px solid rgba(124, 58, 237, 0.15);
}
.home-service-card:hover .home-service-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.24) 0%, rgba(124, 58, 237, 0.1) 100%);
}
.home-service-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.home-service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}
.home-service-btn {
    margin-top: auto;
    padding: 8px 22px !important;
    font-size: 0.85rem;
}
.home-services-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 2.25rem;
}
@media (max-width: 767.98px) {
    .home-service-card { padding: 1.5rem 1.25rem 1.25rem; }
    .home-service-icon { width: 58px; height: 58px; font-size: 1.35rem; }
}

/* Why Choose — unified card style */
.why-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, #fff 0%, rgba(224, 242, 254, 0.45) 100%);
}
.why-section-head { margin-bottom: 2.25rem; }
.why-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.why-section-title {
    font-size: clamp(1.45rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
.why-cards-grid {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.why-card {
    position: relative;
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(145deg, #fff 0%, rgba(224, 242, 254, 0.9) 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18);
}
.why-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.why-card-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(37, 99, 235, 0.2);
    line-height: 1;
}
.why-card-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}
.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.why-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.why-section-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}
@media (max-width: 575.98px) {
    .why-card { padding: 1.25rem 1rem; }
}

/* Stats / Content */
.stats { padding: 60px 0; }
.stats.bg-light { background: #f8f9fa; }
.stats .features { text-align: center; padding: 20px; }
.stats .features i { font-size: 2.5rem; }
.stats .title-2 { font-size: 1.1rem; display: block; margin: 10px 0; font-weight: 700; }
.domy-list { list-style: none; padding-left: 0; margin: 15px 0; }
.domy-list li { padding: 8px 0 8px 25px; position: relative; color: var(--text-muted); }
.domy-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--secondary-color); font-size: 0.8rem; }

/* Testimonials */
.testimonials-section { padding: 60px 0; }
.test-coli { background: var(--dark-bg); border-radius: 20px; padding: 30px; overflow: hidden; }
.test-coli .section-title p { color: rgba(255,255,255,0.75); }
.test-title { color: #fff !important; }
.testimonials-grid { width: 100%; }
#testimonialsGrid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}
.testimonials-grid-col {
    display: none;
    padding: 0 6px;
    width: 100%;
}
.testimonials-grid-col.is-visible { display: block; }
#testimonialsGrid.is-two-visible,
#testimonialsGrid.is-one-visible { justify-content: center; }
.testimonials-grid-nav { display: flex; justify-content: center; gap: 8px; }
.testimonials-nav-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonials-nav-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--secondary-color);
}
@media (min-width: 768px) {
    .testimonials-grid-col.is-visible { width: 33.333333%; }
}
.test-coli .customer-testi {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 14px;
    margin: 0;
    color: #fff;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}
.test-coli .testimonial-quote { font-size: 0.8rem; line-height: 1.5; margin-bottom: 0; flex: 1; }
.testimonial-stars { display: flex; flex-wrap: nowrap; align-items: center; gap: 3px; margin-top: auto; padding-top: 0.75rem; font-size: 0.75rem; }
.pill-set {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.65rem;
    font-size: 0.68rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 768px) {
    .test-coli .customer-testi { min-height: 210px; }
    .test-coli .testimonial-quote { font-size: 0.78rem; }
}
.testimonial-trust-panel {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.25rem;
    margin-top: 1rem;
}
.trust-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 8px;
    height: 100%;
}
.trust-stat-value { display: block; font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.2; }
.trust-stat-label { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.7); margin-top: 4px; line-height: 1.3; }
.testimonial-cta-row { border-top: 1px solid rgba(255,255,255,0.08); }
.test-coli .btn-outline-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.test-coli .btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

/* FAQ */
.faqs-section { padding: 20px; }
.faq-title { color: var(--primary-color); }
.accordion-button:not(.collapsed) { background: rgba(124,58,237,0.05); color: var(--secondary-color); }
.accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(124,58,237,0.15); border-color: var(--secondary-color); }
.accordion-body { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }

/* Service Pages */
.service-card { display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(30,58,138,0.12); }
.service-icon { width: 70px; height: 70px; background: rgba(124,58,237,0.1); color: var(--secondary-color); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.platform-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(124,58,237,0.08);
    padding: 6px 14px;
    border-radius: 50px;
}
.platform-service-card { border-top: 3px solid var(--secondary-color); position: relative; }
.platform-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.platform-tag--primary { background: rgba(30,58,138,0.1); color: var(--primary-color); }
.platform-tag--secondary { background: rgba(124,58,237,0.1); color: var(--secondary-color); }
.platform-tag--accent { background: rgba(6,182,212,0.12); color: var(--accent-color); }
.platform-service-icon { margin-bottom: 12px !important; }
.platform-service-icon.primary { background: rgba(30,58,138,0.1); color: var(--primary-color); }
.platform-service-icon.secondary { background: rgba(124,58,237,0.1); color: var(--secondary-color); }
.platform-service-icon.accent { background: rgba(6,182,212,0.12); color: var(--accent-color); }
.platform-subtitle { letter-spacing: 0.02em; }
.platform-features li { margin-bottom: 6px; }
.platform-features li:last-child { margin-bottom: 0; }
.class-service-card { border-left: 3px solid var(--secondary-color); }
.class-service-icon { width: 52px; height: 52px; font-size: 1.25rem; margin-bottom: 0 !important; }
.step-card { position: relative; }
.step-number { position: absolute; top: -20px; left: 20px; width: 40px; height: 40px; background: var(--secondary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.stat-icon { width: 60px; height: 60px; background: rgba(30,58,138,0.1); color: var(--primary-color); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto; }
.stat-icon.secondary { background: rgba(124,58,237,0.1); color: var(--secondary-color); }
.stat-icon.accent { background: rgba(6,182,212,0.1); color: var(--accent-color); }

/* Pricing */
.pricing-card { padding: 40px; }
.pricing-card.popular { border: 2px solid var(--secondary-color); transform: scale(1.05); }
.price-tag { font-size: calc(2.5rem + 1vw); font-weight: 700; color: var(--primary-color); }

/* Inner Hero */
.inner-hero { position: relative; overflow: hidden; background: transparent; padding: 100px 0 60px; }
.breadcrumb-item+.breadcrumb-item::before { color: var(--text-muted); }
.breadcrumb-item a { color: var(--secondary-color); font-weight: 500; transition: all 0.3s ease; text-decoration: none; }
.breadcrumb-item a:hover { color: var(--primary-color); }
.breadcrumb-item.active { color: var(--primary-color); font-weight: 600; }
.blob { position: absolute; z-index: -1; filter: blur(80px); opacity: 0.4; border-radius: 50%; }
.blob-1 { width: 400px; height: 400px; background: var(--secondary-color); top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; background: var(--accent-color); bottom: -50px; left: -50px; }

/* Footer CTA + wrap (no gap between sections) */
.site-footer-wrap { margin-top: 0; }
.footer-cta-bar {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a6e 100%);
    color: #fff;
    padding: 2.75rem 0;
    margin: 0;
}
.footer-cta-inner { max-width: 720px; margin: 0 auto; }
.footer-cta-title { font-size: 1.65rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; }
.footer-cta-text { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; line-height: 1.6; }
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.btn-cta-whatsapp {
    background: #ff7819;
    color: #fff;
    border: 2px solid #ff7819;
    font-weight: 600;
    padding: 0.55rem 1.35rem;
    transition: all 0.3s ease;
}
.btn-cta-whatsapp:hover {
    background: #e56a10;
    border-color: #e56a10;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 25, 0.35);
}
.footer-cta-email a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
}
.footer-cta-email a:hover { color: #fff; }
.site-footer-wrap .footer { margin-top: 0 !important; }

/* Footer */
.footer { background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); padding: 60px 0 30px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(30,58,138,0.08);
    border-radius: 12px;
    margin-bottom: 0;
    padding: 0;
    transition: all 0.3s ease;
    list-style: none;
}
.footer-contact li:hover { background: rgba(255,255,255,0.65); border-color: rgba(124,58,237,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
}
a.footer-contact-link:hover { color: var(--secondary-color); }
.footer-contact-link i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 22px;
    flex-shrink: 0;
    text-align: center;
}
.footer-contact-link span:last-child { flex: 1; min-width: 0; word-break: break-word; }
.footer-contact li:first-child .footer-contact-link span:last-child,
.footer-contact li:nth-child(2) .footer-contact-link span:last-child { white-space: nowrap; }
@media (max-width: 575px) {
    .footer-contact li:first-child .footer-contact-link span:last-child,
    .footer-contact li:nth-child(2) .footer-contact-link span:last-child { white-space: normal; }
}
.social-links a { width: 40px; height: 40px; background: var(--white); color: var(--primary-color); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-decoration: none; }
.social-links a:hover { background: var(--secondary-color); color: var(--white); transform: translateY(-5px); }
.footer-links li a { text-decoration: none; color: var(--text-muted); transition: all 0.3s ease; display: block; margin-bottom: 10px; font-size: 0.9rem; }
.footer-links li a:hover { color: var(--secondary-color); padding-left: 5px; }

/* Payment */
.payment-icon { width: 45px; height: 30px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary-color); transition: all 0.3s ease; }
.payment-icon:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); border-color: rgba(255,255,255,0.3); color: var(--secondary-color); }
/* Unified professional forms */
.form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    padding: clamp(1.75rem, 4vw, 2.25rem);
}
.form-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}
.form-card-header-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
}
.form-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}
.form-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
    padding-top: 0.5rem;
}
.mcd-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.mcd-form .form-control,
.mcd-form .form-select,
.mcd-form select {
    background: #f8fafc;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mcd-form .form-control::placeholder {
    color: #94a3b8;
}
.mcd-form .form-control:hover,
.mcd-form .form-select:hover,
.mcd-form select:hover {
    border-color: rgba(37, 99, 235, 0.35);
}
.mcd-form .form-control:focus,
.mcd-form .form-select:focus,
.mcd-form select:focus {
    background: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
    outline: none;
}
.mcd-form .form-group,
.mcd-form .mb-field {
    margin-bottom: 1rem;
}
.mcd-form .form-group:last-child,
.mcd-form .mb-field:last-child {
    margin-bottom: 0;
}
.mcd-form optgroup {
    font-weight: 600;
    color: var(--primary-color);
}
.mcd-form option {
    color: var(--text-dark);
}
.mcd-form-urgency {
    margin: 1rem 0;
    padding: 6px 10px;
    text-align: center;
    background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 8px;
}
.mcd-form-urgency span {
    font-size: 0.625rem;
    font-weight: 600;
    color: #b45309;
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.mcd-form .btn-submit,
.mcd-form .mcd-form-submit {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.mcd-form .btn-submit:hover,
.mcd-form .mcd-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45);
    color: #fff;
}
.mcd-form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.85rem 0 0;
    line-height: 1.5;
}
.mcd-form-note a {
    color: var(--primary-color);
    text-decoration: none;
}
.mcd-form-note a:hover {
    text-decoration: underline;
}
.glass-form.mcd-form .form-control,
.glass-form.mcd-form .form-select,
.glass-form.mcd-form select {
    background: #f8fafc;
    border: 1px solid rgba(37, 99, 235, 0.18);
    backdrop-filter: none;
}

/* Contact page info cards */
.contact-form-section {
    background: linear-gradient(180deg, #fff 0%, rgba(224, 242, 254, 0.35) 100%);
}
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.1));
    color: var(--primary-color);
    font-size: 1.05rem;
}
.contact-info-icon--whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.08));
    color: #16a34a;
}
.contact-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.2rem;
}
.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}
.contact-info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating */
.floating-actions { position: fixed; bottom: 30px; z-index: 1050; display: flex; flex-direction: column; gap: 15px; }
.floating-actions--left { left: 30px; }
.floating-actions--right { right: 30px; }
.btn-whatsapp {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: wa-pulse 2s ease-out infinite;
}
.btn-whatsapp:hover { transform: scale(1.08); color: #fff; box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55); }
@keyframes wa-pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    70% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}
.btn-scroll-top { width: 50px; height: 50px; background: var(--primary-color); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); opacity: 0; transition: all 0.3s ease; cursor: pointer; }
.btn-scroll-top.visible { opacity: 1; }
.btn-scroll-top:hover { background: var(--secondary-color); }

/* Swiper */
.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--secondary-color); opacity: 1; width: 25px; border-radius: 10px; transition: all 0.3s ease; }

/* Extra */
.extra-small { font-size: 0.72rem; font-weight: 500; }
.gradient-text { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Responsive */
@media (max-width: 1200px) {
    :root { --navbar-height: 68px; }
    .hero-section-comp { padding: calc(var(--header-offset) + 32px) 0 60px; }
    .hero-section-comp.comp-hero { min-height: 100vh; min-height: 100dvh; padding-bottom: 1.5rem; }
    .hero-section-comp--compact { padding-top: calc(var(--header-offset) + 2rem); padding-bottom: 1rem; }
}
@media (max-width: 991px) {
    :root {
        --topbar-height: 38px;
        --navbar-height: 64px;
    }
    .navbar-collapse {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        margin-top: 12px;
        border-radius: 16px;
        padding: 16px 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        width: 100%;
    }
    .site-logo--nav { height: 50px; max-width: min(250px, 54vw); }
    .site-logo--footer { height: 56px; }
    .nav-link { margin: 10px 0; text-align: center; }
    .nav-link.active::after { display: none; }
    .hero-section-comp { padding: calc(var(--header-offset) + 24px) 0 50px; text-align: center; }
    .hero-section-comp.comp-hero { min-height: 100vh; min-height: 100dvh; }
    .hero-section-comp--compact { padding-top: calc(var(--header-offset) + 1.75rem); padding-bottom: 0.85rem; }
    .hero-section-comp--compact .hero-content-comp .heading { font-size: 1.45rem; }
    .hero-box-row { justify-content: center; }
    .hero-section-comp:not(.comp-hero) .hero-content-comp { margin-bottom: 40px; }
    .comp-hero .hero-content-comp { margin-bottom: 0; }
    .comp-hero .calculate_order { margin-top: 0; }
    .pricing-card.popular { transform: scale(1); margin: 20px 0; }
    .test-coli, .faqs-section { padding: 20px !important; margin-top: 20px; }
    .calculate_order { margin-top: 30px; }
}
@media (max-width: 768px) {
    .display-5 { font-size: calc(1.6rem + 1.2vw); }
    .display-4 { font-size: calc(1.8rem + 1.8vw); }
    .floating-actions { bottom: 20px; gap: 10px; }
    .floating-actions--left { left: 20px; }
    .floating-actions--right { right: 20px; }
    .btn-whatsapp { width: 50px; height: 50px; font-size: 1.5rem; }
    .btn-scroll-top { width: 40px; height: 40px; }
    .hero-section-comp .heading { font-size: 1.8rem; }
    .calculate_order { padding: 20px; }
    .calculate_order .form-title { margin-top: -30px; font-size: 0.9rem; }
    :root { --topbar-height: 36px; --navbar-height: 60px; }
    .hero-section-comp { padding: calc(var(--header-offset) + 16px) 0 40px; }
    .hero-section-comp.comp-hero { min-height: 100vh; min-height: 100dvh; padding-bottom: 1.25rem; }
    .comp-hero .hero-form-col .calculate_order { max-width: 100%; }
    .hero-section-comp--compact { padding-top: calc(var(--header-offset) + 1.5rem); padding-bottom: 0.75rem; }
    .hero-section-comp--compact .hero-content-comp .heading { font-size: 1.35rem; }
    .inner-hero { padding: 80px 0 40px; }
}
@media (max-width: 576px) {
    .site-logo--nav { height: 42px; max-width: min(210px, 66vw); }
    .site-logo--footer { height: 52px; max-width: 100%; }
    .site-logo--preloader { height: 44px; }
    .topbar-item span { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .topbar-whatsapp { padding: 5px 10px; }
    .hero-section-comp .heading { font-size: 1.5rem; }
    .glass-card { padding: 25px 15px !important; }
    .btn-premium, .btn-outline-premium { width: 100%; margin-bottom: 5px; }
    .floating-actions { z-index: 1050; }
    .social-links { justify-content: center; display: flex; }
    .main-title { font-size: 1.4rem !important; }
    .home-services-title { font-size: 1.45rem; }
    .pricing-card { padding: 25px; }
    .price-tag { font-size: 2rem; }
}
