/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-base: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-bg-contrast: #0F172A;
    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #FFFFFF;
    
    --color-accent: #2563EB; /* Premium Cobalt Blue */
    --color-accent-hover: #1D4ED8;
    --color-accent-light: #EFF6FF; /* Sky Blue tint */
    --color-accent-glow: rgba(37, 99, 235, 0.15);
    
    --color-border: #E2E8F0;
    --color-border-light: rgba(15, 23, 42, 0.06);
    --color-card-bg: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-premium: 0 15px 35px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    --shadow-modal: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Borders & Spacing */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-body: 'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-bg-contrast);
    font-weight: 700;
    line-height: 1.2;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: 0 4px 14px var(--color-accent-glow);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(37, 99, 235, 0.08);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-text-muted);
}

.btn-white {
    background-color: #FFFFFF;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-bg-contrast);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-contrast);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   MOBILE FULL-SCREEN OVERLAY MENU
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.mobile-menu-close {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-bg-contrast);
    cursor: pointer;
}

.mobile-menu-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-bg-contrast);
    transition: transform 0.3s ease;
    width: fit-content;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    transform: translateX(10px);
}

.mobile-menu-footer p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.mobile-phone-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.mobile-email-link {
    font-size: 1.1rem;
    color: var(--color-text-main);
    text-decoration: underline;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-review-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 8px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.hero-review-pill:hover {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.pill-avatars {
    display: flex;
    align-items: center;
}

.pill-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pill-avatars .pill-avatar:first-child {
    margin-left: 0;
}

.pill-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #F59E0B; /* Warm amber gold */
}

.pill-stars svg {
    width: 14px;
    height: 14px;
}

.pill-score {
    font-size: 0.85rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.pill-score strong {
    font-weight: 700;
    color: var(--color-bg-contrast);
}

.hero-content .badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-bg-contrast);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

/* Hero Visual Image */
.hero-visual-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    display: block;
}

.hero-visual-img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
}

/* ==========================================================================
   INTERACTIVE SIMULATOR SECTION
   ========================================================================== */
.simulator-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

.simulator-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.sim-tab-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.sim-tab-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.sim-tab-meta p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.sim-tab:hover {
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.sim-tab.active {
    background-color: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.sim-tab.active .sim-tab-icon {
    color: var(--color-accent);
}

.sim-tab.active .sim-tab-meta h4 {
    color: var(--color-accent);
}

/* Simulated TV Bezel */
.simulator-display-container {
    width: 100%;
    min-width: 0;
}

.tv-carousel-scroll-container {
    display: flex;
    align-items: start;
    position: relative;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    box-sizing: border-box;
}

.tv-carousel-scroll-container::-webkit-scrollbar {
    display: none;
}

.tv-card-wrapper {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.tv-bezel {
    width: 100%;
    background-color: transparent;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-sizing: border-box;
}

.tv-screen {
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: block;
}

.tv-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tv-card-header-tab {
    display: none;
    cursor: pointer;
}

.simulator-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 10px 16px;
}

.sim-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.sim-dot:hover {
    background-color: var(--color-text-muted);
}

.sim-dot.active {
    background-color: var(--color-accent);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   FEATURES / SERVICES SECTION
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--color-text-muted);
}

/* Sustainability box */
.sustainability-box {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(255,255,255,0.7) 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.sus-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sus-icon {
    width: 28px;
    height: 28px;
    color: #10B981;
}

.sustainability-box p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 900px;
}

/* ==========================================================================
   CASES / PORTFOLIO SECTION
   ========================================================================== */
.cases-section {
    padding: 100px 0;
    background-color: var(--color-bg-base);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.case-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

.case-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-bg-contrast);
    color: var(--color-text-light);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.case-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.case-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.case-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.case-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-placeholder {
    width: 44px;
    height: 44px;
    background-color: var(--color-accent);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-author h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.stars {
    color: #F59E0B;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.source-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: #E2E8F0;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-style: italic;
    line-height: 1.7;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-accordion-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-base);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-bg-contrast);
}

.accordion-chevron {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.contact-info-panel > p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-item a, .detail-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-bg-contrast);
}

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

/* Form panel styling */
.contact-form-panel {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-glow);
}

.optional-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.form-feedback-message {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.form-feedback-message.success {
    color: #10B981;
}

.form-feedback-message.error {
    color: #EF4444;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-contrast);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h4, .footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-brand .logo {
    color: #FFFFFF;
}

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

.footer-links ul,
.footer-contact ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-contact li {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li::marker,
.footer-contact li::marker {
    display: none !important;
    content: "" !important;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #FFFFFF;
}

.footer-links p,
.footer-contact p {
    font-size: 0.95rem;
}

.footer-credits a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-credits a:hover {
    color: #60A5FA;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING DYNAMIC ISLAND (Light Mode)
   ========================================================================== */
.dynamic-island {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    padding: 10px 12px 10px 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    display: flex;
    align-items: center;
    z-index: 1500;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    opacity: 0;
}

.dynamic-island.visible {
    bottom: 24px;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
    opacity: 1;
}

.dynamic-island-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.island-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-call {
    background-color: #2563EB;
    color: #FFFFFF;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
}

.btn-call:hover {
    background-color: #1D4ED8;
    transform: scale(1.1);
}

.btn-offerte {
    background-color: var(--color-bg-contrast);
    color: #FFFFFF;
    height: 44px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.btn-offerte:hover {
    background-color: #334155;
    transform: scale(1.03);
}

.island-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(15, 23, 42, 0.12);
}

.island-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.btn-call .island-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   OFFERTE MODAL & MULTI-STEP WIZARD
   ========================================================================== */
.offerte-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.offerte-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.offerte-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
}

.offerte-modal-content {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-modal);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 2;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
}

.offerte-modal.open .offerte-modal-content {
    transform: scale(1) translateY(0);
}

.offerte-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-text-muted);
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.offerte-modal-close:hover {
    color: var(--color-bg-contrast);
    background-color: var(--color-border);
    transform: scale(1.05);
}

.offerte-form-wrapper {
    padding: 40px 36px;
}

/* Wizard Steps progress bar */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.wizard-step-circle {
    width: 36px;
    height: 36px;
    background-color: var(--color-bg-alt);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.wizard-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wizard-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-border);
    margin: 0 12px;
    margin-top: -24px;
}

.wizard-step.active .wizard-step-circle {
    background-color: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-glow);
}

.wizard-step.active .wizard-step-label {
    color: var(--color-accent);
}

.wizard-step.completed .wizard-step-circle {
    background-color: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
}

/* Wizard Panels switcher */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: slideFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-label-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-bg-contrast);
}

.modal-form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-form-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 36px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.wizard-actions .btn-prev {
    margin-right: auto;
}

/* Radio groups inside form */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.radio-option input[type="radio"] {
    accent-color: var(--color-accent);
    width: 18px;
    height: 18px;
}

.radio-option:hover {
    background-color: var(--color-bg-alt);
}

/* Success Wizard Pane */
.wizard-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    animation: slideFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #D1FAE5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.wizard-success h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.wizard-success p {
    color: var(--color-text-muted);
    max-width: 440px;
}

/* ==========================================================================
   FLOATING STAT BADGES
   ========================================================================== */
.hero-visual {
    position: relative;
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    white-space: nowrap;
}

.badge-1 {
    top: 20%;
    left: -40px;
    animation: float-badge 6s ease-in-out infinite;
}

.badge-2 {
    top: 50%;
    right: -30px;
    animation: float-badge 6s ease-in-out infinite;
    animation-delay: 2s;
}

.badge-3 {
    bottom: 12%;
    left: -10px;
    animation: float-badge 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .logo-img {
        height: 28px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2em;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    
    .floating-badge {
        padding: 8px 14px;
        gap: 8px;
    }
    
    .badge-number {
        font-size: 1.25rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
    
    .badge-1 {
        top: 10%;
        left: 10px;
    }
    
    .badge-2 {
        top: 45%;
        right: 10px;
    }
    
    .badge-3 {
        bottom: 8%;
        left: 20px;
    }
    
    .hero-visual-img {
        height: 380px;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-tabs {
        display: none !important;
    }
    
    .tv-carousel-scroll-container {
        width: auto;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        gap: 16px;
    }
    
    .tv-carousel-scroll-container.no-snap {
        scroll-snap-type: none !important;
    }
    
    .tv-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        scroll-snap-align: center;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .tv-card-header-tab {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        background-color: var(--color-bg-alt);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        text-align: left;
        transition: var(--transition-smooth);
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
    }
    
    .tv-card-header-tab:hover {
        background-color: var(--color-bg-base);
    }
    
    .tv-card-header-tab:active {
        transform: scale(0.98);
    }
    
    .sim-tab-icon-wrapper {
        width: 24px;
        height: 24px;
        color: var(--color-text-muted);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sim-tab-icon-wrapper svg {
        width: 100%;
        height: 100%;
    }
    
    .tv-card-wrapper.active .tv-card-header-tab {
        background-color: #FFFFFF;
        border-color: var(--color-accent);
        box-shadow: var(--shadow-lg);
    }
    
    .tv-card-wrapper.active .tv-card-header-tab .sim-tab-icon-wrapper {
        color: var(--color-accent);
    }
    
    .tv-card-wrapper.active .tv-card-header-tab h4 {
        color: var(--color-accent);
    }
    
    .features-grid, .reviews-grid, .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-top: 90px;
        padding-bottom: 45px;
    }

    .hero-container {
        gap: 24px;
    }

    .hero-visual-img {
        height: 240px;
    }
    
    .navbar {
        height: 64px;
    }
    
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }

    .hero-lead {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    
    /* Sitewide section paddings */
    .simulator-section,
    .features-section,
    .reviews-section,
    .cases-section,
    .faq-section,
    .contact-section,
    .software-features-section,
    .narrowcasting-steps-section {
        padding: 45px 0 !important;
    }
    
    .section-header {
        margin-bottom: 28px !important;
    }

    .section-header h2 {
        font-size: 1.85rem !important;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.95rem;
    }
    
    .features-grid, .reviews-grid, .cases-grid, .features-grid-custom, .steps-container-custom {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 28px !important;
    }

    .feature-card, .review-card, .case-card, .feature-card-custom, .step-card-custom {
        padding: 24px 20px !important;
    }
    
    .offerte-form-wrapper {
        padding: 24px 18px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }
    
    .contact-container {
        gap: 28px;
    }

    .contact-form-panel {
        padding: 24px 18px;
    }

    .main-footer {
        padding: 45px 0 24px !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 35px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-lead {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .contact-form-panel {
        padding: 20px 14px;
    }

    .section-header h2 {
        font-size: 1.65rem !important;
    }

    .offerte-modal {
        padding: 16px 12px !important;
    }

    .offerte-form-wrapper {
        padding: 28px 16px !important;
    }

    .offerte-modal-close {
        top: 12px !important;
        right: 12px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 1.5rem !important;
    }
    
    .dynamic-island {
        padding: 8px 10px 8px 18px;
        max-width: 95%;
    }
    
    .dynamic-island-container {
        gap: 8px;
    }
    
    .btn-call {
        width: 38px;
        height: 38px;
    }
    
    .btn-offerte {
        height: 38px;
        padding: 0 18px;
        font-size: 0.82rem;
    }
    
    .dynamic-island.visible {
        bottom: 16px;
    }
}

/* ==========================================================================
   SOFTWARE FEATURES & WORKFLOW TIMELINE
   ========================================================================== */
.software-features-section {
    padding: 100px 0;
    background-color: var(--color-bg-base);
}

.features-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-custom {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.feature-card-custom:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.feature-card-custom:hover::before {
    opacity: 1;
}

.feature-icon-custom {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(37, 99, 235, 0.06);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-custom svg {
    width: 24px;
    height: 24px;
}

.feature-card-custom h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-bg-contrast);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card-custom p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Process Steps styling */
.narrowcasting-steps-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.steps-container-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card-custom {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.03);
    border-color: rgba(37, 99, 235, 0.1);
}

.step-number-custom {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.step-content-custom h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-bg-contrast);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content-custom p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .software-features-section,
    .narrowcasting-steps-section {
        padding: 60px 0;
    }
    
    .features-grid-custom,
    .steps-container-custom {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}

/* ==========================================================================
   SUBPAGE DARK HERO & TRANSPARENT NAVBAR OVERRIDES
   ========================================================================== */
.page-hero {
    padding: 200px 0 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #0B0F19; /* Deep space dark background */
    background-image: linear-gradient(180deg, rgba(11, 15, 25, 0.85) 0%, rgba(11, 15, 25, 0.95) 100%),
                      url('Images/jose-losada-ZgBJHk1SI74-unsplash.webp');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 3.8rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
}

.page-hero h1 span {
    color: #3B82F6 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #3B82F6 !important;
    text-shadow: none !important;
}

.page-hero p {
    font-size: 1.25rem !important;
    color: #94A3B8 !important;
    line-height: 1.6 !important;
    max-width: 650px;
    margin: 0 auto !important;
}

.page-hero .hero-ctas {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.page-hero .hero-ctas .btn {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* Subpage transparent navbar white text override */
.navbar.navbar-dark-hero:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar.navbar-dark-hero:not(.scrolled) .nav-link:hover,
.navbar.navbar-dark-hero:not(.scrolled) .nav-link.active {
    color: #FFFFFF !important;
}

.navbar.navbar-dark-hero:not(.scrolled) .nav-link::after {
    background-color: #FFFFFF !important;
}

.navbar.navbar-dark-hero:not(.scrolled) .phone-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.navbar.navbar-dark-hero:not(.scrolled) .phone-btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #FFFFFF !important;
}

.navbar.navbar-dark-hero:not(.scrolled) .mobile-menu-toggle .bar {
    background-color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 45px 0 !important; /* Compact padding for mobile */
    }
    
    .page-hero h1 {
        font-size: 2.1rem !important; /* Compacter headings */
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }
    
    .page-hero p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 10px;
    }
    
    .page-hero .hero-ctas {
        margin-top: 18px !important;
    }
}

/* ==========================================================================
   WIZARD SERVICE GUARANTEE CARDS & SECTOR OTHER
   ========================================================================== */
.service-guarantees-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.service-guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background-color: var(--color-card-bg, #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md, 12px);
    /* No hover effect - clear static included feature card */
}

.service-guarantee-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.12);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-guarantee-icon svg {
    width: 18px;
    height: 18px;
}

.service-guarantee-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main, #0F172A);
    margin-bottom: 3px;
}

.service-guarantee-text p {
    font-size: 0.84rem;
    color: var(--color-text-muted, #64748B);
    line-height: 1.4;
    margin: 0;
}

.wizard-sector-other-group {
    animation: fadeIn 0.3s ease-in-out;
}




