@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0B3C5D;
    --primary-light: #125585;
    --accent: #FF6B00;
    --accent-hover: #E66000;
    --white: #FFFFFF;
    --black: #1F1F1F;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(11,60,93,0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
}

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

html { scroll-behavior: smooth; font-size: 15px; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   BG GRID OVERLAY
   ========================================= */
.bg-grid {
    position: relative;
    overflow: hidden;
}
.bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(11,60,93,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11,60,93,0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.bg-grid > * { position: relative; z-index: 1; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-padding); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-gray { background-color: var(--gray-100); }

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; color: var(--gray-600); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary { background-color: var(--accent); color: var(--white); }
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary { border-color: var(--primary); color: var(--primary); background-color: transparent; }
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11, 60, 93, 0.12);
    border-bottom: 1px solid rgba(11, 60, 93, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
    position: relative;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo::before {
    content: '';
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 70%;
    background: linear-gradient(180deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-item { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--accent); background: rgba(255, 107, 0, 0.06); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); font-weight: 700; }

.chevron { font-size: 0.6rem; transition: transform 0.3s ease; opacity: 0.7; }
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }

.btn-nav {
    padding: 9px 22px !important;
    font-size: 0.875rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255, 107, 0, 0.30);
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
}
.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45) !important;
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%) !important;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15), 0 4px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
}
.dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 10px;
    position: relative;
}
.dropdown-link::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.dropdown-link:hover, .dropdown-link.active {
    background: linear-gradient(90deg, rgba(255,107,0,0.08), transparent);
    color: var(--accent);
    padding-left: 20px;
}
.dropdown-link:hover::before, .dropdown-link.active::before { opacity: 1; }

/* Submenu */
.submenu-parent { position: relative; }
.submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: var(--white);
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    overflow: hidden;
    z-index: 101;
}
.submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9A00, var(--accent));
}
.submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.submenu-parent:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }

.mobile-cta-item { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(11, 60, 93, 0.05); }
.hamburger span {
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #030712;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #FF9A00 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    z-index: 2;
}
.footer-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(18, 85, 133, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-inner { padding: 90px 0 0; position: relative; z-index: 1; }
.footer-top { padding-bottom: 60px; }

.footer-newsletter-section {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.newsletter-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.newsletter-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 500px;
}
.newsletter-form-container {
    width: 100%;
    max-width: 420px;
}
.input-glow-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.input-glow-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.92rem;
    font-family: var(--font-main);
}
.newsletter-input:focus {
    outline: none;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.newsletter-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}
.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%);
}
.newsletter-btn svg {
    transition: transform 0.3s ease;
}
.newsletter-btn:hover svg {
    transform: translateX(4px);
}

.footer-badges-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.badge-item svg {
    color: var(--accent);
    opacity: 0.75;
    transition: transform 0.3s ease;
}
.badge-item:hover {
    color: var(--white);
}
.badge-item:hover svg {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}
.badge-separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    filter: brightness(1.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img:hover {
    transform: translateY(-2px) scale(1.02);
}
.footer-logo-img:hover img {
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(255, 107, 0, 0.25));
}
.footer-logo { display: none; }
.brand-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    max-width: 320px !important;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 14px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
    color: var(--white);
}
.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-links:hover a:not(:hover) {
    color: rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}
.contact-item:hover {
    transform: translateX(4px);
}
.contact-icon-wrap {
    width: 38px; height: 38px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.contact-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.38) !important;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2px;
}
.contact-value:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.25);
}
.contact-text-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.45;
    display: inline-block;
    margin-top: 2px;
}

.footer-socials { display: flex; gap: 12px; margin-top: 25px; flex-wrap: wrap; }
.social-link {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link svg {
    transition: transform 0.3s ease;
}
.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
    border-color: transparent;
}
.social-link:hover svg {
    transform: scale(1.1);
}
.social-link.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}
.social-link.twitter:hover {
    background: #111111;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}
.social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; z-index: 2;
}
.copyright { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4) !important; margin: 0; }
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--white);
}
.dot-separator {
    color: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}
.compliance {
    font-size: 0.78rem;
    display: flex; align-items: center; gap: 6px;
}
.compliance p { margin: 0; color: rgba(255, 255, 255, 0.4) !important; }
.compliance::before { content: '🔒'; font-size: 0.75rem; opacity: 0.55; }

.scroll-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* =========================================
   ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes pulse-ring {
    0%   { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* =========================================
   HERO — PREMIUM
   ========================================= */
.hero-premium {
    background: #fff;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

/* =========================================
   TICKER / TRUST BAR
   ========================================= */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust-strip-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    opacity: 0.65;
}
.trust-item span { color: var(--accent); font-size: 1rem; }

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00, transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    display: block;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 6px; }

/* =========================================
   SERVICE CARDS
   ========================================= */
.svc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.svc-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.04), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(11,60,93,0.12); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    transition: transform 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; }
.svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-weight: 700; font-size: 0.85rem;
    text-decoration: none; transition: gap 0.2s;
}
.svc-card .svc-link::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}
.svc-card:hover .svc-link { gap: 10px; }

/* =========================================
   WHY US CARDS
   ========================================= */
.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.why-card:hover {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 20px 50px rgba(11,60,93,0.08);
    transform: translateY(-5px);
}
.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.06));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    border: 1px solid rgba(255,107,0,0.12);
    transition: transform 0.4s;
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(8deg); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-grand {
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 60%, #0d3352 100%);
    position: relative; overflow: hidden;
    padding: 120px 0;
}
.cta-grand::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-grand::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(18,85,133,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-grand h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -0.03em; margin-bottom: 20px;
}
.cta-grand h2 span {
    background: linear-gradient(135deg, var(--accent), #FF9A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   SECTION LABEL
   ========================================= */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

/* =========================================
   CONTACT & FORM STYLES
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-card-glass {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(11, 60, 93, 0.08);
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 600; font-size: 0.88rem;
    color: var(--primary); margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B3C5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    cursor: pointer;
}
.form-select:focus {
    outline: none; border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.contact-info-list { display: flex; flex-direction: column; gap: 30px; }
.contact-info-card {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-sm);
}
.contact-info-icon {
    width: 50px; height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
}
.contact-info-text h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 700; color: var(--primary); }
.contact-info-text p, .contact-info-text a {
    font-size: 0.92rem; color: var(--gray-600);
    margin: 0; text-decoration: none; line-height: 1.5;
}
.contact-info-text a:hover { color: var(--accent); }

.faq-section { padding: 100px 0; border-top: 1px solid var(--gray-200); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; margin-top: 60px;
}
.faq-item {
    background: var(--white);
    padding: 30px; border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}
.faq-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.faq-item p { font-size: 0.95rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* =========================================
   WHO WE SERVE SECTION
   ========================================= */
.serve-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.serve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.serve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,107,0,0.15);
}
.serve-card:hover::before { transform: scaleX(1); }
.serve-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    border: 1px solid rgba(255,107,0,0.15);
}
.serve-card h3 { color: var(--accent); font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.serve-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* =========================================
   SERVICE PAGE STYLES
   ========================================= */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative; overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   DESKTOP REFINEMENTS (992px+)
   ========================================= */
@media (min-width: 992px) {
    .container { padding: 0 40px; }
    .grid-2 { gap: 60px; }
    .grid-3 { gap: 40px; }
    .grid-4 { gap: 30px; }
    header.scrolled .nav-link { padding: 6px 12px; font-size: 0.88rem; }
    header.scrolled .btn-nav { padding: 7px 18px !important; font-size: 0.82rem !important; }
}

/* =========================================
   TABLET (max 992px)
   ========================================= */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-actions .btn-nav { display: none; }
    .mobile-cta-item { display: block; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%; gap: 4px;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }

    .nav-item { width: 100%; }

    .nav-link { width: 100%; font-size: 1rem; padding: 12px 10px; }

    .dropdown, .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, padding 0.3s ease;
        background: var(--gray-100);
        border-radius: var(--border-radius);
    }
    .nav-item.open > .dropdown,
    .submenu-parent.open > .submenu {
        max-height: 1000px;
        padding: 8px 0 8px 16px;
        margin-top: 4px;
    }

    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================
   MOBILE LARGE (max 768px)
   ========================================= */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .section { padding: 60px 0; }
    
    .pricing-section { padding: 40px 0 !important; }
    
    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 20px !important;
        min-height: auto !important;
    }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    /* Hero */
    .hero-premium { padding: 110px 0 70px; }
    .hero-premium h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-premium p { font-size: 1rem; }

    /* CTA buttons stack */
    .hero-premium [style*="display:flex"][style*="gap:20px"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { padding: 40px 0; }
    .hero-card { display: none; }

    /* Service cards */
    .svc-card { padding: 28px 24px; }

    /* Why cards */
    .why-card { padding: 32px 24px; }

    /* CTA section */
    .cta-grand { padding: 80px 0; }
    .cta-grand [style*="display:flex"][style*="gap:16px"] {
        flex-direction: column;
        align-items: center;
    }
    .cta-grand [style*="display:flex"][style*="gap:40px"] {
        flex-direction: column;
        gap: 24px;
    }
    .cta-grand [style*="width:1px"] { display: none; }

    /* Contact */
    .contact-card-glass { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-grid { margin-top: 40px; gap: 20px; }

    /* Footer */
    .footer-inner { padding: 60px 0 0; }
    .footer-top { padding-bottom: 40px; }
    .footer-top .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .footer-newsletter-section { padding-bottom: 30px; margin-bottom: 30px; text-align: center; }
    .newsletter-grid { flex-direction: column; gap: 20px; text-align: center; }
    .newsletter-info p { max-width: 100%; }
    .newsletter-form-container { max-width: 100%; }
    .footer-badges-bar { flex-wrap: wrap; justify-content: center; gap: 20px; padding: 18px 20px; margin-bottom: 40px; }
    .badge-separator { display: none; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 15px; padding: 24px 0; }
    .footer-bottom-links { justify-content: center; width: 100%; flex-wrap: wrap; gap: 10px 16px; }
    .footer-logo-img { margin: 0 auto 16px; display: block; }
    .footer-logo-img img { height: 60px; margin: 0 auto; }
    .footer-about { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .brand-desc { margin: 10px auto 20px !important; text-align: center; max-width: 100% !important; }
    .footer-socials { justify-content: center; margin-top: 10px; }
    .footer-nav { text-align: center; }
    .footer-title { display: inline-block; width: 100%; text-align: center; margin-bottom: 20px; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links { padding: 0; display: flex; flex-direction: column; align-items: center; }
    .footer-links a:hover { transform: none; }
    .footer-links a::after { display: none; }
    .footer-contact { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .contact-item { justify-content: center; text-align: left; width: fit-content; margin: 0 auto 16px; }
    .contact-item:last-child { margin-bottom: 0; }
    .compliance { font-size: 0.78rem; justify-content: center; }
}

/* =========================================
   MOBILE SMALL (max 480px)
   ========================================= */
@media (max-width: 480px) {
    html { font-size: 13.5px; }

    .container { padding: 0 16px; }

    .hero-premium { padding: 100px 0 60px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .svc-card { padding: 24px 20px; }
    .svc-icon { width: 50px; height: 50px; }

    .why-card { padding: 28px 20px; }
    .why-icon { width: 60px; height: 60px; }

    .btn { font-size: 0.88rem; padding: 10px 20px; }

    .footer-top .grid-4 { grid-template-columns: 1fr; gap: 36px; }
    .brand-desc { max-width: 100% !important; }
    .footer-logo-img img { height: 50px; }
    .contact-item { justify-content: flex-start; max-width: 260px; margin: 0 auto 16px; }
    .input-glow-group { flex-direction: column; background: transparent; border: none; gap: 12px; padding: 0; border-radius: 0; }
    .newsletter-input { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 12px 20px; text-align: center; width: 100%; }
    .newsletter-btn { width: 100%; justify-content: center; padding: 12px 24px; }
    .footer-badges-bar { grid-template-columns: repeat(2, 1fr); display: grid; gap: 15px; text-align: left; }
    .badge-item { justify-content: center; }

    .nav-menu { width: 100%; }

    .trust-item { padding: 0 30px; font-size: 0.8rem; }

    .faq-item { padding: 22px 18px; }
}

/* =========================================
   LANDSCAPE MOBILE (short + wide)
   ========================================= */
    .hero-premium { padding: 90px 0 50px; }
    .nav-menu { padding-top: 70px; overflow-y: auto; }
    .cta-grand { padding: 60px 0; }
}

/* =========================================
   NEW DYNAMIC NAVBAR CLASSES
   ========================================= */
/* ── HEADER BAR ── */
header.adspraq-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11,60,93,0.06);
}
header.adspraq-header.scrolled {
    background: rgba(255,255,255,0.96);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11,60,93,0.08);
    border-bottom: 1px solid rgba(11,60,93,0.04);
}
header.adspraq-header.menu-open {
    background: rgba(255,255,255,0.98);
    border-bottom-color: rgba(11,60,93,0.06);
    box-shadow: none;
}
.adspraq-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.adspraq-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.adspraq-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(11, 60, 93, 0.05));
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.3s ease,
                opacity 0.3s ease;
}
header.adspraq-header.scrolled .adspraq-logo img {
    height: 56px;
}
.adspraq-logo:hover {
    transform: translateY(-3px) scale(1.05);
    animation: logo-hover-float 2s ease-in-out infinite alternate;
}
.adspraq-logo:hover img {
    filter: drop-shadow(0 10px 24px rgba(255, 107, 0, 0.28)) drop-shadow(0 2px 4px rgba(11, 60, 93, 0.12));
}
header.adspraq-header.menu-open .adspraq-logo { color: #0B3C5D; }

@keyframes logo-hover-float {
    0% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    50% { transform: translateY(-5px) scale(1.05) rotate(1.5deg); }
    100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
}

/* Desktop nav links */
.adspraq-desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.adspraq-desktop-nav li a {
    text-decoration: none;
    color: #0B3C5D;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex; align-items: center; gap: 5px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-desktop-nav li a:hover { color: #FF6B00; background: transparent; }
.adspraq-desktop-nav li a:hover::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active { color: #FF6B00; font-weight: 700; }
.adspraq-desktop-nav li a.active::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active .active-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #FF6B00;
    border-radius: 50%;
    margin-left: 4px;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Desktop Dropdown Styles */
.adspraq-has-dropdown {
    position: relative;
}
.desktop-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    margin-left: 2px;
}
.adspraq-has-dropdown:hover .desktop-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.adspraq-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1), 0 3px 10px rgba(0,0,0,0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.adspraq-dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.adspraq-has-dropdown:hover .adspraq-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

.adspraq-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    border-radius: 8px;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-dropdown-link:hover, .adspraq-dropdown-link.active {
    background: rgba(255, 107, 0, 0.05);
    color: #FF6B00;
}
.adspraq-dropdown-link .sub-arrow {
    font-size: 0.55rem;
    opacity: 0.5;
    transition: transform 0.25s ease;
}
.adspraq-dropdown-link:hover .sub-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Submenu */
.adspraq-submenu-parent {
    position: relative;
}
.adspraq-submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: #ffffff;
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 101;
}
.adspraq-submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.adspraq-submenu-parent:hover .adspraq-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* CTA Button */
.adspraq-btn-nav {
    padding: 9px 22px;
    font-size: 0.875rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9A00 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255,107,0,0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    white-space: nowrap;
}
.adspraq-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.45);
}

/* ── HAMBURGER ── */
.adspraq-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    z-index: 1002;
    transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-hamburger:hover { background: rgba(11,60,93,0.06); }
.adspraq-hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, #0B3C5D, #125585);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
header.adspraq-header.menu-open .adspraq-hamburger span { background: #0B3C5D; }
.adspraq-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.adspraq-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── FULLSCREEN OVERLAY ── */
.fs-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 110px 40px 50px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.5s;
}
.fs-menu-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* Decorative bg accent */
.fs-menu-overlay::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.fs-menu-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00, transparent);
}

/* ── NAV ITEMS ── */
.fs-nav-list {
    list-style: none;
    margin: 0 auto; padding: 0;
    width: 100%;
    max-width: 560px;
    position: relative; z-index: 1;
}

.fs-nav-item {
    border-bottom: 1px solid rgba(11, 60, 93, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms);
}
.fs-menu-overlay.open .fs-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.fs-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-nav-link:hover { gap: 26px; }

.fs-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(11, 60, 93, 0.35);
    letter-spacing: 0.1em;
    min-width: 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.fs-link-text {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    font-weight: 800;
    color: rgba(11, 60, 93, 0.85);
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.3s ease;
}
.fs-nav-link:hover .fs-link-text {
    color: #FF6B00;
    transform: translateX(4px);
}
.fs-nav-link.fs-nav-link--active .fs-link-text { color: #FF6B00; }

/* Active pill badge - lighter outline styling */
.fs-active-pill {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 107, 0, 0.06);
    color: #FF6B00;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

/* Active link accent line */
.fs-nav-link--active .fs-link-text {
    position: relative;
}
.fs-nav-link--active .fs-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
}

/* Services arrow */
.fs-arrow {
    font-size: 1.1rem;
    color: rgba(11, 60, 93, 0.35);
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}
.fs-nav-link[aria-expanded="true"] .fs-arrow {
    transform: rotate(180deg);
    color: #FF6B00;
}

/* ── SERVICES SUB PANEL ── */
.fs-sub-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
    opacity: 0;
    padding: 0 0 0 44px;
}
.fs-sub-panel.expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 8px 0 20px 44px;
}
.fs-sub-panel-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}

.fs-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(11, 60, 93, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.25s ease, padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-sub-link:hover { color: #FF6B00; padding-left: 6px; }
.fs-sub-link.fs-sub-link--active { color: #FF6B00; font-weight: 700; }
.fs-sub-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FF6B00;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── FOOTER ROW ── */
.fs-footer {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative; z-index: 1;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    border-top: 1px solid rgba(11, 60, 93, 0.06);
}
.fs-menu-overlay.open .fs-footer { opacity: 1; transform: translateY(0); }

.fs-footer-cta {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00, #FF9A00);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,107,0,0.25);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }

.fs-footer-links { display: flex; gap: 24px; }
.fs-footer-links a {
    font-size: 0.85rem;
    color: rgba(11, 60, 93, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 500;
}
.fs-footer-links a:hover { color: #FF6B00; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .adspraq-desktop-nav, .adspraq-btn-nav { display: none; }
    .adspraq-hamburger { display: flex; }
}
@media (min-width: 993px) {
    .fs-menu-overlay { display: none !important; }
}
@media (max-width: 768px) {
    header.adspraq-header {
        padding: 12px 0;
    }
    header.adspraq-header.scrolled {
        padding: 8px 0;
    }
    .adspraq-logo img {
        height: 56px;
    }
    .adspraq-hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .adspraq-hamburger span {
        width: 20px;
        height: 2px;
    }
    .adspraq-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Fullscreen Mobile Overlay */
    .fs-menu-overlay {
        padding: 80px 24px 30px;
    }
    .fs-nav-link {
        padding: 12px 0;
    }
    .fs-link-text {
        font-size: clamp(1.2rem, 5vw, 1.45rem);
    }
    .fs-active-pill {
        font-size: 0.52rem;
        padding: 1px 6px;
        margin-left: 8px;
    }
    .fs-sub-panel {
        border-left: 2px solid rgba(11, 60, 93, 0.06);
        margin-left: 8px;
        padding: 0 0 0 16px;
    }
    .fs-sub-panel.expanded {
        padding: 4px 0 12px 16px;
    }
    .fs-sub-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    .fs-sub-panel-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .fs-footer {
        margin-top: 30px;
        padding-top: 24px;
        gap: 12px;
    }
    .fs-footer-cta {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.88rem;
    }
    .fs-footer-links {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
}
}

/*INTERACTIVE CTA FORM*/
.cta-form-container {
    max-width: 650px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .cta-choice-grid {
        grid-template-columns: 1fr;
    }
}

.cta-choice-card {
    position: relative;
    cursor: pointer;
}

.cta-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cta-choice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-choice-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.cta-choice-card input[type="radio"]:checked + .cta-choice-content {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.cta-choice-card:hover .cta-choice-content {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .cta-input-row {
        grid-template-columns: 1fr;
    }
}

.cta-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-input-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cta-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.cta-submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   INTERACTIVE CTA MODAL
   ========================================= */
.cta-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-modal.open {
    opacity: 1;
    pointer-events: all;
}

.cta-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 30, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-modal-content {
    position: relative;
    z-index: 2;
    width: min(500px, 90vw);
    background: #0B3C5D;
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.cta-modal.open .cta-modal-content {
    transform: translateY(0);
}

.cta-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-modal-close:hover {
    color: var(--white);
}

.cta-modal-header {
    margin-bottom: 24px;
    text-align: left;
}

.cta-modal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 12px;
}

.cta-modal-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-modal-header p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.cta-modal-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    text-align: left;
}

.cta-modal-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-modal-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-modal-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea.cta-modal-field {
    resize: vertical;
    min-height: 80px;
}

.cta-modal-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   CONTACT TABS & CALENDLY OVERRIDES
   ========================================= */
.contact-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1.5px solid var(--gray-200);
    padding-bottom: 12px;
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: var(--gray-100);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}



/* =========================================
   PRICING STYLES
   ========================================= */
.pricing-section {
    position: relative;
    padding: var(--section-padding);
}

.pricing-position-banner {
    max-width: 800px;
    margin: -20px auto 45px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.pricing-pill-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.pricing-pill-tabs {
    display: inline-flex;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    gap: 4px;
}

.pricing-pill-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-pill-tab:hover {
    color: var(--primary);
}

.pricing-pill-tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 60, 93, 0.2);
}

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

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
    margin: 0 auto 40px;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 45px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 60, 93, 0.15);
}

.pricing-card.popular {
    border: 2.5px solid var(--accent);
    box-shadow: 0 15px 45px rgba(255, 107, 0, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 55px rgba(255, 107, 0, 0.22);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
}

.pricing-card-price {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.02em;
}

.pricing-card-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-card-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}

.pricing-card-btn {
    width: 100%;
    text-align: center;
}

/* Featured Offer Styling */
.featured-offer-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.featured-offer-box::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.featured-offer-box h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.featured-offer-box h3 span {
    color: var(--accent);
}

.featured-offer-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    list-style: none;
}

.featured-offer-features li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

.featured-offer-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
}

.featured-right {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.featured-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-grid, .pricing-grid-2, .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 35px 24px;
    }
    .featured-offer-box {
        padding: 35px 25px;
    }
    .featured-offer-features {
        grid-template-columns: 1fr;
    }
    .featured-offer-box h3 {
        font-size: 1.8rem;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0B3C5D;
    --primary-light: #125585;
    --accent: #FF6B00;
    --accent-hover: #E66000;
    --white: #FFFFFF;
    --black: #1F1F1F;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(11,60,93,0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
}

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

html { scroll-behavior: smooth; font-size: 15px; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   BG GRID OVERLAY
   ========================================= */
.bg-grid {
    position: relative;
@media (max-width: 480px) {
    .contact-tabs {
        flex-direction: column;
        border-bottom: none;
        padding-bottom: 0;
        gap: 6px;
    }
    .tab-btn {
        border-radius: 8px;
        border-bottom: none;
        border-left: 3px solid transparent;
        justify-content: flex-start;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .tab-btn.active {
        border-bottom-color: transparent;
        border-left-color: var(--accent);
        background: var(--gray-100);
    }
}

/* Custom overrides for Calendly styling alignment */
.calendly-inline-widget {
    background-color: transparent !important;
    border-radius: 12px;
    overflow: hidden;
}
.bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(11,60,93,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11,60,93,0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.bg-grid > * { position: relative; z-index: 1; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-padding); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-gray { background-color: var(--gray-100); }

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; color: var(--gray-600); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary { background-color: var(--accent); color: var(--white); }
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary { border-color: var(--primary); color: var(--primary); background-color: transparent; }
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11, 60, 93, 0.12);
    border-bottom: 1px solid rgba(11, 60, 93, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
    position: relative;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo::before {
    content: '';
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 70%;
    background: linear-gradient(180deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-item { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--accent); background: rgba(255, 107, 0, 0.06); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); font-weight: 700; }

.chevron { font-size: 0.6rem; transition: transform 0.3s ease; opacity: 0.7; }
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }

.btn-nav {
    padding: 9px 22px !important;
    font-size: 0.875rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255, 107, 0, 0.30);
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
}
.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45) !important;
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%) !important;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15), 0 4px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
}
.dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 10px;
    position: relative;
}
.dropdown-link::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.dropdown-link:hover, .dropdown-link.active {
    background: linear-gradient(90deg, rgba(255,107,0,0.08), transparent);
    color: var(--accent);
    padding-left: 20px;
}
.dropdown-link:hover::before, .dropdown-link.active::before { opacity: 1; }

/* Submenu */
.submenu-parent { position: relative; }
.submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: var(--white);
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    overflow: hidden;
    z-index: 101;
}
.submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9A00, var(--accent));
}
.submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.submenu-parent:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }

.mobile-cta-item { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(11, 60, 93, 0.05); }
.hamburger span {
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #030712;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #FF9A00 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    z-index: 2;
}
.footer-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(18, 85, 133, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-inner { padding: 90px 0 0; position: relative; z-index: 1; }
.footer-top { padding-bottom: 60px; }

.footer-newsletter-section {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.newsletter-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.newsletter-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 500px;
}
.newsletter-form-container {
    width: 100%;
    max-width: 420px;
}
.input-glow-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.input-glow-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.92rem;
    font-family: var(--font-main);
}
.newsletter-input:focus {
    outline: none;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.newsletter-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}
.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%);
}
.newsletter-btn svg {
    transition: transform 0.3s ease;
}
.newsletter-btn:hover svg {
    transform: translateX(4px);
}

.footer-badges-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.badge-item svg {
    color: var(--accent);
    opacity: 0.75;
    transition: transform 0.3s ease;
}
.badge-item:hover {
    color: var(--white);
}
.badge-item:hover svg {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}
.badge-separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    filter: brightness(1.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img:hover {
    transform: translateY(-2px) scale(1.02);
}
.footer-logo-img:hover img {
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(255, 107, 0, 0.25));
}
.footer-logo { display: none; }
.brand-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    max-width: 320px !important;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 14px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
    color: var(--white);
}
.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-links:hover a:not(:hover) {
    color: rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}
.contact-item:hover {
    transform: translateX(4px);
}
.contact-icon-wrap {
    width: 38px; height: 38px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.contact-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.38) !important;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2px;
}
.contact-value:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.25);
}
.contact-text-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.45;
    display: inline-block;
    margin-top: 2px;
}

.footer-socials { display: flex; gap: 12px; margin-top: 25px; flex-wrap: wrap; }
.social-link {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link svg {
    transition: transform 0.3s ease;
}
.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
    border-color: transparent;
}
.social-link:hover svg {
    transform: scale(1.1);
}
.social-link.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}
.social-link.twitter:hover {
    background: #111111;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}
.social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; z-index: 2;
}
.copyright { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4) !important; margin: 0; }
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--white);
}
.dot-separator {
    color: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}
.compliance {
    font-size: 0.78rem;
    display: flex; align-items: center; gap: 6px;
}
.compliance p { margin: 0; color: rgba(255, 255, 255, 0.4) !important; }
.compliance::before { content: '🔒'; font-size: 0.75rem; opacity: 0.55; }

.scroll-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* =========================================
   ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes pulse-ring {
    0%   { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* =========================================
   HERO — PREMIUM
   ========================================= */
.hero-premium {
    background: #fff;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

/* =========================================
   TICKER / TRUST BAR
   ========================================= */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust-strip-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    opacity: 0.65;
}
.trust-item span { color: var(--accent); font-size: 1rem; }

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00, transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    display: block;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 6px; }

/* =========================================
   SERVICE CARDS
   ========================================= */
.svc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.svc-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.04), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(11,60,93,0.12); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    transition: transform 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; }
.svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-weight: 700; font-size: 0.85rem;
    text-decoration: none; transition: gap 0.2s;
}
.svc-card .svc-link::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}
.svc-card:hover .svc-link { gap: 10px; }

/* =========================================
   WHY US CARDS
   ========================================= */
.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.why-card:hover {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 20px 50px rgba(11,60,93,0.08);
    transform: translateY(-5px);
}
.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.06));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    border: 1px solid rgba(255,107,0,0.12);
    transition: transform 0.4s;
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(8deg); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-grand {
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 60%, #0d3352 100%);
    position: relative; overflow: hidden;
    padding: 120px 0;
}
.cta-grand::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-grand::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(18,85,133,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-grand h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -0.03em; margin-bottom: 20px;
}
.cta-grand h2 span {
    background: linear-gradient(135deg, var(--accent), #FF9A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   SECTION LABEL
   ========================================= */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

/* =========================================
   CONTACT & FORM STYLES
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-card-glass {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(11, 60, 93, 0.08);
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 600; font-size: 0.88rem;
    color: var(--primary); margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B3C5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    cursor: pointer;
}
.form-select:focus {
    outline: none; border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.contact-info-list { display: flex; flex-direction: column; gap: 30px; }
.contact-info-card {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-sm);
}
.contact-info-icon {
    width: 50px; height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
}
.contact-info-text h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 700; color: var(--primary); }
.contact-info-text p, .contact-info-text a {
    font-size: 0.92rem; color: var(--gray-600);
    margin: 0; text-decoration: none; line-height: 1.5;
}
.contact-info-text a:hover { color: var(--accent); }

.faq-section { padding: 100px 0; border-top: 1px solid var(--gray-200); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; margin-top: 60px;
}
.faq-item {
    background: var(--white);
    padding: 30px; border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}
.faq-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.faq-item p { font-size: 0.95rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* =========================================
   WHO WE SERVE SECTION
   ========================================= */
.serve-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.serve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.serve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,107,0,0.15);
}
.serve-card:hover::before { transform: scaleX(1); }
.serve-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    border: 1px solid rgba(255,107,0,0.15);
}
.serve-card h3 { color: var(--accent); font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.serve-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* =========================================
   SERVICE PAGE STYLES
   ========================================= */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative; overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   DESKTOP REFINEMENTS (992px+)
   ========================================= */
@media (min-width: 992px) {
    .container { padding: 0 40px; }
    .grid-2 { gap: 60px; }
    .grid-3 { gap: 40px; }
    .grid-4 { gap: 30px; }
    header.scrolled .nav-link { padding: 6px 12px; font-size: 0.88rem; }
    header.scrolled .btn-nav { padding: 7px 18px !important; font-size: 0.82rem !important; }
}

/* =========================================
   TABLET (max 992px)
   ========================================= */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-actions .btn-nav { display: none; }
    .mobile-cta-item { display: block; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%; gap: 4px;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }

    .nav-item { width: 100%; }

    .nav-link { width: 100%; font-size: 1rem; padding: 12px 10px; }

    .dropdown, .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, padding 0.3s ease;
        background: var(--gray-100);
        border-radius: var(--border-radius);
    }
    .nav-item.open > .dropdown,
    .submenu-parent.open > .submenu {
        max-height: 1000px;
        padding: 8px 0 8px 16px;
        margin-top: 4px;
    }

    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================
   MOBILE LARGE (max 768px)
   ========================================= */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .section { padding: 60px 0; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    /* Hero */
    .hero-premium { padding: 110px 0 70px; }
    .hero-premium h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-premium p { font-size: 1rem; }

    /* CTA buttons stack */
    .hero-premium [style*="display:flex"][style*="gap:20px"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { padding: 40px 0; }
    .hero-card { display: none; }

    /* Service cards */
    .svc-card { padding: 28px 24px; }

    /* Why cards */
    .why-card { padding: 32px 24px; }

    /* CTA section */
    .cta-grand { padding: 80px 0; }
    .cta-grand [style*="display:flex"][style*="gap:16px"] {
        flex-direction: column;
        align-items: center;
    }
    .cta-grand [style*="display:flex"][style*="gap:40px"] {
        flex-direction: column;
        gap: 24px;
    }
    .cta-grand [style*="width:1px"] { display: none; }

    /* Contact */
    .contact-card-glass { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-grid { margin-top: 40px; gap: 20px; }

    /* Footer */
    .footer-inner { padding: 60px 0 0; }
    .footer-top { padding-bottom: 40px; }
    .footer-top .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .footer-newsletter-section { padding-bottom: 30px; margin-bottom: 30px; text-align: center; }
    .newsletter-grid { flex-direction: column; gap: 20px; text-align: center; }
    .newsletter-info p { max-width: 100%; }
    .newsletter-form-container { max-width: 100%; }
    .footer-badges-bar { flex-wrap: wrap; justify-content: center; gap: 20px; padding: 18px 20px; margin-bottom: 40px; }
    .badge-separator { display: none; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 15px; padding: 24px 0; }
    .footer-bottom-links { justify-content: center; width: 100%; flex-wrap: wrap; gap: 10px 16px; }
    .footer-logo-img { margin: 0 auto 16px; display: block; }
    .footer-logo-img img { height: 60px; margin: 0 auto; }
    .footer-about { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .brand-desc { margin: 10px auto 20px !important; text-align: center; max-width: 100% !important; }
    .footer-socials { justify-content: center; margin-top: 10px; }
    .footer-nav { text-align: center; }
    .footer-title { display: inline-block; width: 100%; text-align: center; margin-bottom: 20px; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links { padding: 0; display: flex; flex-direction: column; align-items: center; }
    .footer-links a:hover { transform: none; }
    .footer-links a::after { display: none; }
    .footer-contact { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .contact-item { justify-content: center; text-align: left; width: fit-content; margin: 0 auto 16px; }
    .contact-item:last-child { margin-bottom: 0; }
    .compliance { font-size: 0.78rem; justify-content: center; }
}

/* =========================================
   MOBILE SMALL (max 480px)
   ========================================= */
@media (max-width: 480px) {
    html { font-size: 13.5px; }

    .container { padding: 0 16px; }

    .hero-premium { padding: 100px 0 60px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .svc-card { padding: 24px 20px; }
    .svc-icon { width: 50px; height: 50px; }

    .why-card { padding: 28px 20px; }
    .why-icon { width: 60px; height: 60px; }

    .btn { font-size: 0.88rem; padding: 10px 20px; }

    .footer-top .grid-4 { grid-template-columns: 1fr; gap: 36px; }
    .brand-desc { max-width: 100% !important; }
    .footer-logo-img img { height: 50px; }
    .contact-item { justify-content: flex-start; max-width: 260px; margin: 0 auto 16px; }
    .input-glow-group { flex-direction: column; background: transparent; border: none; gap: 12px; padding: 0; border-radius: 0; }
    .newsletter-input { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 12px 20px; text-align: center; width: 100%; }
    .newsletter-btn { width: 100%; justify-content: center; padding: 12px 24px; }
    .footer-badges-bar { grid-template-columns: repeat(2, 1fr); display: grid; gap: 15px; text-align: left; }
    .badge-item { justify-content: center; }

    .nav-menu { width: 100%; }

    .trust-item { padding: 0 30px; font-size: 0.8rem; }

    .faq-item { padding: 22px 18px; }
}

/* =========================================
   LANDSCAPE MOBILE (short + wide)
   ========================================= */
    .hero-premium { padding: 90px 0 50px; }
    .nav-menu { padding-top: 70px; overflow-y: auto; }
    .cta-grand { padding: 60px 0; }
}

/* =========================================
   NEW DYNAMIC NAVBAR CLASSES
   ========================================= */
/* ── HEADER BAR ── */
header.adspraq-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11,60,93,0.06);
}
header.adspraq-header.scrolled {
    background: rgba(255,255,255,0.96);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11,60,93,0.08);
    border-bottom: 1px solid rgba(11,60,93,0.04);
}
header.adspraq-header.menu-open {
    background: rgba(255,255,255,0.98);
    border-bottom-color: rgba(11,60,93,0.06);
    box-shadow: none;
}
.adspraq-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.adspraq-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.adspraq-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(11, 60, 93, 0.05));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.3s ease,
                opacity 0.3s ease;
}
.adspraq-logo:hover {
    transform: translateY(-3px) scale(1.05);
    animation: logo-hover-float 2s ease-in-out infinite alternate;
}
.adspraq-logo:hover img {
    filter: drop-shadow(0 10px 24px rgba(255, 107, 0, 0.28)) drop-shadow(0 2px 4px rgba(11, 60, 93, 0.12));
}
header.adspraq-header.menu-open .adspraq-logo { color: #0B3C5D; }

@keyframes logo-hover-float {
    0% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    50% { transform: translateY(-5px) scale(1.05) rotate(1.5deg); }
    100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
}

/* Desktop nav links */
.adspraq-desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.adspraq-desktop-nav li a {
    text-decoration: none;
    color: #0B3C5D;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex; align-items: center; gap: 5px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-desktop-nav li a:hover { color: #FF6B00; background: transparent; }
.adspraq-desktop-nav li a:hover::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active { color: #FF6B00; font-weight: 700; }
.adspraq-desktop-nav li a.active::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active .active-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #FF6B00;
    border-radius: 50%;
    margin-left: 4px;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Desktop Dropdown Styles */
.adspraq-has-dropdown {
    position: relative;
}
.desktop-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    margin-left: 2px;
}
.adspraq-has-dropdown:hover .desktop-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.adspraq-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1), 0 3px 10px rgba(0,0,0,0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.adspraq-dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.adspraq-has-dropdown:hover .adspraq-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

.adspraq-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    border-radius: 8px;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-dropdown-link:hover, .adspraq-dropdown-link.active {
    background: rgba(255, 107, 0, 0.05);
    color: #FF6B00;
}
.adspraq-dropdown-link .sub-arrow {
    font-size: 0.55rem;
    opacity: 0.5;
    transition: transform 0.25s ease;
}
.adspraq-dropdown-link:hover .sub-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Submenu */
.adspraq-submenu-parent {
    position: relative;
}
.adspraq-submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: #ffffff;
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 101;
}
.adspraq-submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.adspraq-submenu-parent:hover .adspraq-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* CTA Button */
.adspraq-btn-nav {
    padding: 9px 22px;
    font-size: 0.875rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9A00 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255,107,0,0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    white-space: nowrap;
}
.adspraq-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.45);
}

/* ── HAMBURGER ── */
.adspraq-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    z-index: 1002;
    transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-hamburger:hover { background: rgba(11,60,93,0.06); }
.adspraq-hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, #0B3C5D, #125585);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
header.adspraq-header.menu-open .adspraq-hamburger span { background: #0B3C5D; }
.adspraq-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.adspraq-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── FULLSCREEN OVERLAY ── */
.fs-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 110px 40px 50px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.5s;
}
.fs-menu-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* Decorative bg accent */
.fs-menu-overlay::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.fs-menu-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00, transparent);
}

/* ── NAV ITEMS ── */
.fs-nav-list {
    list-style: none;
    margin: 0 auto; padding: 0;
    width: 100%;
    max-width: 560px;
    position: relative; z-index: 1;
}

.fs-nav-item {
    border-bottom: 1px solid rgba(11, 60, 93, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms);
}
.fs-menu-overlay.open .fs-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.fs-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-nav-link:hover { gap: 26px; }

.fs-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(11, 60, 93, 0.35);
    letter-spacing: 0.1em;
    min-width: 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.fs-link-text {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    font-weight: 800;
    color: rgba(11, 60, 93, 0.85);
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.3s ease;
}
.fs-nav-link:hover .fs-link-text {
    color: #FF6B00;
    transform: translateX(4px);
}
.fs-nav-link.fs-nav-link--active .fs-link-text { color: #FF6B00; }

/* Active pill badge - lighter outline styling */
.fs-active-pill {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 107, 0, 0.06);
    color: #FF6B00;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

/* Active link accent line */
.fs-nav-link--active .fs-link-text {
    position: relative;
}
.fs-nav-link--active .fs-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
}

/* Services arrow */
.fs-arrow {
    font-size: 1.1rem;
    color: rgba(11, 60, 93, 0.35);
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}
.fs-nav-link[aria-expanded="true"] .fs-arrow {
    transform: rotate(180deg);
    color: #FF6B00;
}

/* ── SERVICES SUB PANEL ── */
.fs-sub-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
    opacity: 0;
    padding: 0 0 0 44px;
}
.fs-sub-panel.expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 8px 0 20px 44px;
}
.fs-sub-panel-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}

.fs-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(11, 60, 93, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.25s ease, padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-sub-link:hover { color: #FF6B00; padding-left: 6px; }
.fs-sub-link.fs-sub-link--active { color: #FF6B00; font-weight: 700; }
.fs-sub-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FF6B00;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── FOOTER ROW ── */
.fs-footer {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative; z-index: 1;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    border-top: 1px solid rgba(11, 60, 93, 0.06);
}
.fs-menu-overlay.open .fs-footer { opacity: 1; transform: translateY(0); }

.fs-footer-cta {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00, #FF9A00);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,107,0,0.25);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }

.fs-footer-links { display: flex; gap: 24px; }
.fs-footer-links a {
    font-size: 0.85rem;
    color: rgba(11, 60, 93, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 500;
}
.fs-footer-links a:hover { color: #FF6B00; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .adspraq-desktop-nav, .adspraq-btn-nav { display: none; }
    .adspraq-hamburger { display: flex; }
}
@media (min-width: 993px) {
    .fs-menu-overlay { display: none !important; }
}
@media (max-width: 768px) {
    header.adspraq-header {
        padding: 12px 0;
    }
    header.adspraq-header.scrolled {
        padding: 8px 0;
    }
    .adspraq-logo img {
        height: 48px;
    }
    .adspraq-hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .adspraq-hamburger span {
        width: 20px;
        height: 2px;
    }
    .adspraq-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Fullscreen Mobile Overlay */
    .fs-menu-overlay {
        padding: 80px 24px 30px;
    }
    .fs-nav-link {
        padding: 12px 0;
    }
    .fs-link-text {
        font-size: clamp(1.2rem, 5vw, 1.45rem);
    }
    .fs-active-pill {
        font-size: 0.52rem;
        padding: 1px 6px;
        margin-left: 8px;
    }
    .fs-sub-panel {
        border-left: 2px solid rgba(11, 60, 93, 0.06);
        margin-left: 8px;
        padding: 0 0 0 16px;
    }
    .fs-sub-panel.expanded {
        padding: 4px 0 12px 16px;
    }
    .fs-sub-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    .fs-sub-panel-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .fs-footer {
        margin-top: 30px;
        padding-top: 24px;
        gap: 12px;
    }
    .fs-footer-cta {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.88rem;
    }
    .fs-footer-links {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
}
}

/*INTERACTIVE CTA FORM*/
.cta-form-container {
    max-width: 650px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .cta-choice-grid {
        grid-template-columns: 1fr;
    }
}

.cta-choice-card {
    position: relative;
    cursor: pointer;
}

.cta-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cta-choice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-choice-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.cta-choice-card input[type="radio"]:checked + .cta-choice-content {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.cta-choice-card:hover .cta-choice-content {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .cta-input-row {
        grid-template-columns: 1fr;
    }
}

.cta-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-input-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cta-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.cta-submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   INTERACTIVE CTA MODAL
   ========================================= */
.cta-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-modal.open {
    opacity: 1;
    pointer-events: all;
}

.cta-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 30, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-modal-content {
    position: relative;
    z-index: 2;
    width: min(500px, 90vw);
    background: #0B3C5D;
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.cta-modal.open .cta-modal-content {
    transform: translateY(0);
}

.cta-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-modal-close:hover {
    color: var(--white);
}

.cta-modal-header {
    margin-bottom: 24px;
    text-align: left;
}

.cta-modal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 12px;
}

.cta-modal-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-modal-header p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.cta-modal-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    text-align: left;
}

.cta-modal-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-modal-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-modal-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea.cta-modal-field {
    resize: vertical;
    min-height: 80px;
}

.cta-modal-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   CONTACT TABS & CALENDLY OVERRIDES
   ========================================= */
.contact-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1.5px solid var(--gray-200);
    padding-bottom: 12px;
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: var(--gray-100);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}



/* =========================================
   PRICING STYLES
   ========================================= */
.pricing-section {
    position: relative;
    padding: var(--section-padding);
}

.pricing-position-banner {
    max-width: 800px;
    margin: -20px auto 45px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.pricing-pill-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.pricing-pill-tabs {
    display: inline-flex;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    gap: 4px;
}

.pricing-pill-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-pill-tab:hover {
    color: var(--primary);
}

.pricing-pill-tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 60, 93, 0.2);
}

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

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
    margin: 0 auto 40px;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 45px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 60, 93, 0.15);
}

.pricing-card.popular {
    border: 2.5px solid var(--accent);
    box-shadow: 0 15px 45px rgba(255, 107, 0, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 55px rgba(255, 107, 0, 0.22);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
}

.pricing-card-price {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.02em;
}

.pricing-card-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-card-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}

.pricing-card-btn {
    width: 100%;
    text-align: center;
}

/* Featured Offer Styling */
.featured-offer-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.featured-offer-box::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.featured-offer-box h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.featured-offer-box h3 span {
    color: var(--accent);
}

.featured-offer-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    list-style: none;
}

.featured-offer-features li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

.featured-offer-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
}

.featured-right {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.featured-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-grid, .pricing-grid-2, .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 35px 24px;
    }
    .featured-offer-box {
        padding: 35px 25px;
    }
    .featured-offer-features {
        grid-template-columns: 1fr;
    }
    .featured-offer-box h3 {
        font-size: 1.8rem;
    }
    .pricing-pill-tabs-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 5px 24px 15px;
        margin: 0 -24px 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .pricing-pill-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
    .pricing-pill-tabs {
        display: flex;
        white-space: nowrap;
        border-radius: 30px;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0B3C5D;
    --primary-light: #125585;
    --accent: #FF6B00;
    --accent-hover: #E66000;
    --white: #FFFFFF;
    --black: #1F1F1F;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(11,60,93,0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
}

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

html { scroll-behavior: smooth; font-size: 15px; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   BG GRID OVERLAY
   ========================================= */
.bg-grid {
    position: relative;
    overflow: hidden;
}
.bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(11,60,93,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11,60,93,0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.bg-grid > * { position: relative; z-index: 1; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-padding); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-gray { background-color: var(--gray-100); }

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; color: var(--gray-600); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary { background-color: var(--accent); color: var(--white); }
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary { border-color: var(--primary); color: var(--primary); background-color: transparent; }
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11, 60, 93, 0.12);
    border-bottom: 1px solid rgba(11, 60, 93, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
    position: relative;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }
.logo::before {
    content: '';
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 70%;
    background: linear-gradient(180deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-item { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--accent); background: rgba(255, 107, 0, 0.06); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); font-weight: 700; }

.chevron { font-size: 0.6rem; transition: transform 0.3s ease; opacity: 0.7; }
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }

.btn-nav {
    padding: 9px 22px !important;
    font-size: 0.875rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255, 107, 0, 0.30);
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
}
.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45) !important;
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%) !important;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15), 0 4px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
}
.dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 10px;
    position: relative;
}
.dropdown-link::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.dropdown-link:hover, .dropdown-link.active {
    background: linear-gradient(90deg, rgba(255,107,0,0.08), transparent);
    color: var(--accent);
    padding-left: 20px;
}
.dropdown-link:hover::before, .dropdown-link.active::before { opacity: 1; }

/* Submenu */
.submenu-parent { position: relative; }
.submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: var(--white);
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 60, 93, 0.06);
    overflow: hidden;
    z-index: 101;
}
.submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9A00, var(--accent));
}
.submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.submenu-parent:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }

.mobile-cta-item { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(11, 60, 93, 0.05); }
.hamburger span {
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #030712;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #FF9A00 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    z-index: 2;
}
.footer-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(18, 85, 133, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.footer-inner { padding: 90px 0 0; position: relative; z-index: 1; }
.footer-top { padding-bottom: 60px; }

.footer-newsletter-section {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.newsletter-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.newsletter-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 500px;
}
.newsletter-form-container {
    width: 100%;
    max-width: 420px;
}
.input-glow-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.input-glow-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.92rem;
    font-family: var(--font-main);
}
.newsletter-input:focus {
    outline: none;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.newsletter-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}
.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, #FF9A00 0%, var(--accent) 100%);
}
.newsletter-btn svg {
    transition: transform 0.3s ease;
}
.newsletter-btn:hover svg {
    transform: translateX(4px);
}

.footer-badges-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.badge-item svg {
    color: var(--accent);
    opacity: 0.75;
    transition: transform 0.3s ease;
}
.badge-item:hover {
    color: var(--white);
}
.badge-item:hover svg {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}
.badge-separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    filter: brightness(1.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo-img:hover {
    transform: translateY(-2px) scale(1.02);
}
.footer-logo-img:hover img {
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(255, 107, 0, 0.25));
}
.footer-logo { display: none; }
.brand-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    max-width: 320px !important;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 14px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
    color: var(--white);
}
.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-links:hover a:not(:hover) {
    color: rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}
.contact-item:hover {
    transform: translateX(4px);
}
.contact-icon-wrap {
    width: 38px; height: 38px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.contact-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.38) !important;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2px;
}
.contact-value:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.25);
}
.contact-text-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.45;
    display: inline-block;
    margin-top: 2px;
}

.footer-socials { display: flex; gap: 12px; margin-top: 25px; flex-wrap: wrap; }
.social-link {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link svg {
    transition: transform 0.3s ease;
}
.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
    border-color: transparent;
}
.social-link:hover svg {
    transform: scale(1.1);
}
.social-link.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}
.social-link.twitter:hover {
    background: #111111;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}
.social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; z-index: 2;
}
.copyright { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4) !important; margin: 0; }
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--white);
}
.dot-separator {
    color: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}
.compliance {
    font-size: 0.78rem;
    display: flex; align-items: center; gap: 6px;
}
.compliance p { margin: 0; color: rgba(255, 255, 255, 0.4) !important; }
.compliance::before { content: '🔒'; font-size: 0.75rem; opacity: 0.55; }

.scroll-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* =========================================
   ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes pulse-ring {
    0%   { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* =========================================
   HERO — PREMIUM
   ========================================= */
.hero-premium {
    background: #fff;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

/* =========================================
   TICKER / TRUST BAR
   ========================================= */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust-strip-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    opacity: 0.65;
}
.trust-item span { color: var(--accent); font-size: 1rem; }

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00, transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    display: block;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 6px; }

/* =========================================
   SERVICE CARDS
   ========================================= */
.svc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.svc-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.04), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(11,60,93,0.12); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    transition: transform 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; }
.svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-weight: 700; font-size: 0.85rem;
    text-decoration: none; transition: gap 0.2s;
}
.svc-card .svc-link::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}
.svc-card:hover .svc-link { gap: 10px; }

/* =========================================
   WHY US CARDS
   ========================================= */
.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.why-card:hover {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 20px 50px rgba(11,60,93,0.08);
    transform: translateY(-5px);
}
.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.06));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    border: 1px solid rgba(255,107,0,0.12);
    transition: transform 0.4s;
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(8deg); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-grand {
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 60%, #0d3352 100%);
    position: relative; overflow: hidden;
    padding: 120px 0;
}
.cta-grand::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-grand::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(18,85,133,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-grand h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -0.03em; margin-bottom: 20px;
}
.cta-grand h2 span {
    background: linear-gradient(135deg, var(--accent), #FF9A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   SECTION LABEL
   ========================================= */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    border-radius: 2px;
}

/* =========================================
   CONTACT & FORM STYLES
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-card-glass {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(11, 60, 93, 0.08);
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 600; font-size: 0.88rem;
    color: var(--primary); margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem; color: var(--black);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B3C5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    cursor: pointer;
}
.form-select:focus {
    outline: none; border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.contact-info-list { display: flex; flex-direction: column; gap: 30px; }
.contact-info-card {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-sm);
}
.contact-info-icon {
    width: 50px; height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
}
.contact-info-text h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 700; color: var(--primary); }
.contact-info-text p, .contact-info-text a {
    font-size: 0.92rem; color: var(--gray-600);
    margin: 0; text-decoration: none; line-height: 1.5;
}
.contact-info-text a:hover { color: var(--accent); }

.faq-section { padding: 100px 0; border-top: 1px solid var(--gray-200); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; margin-top: 60px;
}
.faq-item {
    background: var(--white);
    padding: 30px; border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}
.faq-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.faq-item p { font-size: 0.95rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* =========================================
   WHO WE SERVE SECTION
   ========================================= */
.serve-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.serve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF9A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.serve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,107,0,0.15);
}
.serve-card:hover::before { transform: scaleX(1); }
.serve-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,154,0,0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    border: 1px solid rgba(255,107,0,0.15);
}
.serve-card h3 { color: var(--accent); font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.serve-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* =========================================
   SERVICE PAGE STYLES
   ========================================= */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative; overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   DESKTOP REFINEMENTS (992px+)
   ========================================= */
@media (min-width: 992px) {
    .container { padding: 0 40px; }
    .grid-2 { gap: 60px; }
    .grid-3 { gap: 40px; }
    .grid-4 { gap: 30px; }
    header.scrolled .nav-link { padding: 6px 12px; font-size: 0.88rem; }
    header.scrolled .btn-nav { padding: 7px 18px !important; font-size: 0.82rem !important; }
}

/* =========================================
   TABLET (max 992px)
   ========================================= */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-actions .btn-nav { display: none; }
    .mobile-cta-item { display: block; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%; gap: 4px;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }

    .nav-item { width: 100%; }

    .nav-link { width: 100%; font-size: 1rem; padding: 12px 10px; }

    .dropdown, .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, padding 0.3s ease;
        background: var(--gray-100);
        border-radius: var(--border-radius);
    }
    .nav-item.open > .dropdown,
    .submenu-parent.open > .submenu {
        max-height: 1000px;
        padding: 8px 0 8px 16px;
        margin-top: 4px;
    }

    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================
   MOBILE LARGE (max 768px)
   ========================================= */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .section { padding: 60px 0; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    /* Hero */
    .hero-premium { padding: 110px 0 70px; }
    .hero-premium h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-premium p { font-size: 1rem; }

    /* CTA buttons stack */
    .hero-premium [style*="display:flex"][style*="gap:20px"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { padding: 40px 0; }
    .hero-card { display: none; }

    /* Service cards */
    .svc-card { padding: 28px 24px; }

    /* Why cards */
    .why-card { padding: 32px 24px; }

    /* CTA section */
    .cta-grand { padding: 80px 0; }
    .cta-grand [style*="display:flex"][style*="gap:16px"] {
        flex-direction: column;
        align-items: center;
    }
    .cta-grand [style*="display:flex"][style*="gap:40px"] {
        flex-direction: column;
        gap: 24px;
    }
    .cta-grand [style*="width:1px"] { display: none; }

    /* Contact */
    .contact-card-glass { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-grid { margin-top: 40px; gap: 20px; }

    /* Footer */
    .footer-inner { padding: 60px 0 0; }
    .footer-top { padding-bottom: 40px; }
    .footer-top .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .footer-newsletter-section { padding-bottom: 30px; margin-bottom: 30px; text-align: center; }
    .newsletter-grid { flex-direction: column; gap: 20px; text-align: center; }
    .newsletter-info p { max-width: 100%; }
    .newsletter-form-container { max-width: 100%; }
    .footer-badges-bar { flex-wrap: wrap; justify-content: center; gap: 20px; padding: 18px 20px; margin-bottom: 40px; }
    .badge-separator { display: none; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 15px; padding: 24px 0; }
    .footer-bottom-links { justify-content: center; width: 100%; flex-wrap: wrap; gap: 10px 16px; }
    .footer-logo-img { margin: 0 auto 16px; display: block; }
    .footer-logo-img img { height: 60px; margin: 0 auto; }
    .footer-about { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .brand-desc { margin: 10px auto 20px !important; text-align: center; max-width: 100% !important; }
    .footer-socials { justify-content: center; margin-top: 10px; }
    .footer-nav { text-align: center; }
    .footer-title { display: inline-block; width: 100%; text-align: center; margin-bottom: 20px; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links { padding: 0; display: flex; flex-direction: column; align-items: center; }
    .footer-links a:hover { transform: none; }
    .footer-links a::after { display: none; }
    .footer-contact { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .contact-item { justify-content: center; text-align: left; width: fit-content; margin: 0 auto 16px; }
    .contact-item:last-child { margin-bottom: 0; }
    .compliance { font-size: 0.78rem; justify-content: center; }
}

/* =========================================
   MOBILE SMALL (max 480px)
   ========================================= */
@media (max-width: 480px) {
    html { font-size: 13.5px; }

    .container { padding: 0 16px; }

    .hero-premium { padding: 100px 0 60px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    .svc-card { padding: 24px 20px; }
    .svc-icon { width: 50px; height: 50px; }

    .why-card { padding: 28px 20px; }
    .why-icon { width: 60px; height: 60px; }

    .btn { font-size: 0.88rem; padding: 10px 20px; }

    .footer-top .grid-4 { grid-template-columns: 1fr; gap: 36px; }
    .brand-desc { max-width: 100% !important; }
    .footer-logo-img img { height: 50px; }
    .contact-item { justify-content: flex-start; max-width: 260px; margin: 0 auto 16px; }
    .input-glow-group { flex-direction: column; background: transparent; border: none; gap: 12px; padding: 0; border-radius: 0; }
    .newsletter-input { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 12px 20px; text-align: center; width: 100%; }
    .newsletter-btn { width: 100%; justify-content: center; padding: 12px 24px; }
    .footer-badges-bar { grid-template-columns: repeat(2, 1fr); display: grid; gap: 15px; text-align: left; }
    .badge-item { justify-content: center; }

    .nav-menu { width: 100%; }

    .trust-item { padding: 0 30px; font-size: 0.8rem; }

    .faq-item { padding: 22px 18px; }
}

/* =========================================
   LANDSCAPE MOBILE (short + wide)
   ========================================= */
    .hero-premium { padding: 90px 0 50px; }
    .nav-menu { padding-top: 70px; overflow-y: auto; }
    .cta-grand { padding: 60px 0; }
}

/* =========================================
   NEW DYNAMIC NAVBAR CLASSES
   ========================================= */
/* ── HEADER BAR ── */
header.adspraq-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 0;
    border-bottom: 1px solid rgba(11,60,93,0.06);
}
header.adspraq-header.scrolled {
    background: rgba(255,255,255,0.96);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11,60,93,0.08);
    border-bottom: 1px solid rgba(11,60,93,0.04);
}
header.adspraq-header.menu-open {
    background: rgba(255,255,255,0.98);
    border-bottom-color: rgba(11,60,93,0.06);
    box-shadow: none;
}
.adspraq-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.adspraq-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.adspraq-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(11, 60, 93, 0.05));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.3s ease,
                opacity 0.3s ease;
}
.adspraq-logo:hover {
    transform: translateY(-3px) scale(1.05);
    animation: logo-hover-float 2s ease-in-out infinite alternate;
}
.adspraq-logo:hover img {
    filter: drop-shadow(0 10px 24px rgba(255, 107, 0, 0.28)) drop-shadow(0 2px 4px rgba(11, 60, 93, 0.12));
}
header.adspraq-header.menu-open .adspraq-logo { color: #0B3C5D; }

@keyframes logo-hover-float {
    0% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    50% { transform: translateY(-5px) scale(1.05) rotate(1.5deg); }
    100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
}

/* Desktop nav links */
.adspraq-desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.adspraq-desktop-nav li a {
    text-decoration: none;
    color: #0B3C5D;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex; align-items: center; gap: 5px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-desktop-nav li a:hover { color: #FF6B00; background: transparent; }
.adspraq-desktop-nav li a:hover::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active { color: #FF6B00; font-weight: 700; }
.adspraq-desktop-nav li a.active::after { transform: scaleX(1); }
.adspraq-desktop-nav li a.active .active-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #FF6B00;
    border-radius: 50%;
    margin-left: 4px;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Desktop Dropdown Styles */
.adspraq-has-dropdown {
    position: relative;
}
.desktop-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    margin-left: 2px;
}
.adspraq-has-dropdown:hover .desktop-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.adspraq-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1), 0 3px 10px rgba(0,0,0,0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 100;
}
.adspraq-dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-dropdown::after {
    content: '';
    position: absolute;
    top: -15px; left: 0; right: 0;
    height: 15px;
    background: transparent;
}
.adspraq-has-dropdown:hover .adspraq-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

.adspraq-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    border-radius: 8px;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.adspraq-dropdown-link:hover, .adspraq-dropdown-link.active {
    background: rgba(255, 107, 0, 0.05);
    color: #FF6B00;
}
.adspraq-dropdown-link .sub-arrow {
    font-size: 0.55rem;
    opacity: 0.5;
    transition: transform 0.25s ease;
}
.adspraq-dropdown-link:hover .sub-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Submenu */
.adspraq-submenu-parent {
    position: relative;
}
.adspraq-submenu {
    position: absolute;
    top: 0; left: calc(100% + 8px);
    background: #ffffff;
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.3s;
    border: 1px solid rgba(11, 60, 93, 0.06);
    z-index: 101;
}
.adspraq-submenu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 14px 14px 0 0;
}
.adspraq-submenu::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15px; width: 15px;
    background: transparent;
}
.adspraq-submenu-parent:hover .adspraq-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* CTA Button */
.adspraq-btn-nav {
    padding: 9px 22px;
    font-size: 0.875rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9A00 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 14px rgba(255,107,0,0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    white-space: nowrap;
}
.adspraq-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.45);
}

/* ── HAMBURGER ── */
.adspraq-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    z-index: 1002;
    transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.adspraq-hamburger:hover { background: rgba(11,60,93,0.06); }
.adspraq-hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: linear-gradient(90deg, #0B3C5D, #125585);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
header.adspraq-header.menu-open .adspraq-hamburger span { background: #0B3C5D; }
.adspraq-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.adspraq-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── FULLSCREEN OVERLAY ── */
.fs-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 110px 40px 50px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.5s;
}
.fs-menu-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

/* Decorative bg accent */
.fs-menu-overlay::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.fs-menu-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00, transparent);
}

/* ── NAV ITEMS ── */
.fs-nav-list {
    list-style: none;
    margin: 0 auto; padding: 0;
    width: 100%;
    max-width: 560px;
    position: relative; z-index: 1;
}

.fs-nav-item {
    border-bottom: 1px solid rgba(11, 60, 93, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 60ms + 100ms);
}
.fs-menu-overlay.open .fs-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.fs-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-nav-link:hover { gap: 26px; }

.fs-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(11, 60, 93, 0.35);
    letter-spacing: 0.1em;
    min-width: 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.fs-link-text {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    font-weight: 800;
    color: rgba(11, 60, 93, 0.85);
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.3s ease;
}
.fs-nav-link:hover .fs-link-text {
    color: #FF6B00;
    transform: translateX(4px);
}
.fs-nav-link.fs-nav-link--active .fs-link-text { color: #FF6B00; }

/* Active pill badge - lighter outline styling */
.fs-active-pill {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 107, 0, 0.06);
    color: #FF6B00;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

/* Active link accent line */
.fs-nav-link--active .fs-link-text {
    position: relative;
}
.fs-nav-link--active .fs-link-text::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A00);
    border-radius: 2px;
}

/* Services arrow */
.fs-arrow {
    font-size: 1.1rem;
    color: rgba(11, 60, 93, 0.35);
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}
.fs-nav-link[aria-expanded="true"] .fs-arrow {
    transform: rotate(180deg);
    color: #FF6B00;
}

/* ── SERVICES SUB PANEL ── */
.fs-sub-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
    opacity: 0;
    padding: 0 0 0 44px;
}
.fs-sub-panel.expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 8px 0 20px 44px;
}
.fs-sub-panel-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}

.fs-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(11, 60, 93, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.25s ease, padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-sub-link:hover { color: #FF6B00; padding-left: 6px; }
.fs-sub-link.fs-sub-link--active { color: #FF6B00; font-weight: 700; }
.fs-sub-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FF6B00;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── FOOTER ROW ── */
.fs-footer {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative; z-index: 1;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    border-top: 1px solid rgba(11, 60, 93, 0.06);
}
.fs-menu-overlay.open .fs-footer { opacity: 1; transform: translateY(0); }

.fs-footer-cta {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B00, #FF9A00);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,107,0,0.25);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.fs-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }

.fs-footer-links { display: flex; gap: 24px; }
.fs-footer-links a {
    font-size: 0.85rem;
    color: rgba(11, 60, 93, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 500;
}
.fs-footer-links a:hover { color: #FF6B00; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .adspraq-desktop-nav, .adspraq-btn-nav { display: none; }
    .adspraq-hamburger { display: flex; }
}
@media (min-width: 993px) {
    .fs-menu-overlay { display: none !important; }
}
@media (max-width: 768px) {
    header.adspraq-header {
        padding: 12px 0;
    }
    header.adspraq-header.scrolled {
        padding: 8px 0;
    }
    .adspraq-logo img {
        height: 48px;
    }
    .adspraq-hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .adspraq-hamburger span {
        width: 20px;
        height: 2px;
    }
    .adspraq-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .adspraq-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Fullscreen Mobile Overlay */
    .fs-menu-overlay {
        padding: 80px 24px 30px;
    }
    .fs-nav-link {
        padding: 12px 0;
    }
    .fs-link-text {
        font-size: clamp(1.2rem, 5vw, 1.45rem);
    }
    .fs-active-pill {
        font-size: 0.52rem;
        padding: 1px 6px;
        margin-left: 8px;
    }
    .fs-sub-panel {
        border-left: 2px solid rgba(11, 60, 93, 0.06);
        margin-left: 8px;
        padding: 0 0 0 16px;
    }
    .fs-sub-panel.expanded {
        padding: 4px 0 12px 16px;
    }
    .fs-sub-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    .fs-sub-panel-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .fs-footer {
        margin-top: 30px;
        padding-top: 24px;
        gap: 12px;
    }
    .fs-footer-cta {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.88rem;
    }
    .fs-footer-links {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
}
}

/*INTERACTIVE CTA FORM*/
.cta-form-container {
    max-width: 650px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .cta-choice-grid {
        grid-template-columns: 1fr;
    }
}

.cta-choice-card {
    position: relative;
    cursor: pointer;
}

.cta-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cta-choice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-choice-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.cta-choice-card input[type="radio"]:checked + .cta-choice-content {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.cta-choice-card:hover .cta-choice-content {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .cta-input-row {
        grid-template-columns: 1fr;
    }
}

.cta-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-input-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-field::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cta-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.cta-submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   INTERACTIVE CTA MODAL
   ========================================= */
.cta-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-modal.open {
    opacity: 1;
    pointer-events: all;
}

.cta-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 30, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-modal-content {
    position: relative;
    z-index: 2;
    width: min(500px, 90vw);
    background: #0B3C5D;
    background: linear-gradient(135deg, #061e2e 0%, #0B3C5D 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.cta-modal.open .cta-modal-content {
    transform: translateY(0);
}

.cta-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-modal-close:hover {
    color: var(--white);
}

.cta-modal-header {
    margin-bottom: 24px;
    text-align: left;
}

.cta-modal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 12px;
}

.cta-modal-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-modal-header p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.cta-modal-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    text-align: left;
}

.cta-modal-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-modal-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.cta-modal-field:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea.cta-modal-field {
    resize: vertical;
    min-height: 80px;
}

.cta-modal-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =========================================
   CONTACT TABS & CALENDLY OVERRIDES
   ========================================= */
.contact-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1.5px solid var(--gray-200);
    padding-bottom: 12px;
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: var(--gray-100);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}



/* =========================================
   PRICING STYLES
   ========================================= */
.pricing-section {
    position: relative;
    padding: var(--section-padding);
}

.pricing-position-banner {
    max-width: 800px;
    margin: -20px auto 45px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.pricing-pill-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.pricing-pill-tabs {
    display: inline-flex;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    gap: 4px;
}

.pricing-pill-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-pill-tab:hover {
    color: var(--primary);
}

.pricing-pill-tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 60, 93, 0.2);
}

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

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
    margin: 0 auto 40px;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 45px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 60, 93, 0.15);
}

.pricing-card.popular {
    border: 2.5px solid var(--accent);
    box-shadow: 0 15px 45px rgba(255, 107, 0, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 55px rgba(255, 107, 0, 0.22);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
}

.pricing-card-price {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.02em;
}

.pricing-card-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-card-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}

.pricing-card-btn {
    width: 100%;
    text-align: center;
}

/* Featured Offer Styling */
.featured-offer-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.featured-offer-box::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #FF9A00 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.featured-offer-box h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.featured-offer-box h3 span {
    color: var(--accent);
}

.featured-offer-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    list-style: none;
}

.featured-offer-features li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

.featured-offer-features li .check-icon {
    color: var(--accent);
    font-weight: 800;
}

.featured-right {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.featured-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-grid, .pricing-grid-2, .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 35px 24px;
    }
    .featured-offer-box {
        padding: 35px 25px;
    }
    .featured-offer-features {
        grid-template-columns: 1fr;
    }
    .featured-offer-box h3 {
        font-size: 1.8rem;
    }
}
header.adspraq-header {
    padding: 10px 0 !important;
}
header.adspraq-header.scrolled {
    padding: 6px 0 !important;
}

@media (max-width: 768px) {
    header.adspraq-header {
        padding: 10px 0 !important;
    }
    header.adspraq-header.scrolled {
        padding: 6px 0 !important;
    }
    .adspraq-logo img {
        height: 70px !important;
    }
    header.adspraq-header.scrolled .adspraq-logo img {
        height: 70px !important;
    }
    .fs-menu-overlay {
        padding-top: 120px !important;
    }
    .pricing-pill-tabs-wrapper {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 5px 24px 15px !important;
        margin: 0 -24px 30px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .pricing-pill-tabs-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    .pricing-pill-tabs {
        display: flex !important;
        white-space: nowrap !important;
        border-radius: 30px !important;
        margin: 0 !important; /* Force margin to 0 to prevent left-clipping on scroll overflow */
        padding: 6px !important;
    }
}
