/* ==========================================================================
   CL PINTURAS - STYLE SHEET (OFFICIAL LOGO THEME: NAVY & ORANGE)
   ========================================================================== */

/* --- SYSTEM CONFIGURATION --- */
:root {
    /* Color Palette matching the official logo */
    --primary: #0c2340;          /* Official Deep Navy Blue */
    --primary-light: #183e6c;    /* Lighter Navy */
    --primary-dark: #061223;     /* Darkest Navy */
    --primary-card: #102a4d;     /* Card background on dark theme */
    
    --secondary: #ff6b00;        /* Official Vibrant Orange */
    --secondary-light: #ff8533;  /* Lighter Orange */
    --secondary-dark: #cc5600;   /* Darker Orange */
    --secondary-glow: rgba(255, 107, 0, 0.4);
    
    --text-dark: #0c2340;        /* Navy text for headers */
    --text-muted: #4a5c75;       /* Muted slate blue */
    --text-light: #f8fafc;       /* Off-White */
    --text-light-muted: #cbd5e1; /* Light Slate */
    
    --bg-light: #ffffff;
    --bg-light-alt: #f4f7fa;     /* Light grayish blue background */
    
    --success: #10b981;          /* Emerald Green */
    --success-bg: rgba(16, 185, 129, 0.1);
    
    /* Gradients */
    --grad-orange: linear-gradient(135deg, #ff8533 0%, #ff6b00 50%, #cc5600 100%);
    --grad-orange-hover: linear-gradient(135deg, #ffa066 0%, #ff8533 50%, #ff6b00 100%);
    --grad-dark: linear-gradient(135deg, #061223 0%, #0c2340 100%);
    --grad-text: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.04);
    --shadow-md: 0 8px 24px -4px rgba(12, 35, 64, 0.06), 0 4px 12px -2px rgba(12, 35, 64, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(12, 35, 64, 0.08), 0 10px 20px -5px rgba(12, 35, 64, 0.05);
    --shadow-xl: 0 35px 60px -15px rgba(6, 18, 35, 0.25);
    --shadow-glow-orange: 0 10px 25px -5px rgba(255, 107, 0, 0.35);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.text-gradient {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.blue-text {
    color: var(--primary);
}

.blue-text-footer {
    color: var(--text-light);
}

.orange-text {
    color: var(--secondary);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--grad-orange);
    color: var(--text-light);
    box-shadow: var(--shadow-glow-orange);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.75s ease;
}

.btn-primary:hover::after {
    left: 125%;
}

.btn-primary:hover {
    background: var(--grad-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -5px rgba(255, 107, 0, 0.55);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* --- FLOATING WHATSAPP BUTTON (ULTRA-PREMIUM) --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 68px;
    height: 68px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    text-decoration: none;
}

.pulse-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: var(--radius-full);
    z-index: 1;
    opacity: 0.4;
    animation: wavePulse 2.5s infinite;
}

.whatsapp-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
    transition: var(--transition-normal);
}

.whatsapp-float-btn:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    background-color: #059669;
}

.phone-icon-float {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

/* Custom official WhatsApp SVG styling */
.wa-icon-svg-float {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    display: block;
}

.wa-icon-svg-header {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: block;
}

.wa-btn-icon-svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.whatsapp-tooltip-text {
    position: absolute;
    right: 80px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.whatsapp-tooltip-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float-btn:hover .whatsapp-tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- TOP INFO BAR --- */
.top-info-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.link-wa:hover {
    color: var(--text-light);
}

/* --- LUXURY HEADER --- */
.luxury-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(12, 35, 64, 0.96); /* Solid/Blur Navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.header-flex {
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg-wrapper {
    flex-shrink: 0;
}

.official-logo-svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.brand-meta {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-main .blue-text {
    color: #ffffff; /* White text for contrast in navbar */
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a3b8cc;
}

.desktop-navbar {
    display: flex;
    gap: 28px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light-muted);
    padding: 8px 0;
    transition: var(--transition-fast);
    position: relative;
}

.nav-item:hover {
    color: var(--secondary-light);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-orange);
    transition: var(--transition-normal);
}

.nav-item:hover::after {
    width: 100%;
}

.header-action-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-mobile-wa-header {
    display: none;
}

.btn-header-cta {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    padding: 10px 20px;
}

.btn-header-cta:hover {
    background: var(--grad-orange);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.nav-hamburger {
    display: none;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.nav-hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- MOBILE NAVIGATION PANEL --- */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--primary);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 30px 24px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right var(--transition-slow);
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-panel-header svg path[stroke="#0c2340"] {
    stroke: #ffffff; /* Make SVG logo white in mobile menu */
}

.mobile-panel-header svg text {
    fill: #ffffff;
}

.panel-close {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-panel-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-panel-link:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.mobile-panel-footer {
    margin-top: auto;
}

/* ==========================================================================
   HERO PREMIUM (Navy Theme & Complex Grid)
   ========================================================================== */
.hero-premium {
    position: relative;
    background: var(--grad-dark);
    padding: 100px 0 160px;
    overflow: hidden;
    color: var(--text-light);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.07) 0%, rgba(255, 107, 0, 0) 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--secondary);
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light-muted);
}

.hero-premium h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

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

.hero-cta-group {
    display: flex;
    gap: 18px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-hero-secondary {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-benefit {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light-muted);
}

/* Hero Overlapping Image Grid */
.hero-visual-block {
    display: flex;
    justify-content: flex-end;
}

.visual-stack-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.main-image-card {
    border-radius: var(--radius-lg);
    border: 5px solid rgba(255, 255, 255, 0.04);
    background-color: var(--primary-dark);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.95);
}

.overlay-glass-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    padding: 24px;
    border-radius: var(--radius-md);
    width: 240px;
    z-index: 10;
    background: rgba(12, 35, 64, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl);
}

.stat-badge-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-huge-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.6rem;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

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

.stat-meta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff !important;
}

.stat-meta-desc {
    font-size: 0.8rem;
    color: var(--secondary) !important;
    font-weight: 700;
}

.satisfaction-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(12, 35, 64, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl);
}

.star-rating-row {
    display: flex;
    gap: 2px;
}

.icon-star-fill {
    width: 15px;
    height: 15px;
    color: var(--secondary);
    fill: var(--secondary);
}

.satisfaction-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Curved Divider SVG */
.svg-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.svg-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.svg-wave-divider .shape-fill {
    fill: var(--bg-light-alt);
}

/* ==========================================================================
   STATS COUNTER BAR (Elegant Grid)
   ========================================================================== */
.stats-panel-bar {
    position: relative;
    z-index: 20;
    margin-top: -30px;
    background-color: var(--bg-light);
}

.stats-flex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    padding: 30px;
}

.stat-block-item {
    text-align: center;
    border-right: 1px solid var(--slate-100);
    padding: 10px;
}

.stat-block-item:last-child {
    border-right: none;
}

.stat-num-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-val-counter {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.stat-val-suffix {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-left: 2px;
}

.stat-val-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SERVICES PREMIUM SECTION
   ========================================================================== */
.services-premium {
    padding: 120px 0 100px;
    background-color: var(--bg-light-alt);
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-heading-center h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-lead-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.premium-services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.premium-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.card-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.premium-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

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

.card-service-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.premium-card:hover .card-service-icon {
    background: var(--grad-orange);
    color: var(--text-light);
    box-shadow: var(--shadow-glow-orange);
    border-color: transparent;
}

.card-service-icon i {
    width: 22px;
    height: 22px;
}

.card-body-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-content h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.card-body-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.card-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: auto;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.icon-bullet-check {
    width: 18px;
    height: 18px;
    color: var(--success);
    background-color: var(--success-bg);
    border-radius: var(--radius-full);
    padding: 2px;
    flex-shrink: 0;
}

.card-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition-fast);
    align-self: flex-start;
}

.card-btn-link i {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.card-btn-link:hover {
    color: var(--text-dark);
}

.card-btn-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   DIFFERENTIALS SECTION (Dark Obsidian Theme)
   ========================================================================== */
.technology-premium {
    padding: 120px 0;
    background: var(--grad-dark);
    color: var(--text-light);
    position: relative;
}

.tag-amber {
    color: var(--secondary) !important;
}

.technology-premium h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tech-lead-desc {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    max-width: 800px;
    margin-bottom: 60px;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tech-item-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition-normal);
}

.tech-item-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
}

.tech-icon-circle {
    width: 54px;
    height: 54px;
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    transition: var(--transition-normal);
}

.tech-item-card:hover .tech-icon-circle {
    background-color: var(--secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-glow-orange);
}

.tech-icon-circle i {
    width: 24px;
    height: 24px;
}

.tech-item-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.tech-item-card p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

/* ==========================================================================
   WORK PROCESS SECTION
   ========================================================================== */
.process-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

/* Connector line between steps on desktop */
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--slate-100);
    z-index: 1;
}

.process-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border: 3px solid var(--slate-100);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.process-step-item:hover .step-number {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

.step-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   QUOTE REQUEST SIMULATOR (Range Slider, WITHOUT pricing values)
   ========================================================================== */
.quote-simulator-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.simulator-glass-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(12, 35, 64, 0.05);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light-alt);
}

.simulator-header {
    text-align: center;
    margin-bottom: 50px;
}

.simulator-header h2 {
    font-family: var(--font-heading);
    font-weight: 850;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.simulator-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.simulator-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-label-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    display: block;
}

/* Pills service selector */
.pill-service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pill-selector-btn {
    padding: 16px 20px;
    background-color: var(--bg-light);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pill-selector-btn i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.pill-selector-btn:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.pill-selector-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.pill-selector-btn.active i {
    color: var(--secondary);
}

/* Area numeric input styles */
.input-unit-badge {
    position: absolute;
    right: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--secondary);
    pointer-events: none;
}

.input-wrapper-icon input[type="number"] {
    padding-right: 50px;
}

/* Inputs Inline Layout */
.input-inline-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-wrapper-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.input-wrapper-icon input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--slate-200);
    background-color: var(--bg-light);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.input-wrapper-icon input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(12, 35, 64, 0.05);
}

.simulator-submit-area {
    margin-top: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.submit-note-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.submit-note-info i {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.btn-submit-pulse {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* ==========================================================================
   TESTIMONIALS PREMIUM
   ========================================================================== */
.testimonials-premium {
    padding: 120px 0;
    background-color: var(--bg-light-alt);
}

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

.premium-testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.premium-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--slate-100);
    padding-top: 20px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--grad-orange);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.profile-meta h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.profile-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ PREMIUM SECTION
   ========================================================================== */
.faq-premium {
    padding: 120px 0;
    background-color: var(--bg-light);
}

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

.faq-accordion-item {
    background-color: var(--bg-light-alt);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-accordion-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-accordion-trigger:hover {
    color: var(--secondary);
}

.faq-accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-accordion-item.active {
    border-color: var(--secondary);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 24px;
}

.faq-accordion-item.active .faq-accordion-panel {
    padding-bottom: 24px;
}

.faq-accordion-panel p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   HIGH-CONVERTING CTA BANNER (Obsidian & Gold Combo)
   ========================================================================== */
.cta-banner-premium {
    padding: 120px 0;
    position: relative;
    background: var(--grad-dark);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta-premium-flex {
    position: relative;
    z-index: 10;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-premium-flex h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.cta-premium-flex p {
    font-size: 1.15rem;
    color: var(--text-light-muted);
    max-width: 650px;
    margin-bottom: 20px;
}

.cta-actions-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-cta-glow {
    padding: 18px 44px;
    font-size: 1.05rem;
    box-shadow: 0 12px 35px -5px rgba(255, 107, 0, 0.45);
}

.cta-sub-note {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    font-weight: 500;
}

/* ==========================================================================
   PREMIUM FOOTER
   ========================================================================== */
.footer-premium {
    background-color: var(--primary-dark);
    color: var(--text-light-muted);
    padding: 90px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-columns {
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 0.85fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-logo-style .brand-main {
    color: var(--text-light);
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light-muted);
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--success);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.social-icon-btn i {
    width: 16px;
    height: 16px;
}

.social-row-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
}

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

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-details i {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.badge-status {
    align-self: flex-start;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 7px;
    height: 7px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: indicatorPulse 2s infinite;
}

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

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

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-meta-links a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-premium h1 {
        font-size: 3.2rem;
    }
    
    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .pill-service-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-navbar, .btn-header-cta {
        display: none;
    }
    
    .btn-mobile-wa-header {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: var(--radius-full);
        background: var(--grad-orange);
        color: var(--text-light);
        box-shadow: var(--shadow-glow-orange);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-fast);
    }
    
    .btn-mobile-wa-header i {
        width: 20px;
        height: 20px;
    }
    
    .btn-mobile-wa-header:hover, .btn-mobile-wa-header:active {
        transform: scale(1.05);
        background: var(--grad-orange-hover);
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .mobile-panel-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
        flex-grow: 1;
    }
    
    .mobile-panel-footer {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-visual-block {
        justify-content: center;
    }
    
    .overlay-glass-card {
        display: none; /* remove overlays to prevent layout overflow on tablets */
    }
    
    .satisfaction-badge {
        display: none;
    }
    
    .stats-flex-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    
    .stat-block-item {
        border-right: none;
    }
    
    .stat-block-item:nth-child(odd) {
        border-right: 1px solid var(--slate-100);
    }
    
    .premium-services-cards {
        grid-template-columns: 1fr;
    }
    
    .simulator-glass-card {
        padding: 30px 20px;
    }
    
    .input-inline-flex {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .top-info-bar {
        display: none; /* Save space on small phones */
    }
    
    .hero-premium h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .stats-flex-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-block-item {
        border-right: none !important;
        border-bottom: 1px solid var(--slate-100);
        padding-bottom: 20px;
    }
    
    .stat-block-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Fix the quote simulator on mobile (ta mto junto / bugado) */
    .simulator-glass-card {
        padding: 28px 18px !important;
    }
    
    .simulator-form {
        gap: 28px !important;
    }
    
    .form-section-step {
        gap: 12px !important;
    }
    
    .pill-service-selector {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .pill-selector-btn {
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .pill-selector-btn i {
        width: 18px !important;
        height: 18px !important;
    }
    
    .input-inline-flex {
        gap: 14px !important;
    }
    
    .cta-premium-flex h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
    }
    
    .whatsapp-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .phone-icon-float {
        width: 22px;
        height: 22px;
    }
}
