@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* --- CUSTOM PROPERTIES / DESIGN SYSTEM --- */
:root {
    --primary: #0f2942;      /* Deep Professional Navy */
    --primary-light: #1e3a5f;
    --primary-dark: #091d30;
    --accent: #f59e0b;       /* Rich Amber / Gold */
    --accent-light: #fef3c7;
    --accent-dark: #b45309;
    --success: #10b981;
    --success-light: #d1fae5;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(15, 41, 66, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 41, 66, 0.10);
    --shadow-lg: 0 20px 50px rgba(15, 41, 66, 0.16);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #0f2942 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(135deg, #0f2942 0%, #091d30 100%);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}
.glass-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.mab {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* --- TOPBAR --- */
.topbar {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.topbar-left span i {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-right a {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.tb-wa {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tb-wa:hover {
    background: #20ba59;
    transform: translateY(-1px);
}

.tb-login {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tb-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.tb-signup {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.tb-signup:hover {
    background: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* --- NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-logo span.dot-a {
    color: var(--accent);
}

.nav-logo span.ext {
    color: var(--primary-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

/* --- NAVIGATION DROPDOWNS --- */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links > a,
.nav-drop-btn {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

.nav-links > a:hover,
.nav-drop-btn:hover,
.nav-item-dropdown:hover .nav-drop-btn {
    background: #f1f5f9;
    color: var(--primary);
}

/* Dropdown Menu Box */
.dropdown-menu {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 250px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease-in-out;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: #4b5563;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: #eff6ff;
    color: var(--primary-light);
    padding-left: 18px;
}

.dropdown-menu a::after {
    content: '\ea5c';
    font-family: 'tabler-icons';
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}

.dropdown-menu a:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

/* Dynamic active pages indicators */
.nav-links a.active-page,
.nav-item-dropdown.active-page .nav-drop-btn {
    color: var(--primary-light);
    background: rgba(30, 58, 138, 0.06);
    font-weight: 700;
}

/* Mobile Accordion Nav classes */
.mob-submenu-toggle {
    display: none;
    margin-left: auto;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
}

.nav-cta {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(15, 41, 66, 0.15);
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.30);
    transform: translateY(-1px);
}

/* Mobile Nav Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    background: var(--gradient-primary);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.8;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-hero-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-hero-sec {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* --- HERO FORM --- */
.hero-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-form h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.hero-form p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hf-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.hf-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-main);
    background: #f8fafc;
    transition: var(--transition);
    outline: none;
}

.hf-input:focus {
    border-color: var(--primary-light);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

select.hf-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.hf-btn {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.15);
}

.hf-btn:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.30);
    transform: translateY(-1px);
}

.hf-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.hf-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}

.trust-bar span.tb-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.tb-item {
    font-size: 12px;
    color: #4b5563;
    padding: 6px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.tb-item:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: var(--primary-light);
}

/* --- SECTIONS --- */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 6px;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- SERVICES TAB SECTION --- */
.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card-top {
    margin-bottom: 20px;
}

.pop-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fef3c7;
    color: #d97706;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.svc-icon.blue { background: #eff6ff; color: #2563eb; }
.svc-icon.green { background: #ecfdf5; color: #059669; }
.svc-icon.amber { background: #fffbeb; color: #d97706; }
.svc-icon.coral { background: #fff5f5; color: #e11d48; }
.svc-icon.purple { background: #faf5ff; color: #7c3aed; }

.svc-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.svc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
}

.svc-price {
    font-size: 14px;
    color: var(--success);
    font-weight: 700;
}

.svc-price span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.svc-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.svc-card:hover .svc-link {
    color: var(--accent-dark);
}

/* --- HOW IT WORKS --- */
.howit {
    background: #f1f5f9;
    padding: 80px 24px;
}

.howit-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.step {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(15, 41, 66, 0.2);
    border: 4px solid #ffffff;
}

.step h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- WHY US (USPs) --- */
.usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.usp {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.usp:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.usp-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--primary-light);
}

.usp h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.usp p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- REVIEWS --- */
.reviews-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    background: #f8fafc;
    padding: 16px 32px;
    border-radius: 50px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.rev-big-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.rev-stars-col {
    display: flex;
    flex-direction: column;
}

.rev-stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 1px;
}

.rev-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.testi {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testi:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testi-stars {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.testi-info h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.testi-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- CTA BANNER --- */
.cta-banner {
    background: radial-gradient(circle at bottom left, var(--primary-light), var(--primary-dark));
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08), transparent 40%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-wa {
    background: #25d366;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.cta-btn-wa:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.cta-btn-call {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.30);
}

.cta-btn-call:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.40);
}

/* --- FOOTER --- */
.footer {
    background: var(--primary-dark);
    padding: 64px 24px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand .footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 13px;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-contact-list li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* --- FLOATING WHATSAPP PILL --- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.wa-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.wa-pill:hover {
    background: #20ba59;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* --- FEEDBACK UI FOR SUBMIT FORM --- */
.feedback-box {
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
}

.feedback-success {
    background: var(--success-light);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary-dark);
}

.feedback-success h4 {
    color: #047857;
    margin-bottom: 8px;
}

.feedback-error {
    background: #fee2e2;
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #7f1d1d;
}

.feedback-error h4 {
    color: #b91c1c;
    margin-bottom: 8px;
}

/* --- SERVICE DETAIL PAGE CUSTOM STYLES --- */
.detail-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 48px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs i {
    font-size: 11px;
}

.detail-hero h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.detail-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}

.detail-quick-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.detail-quick-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.detail-quick-stat i {
    color: var(--accent);
    font-size: 16px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.detail-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-card h3 i {
    color: var(--primary-light);
}

.detail-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.benefit-bullet-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.benefit-bullet-card:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateY(-2px);
}

.benefit-bullet-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-bullet-card h4 i {
    color: var(--success);
}

.benefit-bullet-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Document Lists */
.docs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.doc-group h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.doc-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doc-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    color: #4b5563;
}

.doc-checklist li::before {
    content: '\ea5e';
    font-family: 'tabler-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

/* Steps timeline */
.detail-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 24px;
    padding-left: 20px;
}

.detail-timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px var(--primary-light);
    margin-left: 10px;
}

.timeline-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    flex: 1;
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Accordion Styling */
.faq-accordions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    user-select: none;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.25s ease-in-out;
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 20px 16px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    display: none; /* Controlled by CSS active class */
    border-top: 1px dashed var(--border-color);
    padding-top: 14px;
    background: #fafafa;
}

/* JS toggle classes */
.faq-item.active {
    border-color: var(--primary-light);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

/* Detail Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sticky-sidebar {
    position: sticky;
    top: 94px;
    z-index: 10;
}

.sidebar-contact-card {
    background: radial-gradient(circle at top right, var(--primary-light), var(--primary-dark));
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.sidebar-contact-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-contact-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.sidebar-contact-card .btn-sc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.sidebar-contact-card .btn-sc-wa {
    background: #25d366;
    color: #ffffff;
}

.sidebar-contact-card .btn-sc-wa:hover {
    background: #20ba59;
}

.sidebar-contact-card .btn-sc-call {
    background: var(--accent);
    color: var(--primary);
}

.sidebar-contact-card .btn-sc-call:hover {
    background: #fbbf24;
}

/* --- STATIC SUBPAGES STYLING --- */

/* About Us Layout */
.about-hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.about-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px var(--primary-light);
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-dark);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact Us subpage */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.contact-detail-card i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #eff6ff;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-detail-card p,
.contact-detail-card a {
    font-size: 13.5px;
    color: #4b5563;
}

.contact-map-mockup {
    width: 100%;
    height: 250px;
    background: #f1f5f9;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Pricing Page Matrix Table */
.pricing-matrix-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: #ffffff;
    margin-top: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

.pricing-table tr:hover td {
    background: #f8fafc;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td strong {
    color: var(--primary);
}

.pt-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pt-tag-startup { background: #eff6ff; color: #1d4ed8; }
.pt-tag-registration { background: #ecfdf5; color: #047857; }
.pt-tag-taxfiling { background: #fffbeb; color: #b45309; }
.pt-tag-compliance { background: #faf5ff; color: #6d28d9; }
.pt-tag-trademark { background: #fff5f5; color: #be123c; }

.pt-price {
    font-weight: 700;
    color: var(--success);
    font-size: 15px;
}

.pt-btn {
    padding: 6px 14px;
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-sm);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.pt-btn:hover {
    background: var(--primary-light);
    color: #ffffff;
}

/* --- PRICING TABLE RESPONSIVENESS --- */
.pricing-matrix-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.pricing-table {
    width: 100%;
    min-width: 700px; /* Forces scroll on mobile */
    border-collapse: collapse;
    background: #ffffff;
    text-align: left;
}

.pricing-table th {
    background: var(--primary-light);
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.pricing-table tr:hover td {
    background: #f8fafc;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-form {
        max-width: 550px;
        margin: 0 auto;
        text-align: left;
    }
    
    .detail-layout,
    .contact-layout,
    .about-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sticky-sidebar {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 16px;
    }
    
    .topbar-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .topbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .navbar {
        position: relative; /* Keep mobile simple */
    }
    
    .nav-links {
        display: none; /* Toggled by JS on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
        height: auto;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
        align-items: stretch;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links > a,
    .nav-drop-btn {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-item-dropdown {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    
    /* Mobil Submenus Accordion behavior */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none; /* Toggled by JS */
        box-shadow: none;
        border: none;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        background: #f8fafc;
        padding: 6px 12px 12px 24px;
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 8px 10px;
        border-bottom: none;
    }
    
    .dropdown-menu a::after {
        display: none;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .nav-item-dropdown.active .nav-drop-btn i {
        transform: rotate(180deg);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none; /* Hide standard CTA */
    }
    
    .section {
        padding: 48px 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .benefit-bullets {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   ADDED UPGRADES FOR PREMIUM MEGAMENU & DYNAMIC BLOG ENGINE (COMPETITOR BEATING)
   ========================================================================== */

/* --- DYNAMIC TRANSITIONS & MEGAMENU ACCENTS --- */
.dropdown-menu {
    border: 1px solid rgba(15, 41, 66, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 50px -15px rgba(15, 41, 66, 0.16);
    backdrop-filter: blur(20px);
}

.dropdown-menu a {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(30, 58, 138, 0.07) 100%);
    color: var(--primary-light);
    transform: translateX(4px);
    font-weight: 600;
}

.nav-item-dropdown:hover .nav-drop-btn i {
    transform: rotate(180deg);
}

.nav-drop-btn i {
    transition: transform 0.25s ease;
}

/* --- PREMIUM BLOG RESOURCE HUB CATALOG & CARDS --- */
.blog-card-thumb {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.svc-card:hover .blog-card-thumb {
    transform: scale(1.06);
}

/* --- FLUID HIGH-LEGIBILITY ARTICLE TYPOGRAPHY & SEO LONG FORM --- */
.blog-article-body, .deep-dive-article {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
}

.blog-article-body p, .dd-section p {
    margin-bottom: 24px;
    font-weight: 400;
}

.blog-article-body h3, .dd-section h3 {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.blog-article-body h4, .dd-section h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: 30px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.toc-box a:hover {
    color: var(--accent-dark) !important;
    text-decoration: underline !important;
}

.blog-article-body ul, 
.blog-article-body ol,
.dd-section ul,
.dd-section ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

.blog-article-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-article-body table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.blog-article-body th, 
.blog-article-body td {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
}

.blog-article-body th {
    background: var(--primary-light);
    color: #ffffff;
    font-weight: 600;
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) {
    .dropdown-menu a:hover {
        transform: none; /* Disable shift in mobile dropdown accordion */
    }
}


/* --- PREMIUM 22 YEARS TRUST BADGE & EFFECTS --- */
.legacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.legacy-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.trust-highlight {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
    padding: 0 4px;
    border-radius: 4px;
}
