/* ==========================================================================
   PRIMEHABITAT - DESIGN SYSTEM & STYLESHEET
   Colors: Deep Navy Blue & Vivid Safety Red Accents
   ========================================================================== */

:root {
    /* Color Palette */
    --navy-950: #070d17;
    --navy-900: #0b1528;
    --navy-800: #102242;
    --navy-700: #1b3566;
    --primary-blue: #1d4ed8;
    --primary-blue-hover: #1e40af;
    --primary-blue-light: #eff6ff;
    --primary-blue-border: #bfdbfe;
    
    /* Red Urgency / SOS Palette */
    --red-900: #7f1d1d;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --red-light: #fef2f2;
    --red-border: #fecaca;

    /* WhatsApp Green */
    --whatsapp-green: #25d366;
    --whatsapp-green-dark: #128c7e;

    /* Neutrals */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 32px -8px rgba(15, 23, 42, 0.15), 0 8px 16px -4px rgba(15, 23, 42, 0.08);
    --shadow-glow-red: 0 0 25px rgba(220, 38, 38, 0.45);
    --shadow-glow-blue: 0 0 25px rgba(29, 78, 216, 0.35);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5.5rem 0;
}

.bg-light {
    background-color: var(--slate-50);
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--red-600) !important;
}

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

.mt-2 { margin-top: 0.75rem; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.45);
}

.btn-danger {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-danger:hover {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.55);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.25rem 2.4rem;
    font-size: 1.15rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.pulse-red {
    position: relative;
    animation: pulseGlowRed 2s infinite;
}

@keyframes pulseGlowRed {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* ==========================================================================
   TOP EMERGENCY BAR
   ========================================================================== */
.emergency-bar {
    background: linear-gradient(90deg, #991b1b, #dc2626, #b91c1c);
    color: var(--white);
    padding: 0.55rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: var(--shadow-sm);
}

.emergency-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #fef08a;
    border-radius: 50%;
    display: inline-block;
    animation: blinkDot 1.2s infinite ease-in-out;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.emergency-contacts {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.emergency-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-top-btn {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.whatsapp-top-btn:hover {
    background-color: #1eb857;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 38px;
    z-index: 100;
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy-900), var(--primary-blue));
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-prime {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: var(--navy-950);
}

.brand-habitat {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: var(--red-600);
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--slate-500);
    margin-top: 2px;
}

.nav-quick-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-700);
    background-color: var(--slate-100);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-fast);
}

.quick-link:hover {
    color: var(--primary-blue);
    background-color: var(--primary-blue-light);
    border-color: var(--primary-blue-border);
    transform: translateY(-1px);
}

.quick-link i {
    font-size: 0.82rem;
    color: var(--primary-blue);
}

.quick-link-sos {
    color: var(--red-600);
    background-color: var(--red-light);
    border-color: var(--red-border);
    font-weight: 700;
}

.quick-link-sos i {
    color: var(--red-600);
}

.quick-link-sos:hover {
    color: var(--white);
    background-color: var(--red-600);
    border-color: var(--red-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Modern Hamburger Button */
.hamburger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.95rem;
    background: var(--navy-900);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(11, 21, 40, 0.15);
}

.hamburger-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.hamburger-lines {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ==========================================================================
   DRAWER / OFFCANVAS MENU & OVERLAY
   ========================================================================== */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 40, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 998;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: var(--white);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer-menu.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid var(--slate-200);
    background: var(--slate-50);
}

.drawer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
}

.drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--slate-200);
    background: var(--white);
    color: var(--slate-700);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.drawer-close:hover {
    background: var(--red-light);
    color: var(--red-600);
    border-color: var(--red-border);
}

.drawer-body {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-section-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
    margin-bottom: 0.2rem;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-700);
    transition: all var(--transition-fast);
}

.drawer-link i {
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
    color: var(--primary-blue);
}

.drawer-link:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    transform: translateX(4px);
}

.drawer-link.drawer-link-sos {
    color: var(--red-600);
    font-weight: 700;
    background: var(--red-light);
}

.drawer-link.drawer-link-sos i {
    color: var(--red-600);
}

.drawer-link.drawer-link-sos:hover {
    background: var(--red-600);
    color: var(--white);
}

.drawer-link.drawer-link-sos:hover i {
    color: var(--white);
}

.drawer-sos-card {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
    color: var(--white);
    padding: 1.4rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-sos-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--red-600);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.drawer-sos-card h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.drawer-sos-card p {
    font-size: 0.82rem;
    color: var(--slate-300);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.drawer-sos-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-footer {
    padding: 1.2rem 1.6rem;
    border-top: 1px solid var(--slate-200);
    background: var(--slate-50);
    font-size: 0.8rem;
    color: var(--slate-500);
    text-align: center;
}

.drawer-footer p {
    font-weight: 700;
    color: var(--navy-950);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, #0d1e3d 100%);
    color: var(--white);
    padding: 5rem 0 6.5rem;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(29, 78, 216, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(220, 38, 38, 0.18) 0%, transparent 50%),
        linear-gradient(to right, rgba(11, 21, 40, 0.85), rgba(11, 21, 40, 0.65));
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.1rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.highlight-blue {
    color: #60a5fa;
}

.highlight-red {
    color: #f87171;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.hero-description {
    font-size: 1.12rem;
    color: var(--slate-300);
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-bottom: 2.8rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--slate-200);
}

.feature-item i {
    color: #60a5fa;
    font-size: 1.1rem;
}

/* Quick Card on Hero */
.quick-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--slate-900);
}

.quick-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 1rem;
}

.quick-card-header h3 {
    font-size: 1.35rem;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.quick-card-header h3 i {
    color: var(--primary-blue);
}

.quick-card-header p {
    font-size: 0.85rem;
    color: var(--slate-500);
}

/* Forms general */
.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 0.4rem;
}

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

.input-icon-wrap i {
    position: absolute;
    left: 1rem;
    color: var(--slate-400);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-icon-wrap input,
.input-icon-wrap select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.78rem 1rem 0.78rem 2.6rem;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--slate-800);
    transition: all var(--transition-fast);
}

.form-group textarea {
    padding: 0.78rem 1rem;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background-color: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.2rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-500);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--slate-300);
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.3rem;
    color: var(--slate-900);
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--red-600));
    border-radius: var(--radius-full);
    margin: 0.8rem auto 1.2rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ==========================================================================
   PILLARS OVERVIEW (3 MAIN CARDS)
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1.5px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

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

.pillar-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08);
}

.pillar-icon-red {
    background: var(--red-light);
    color: var(--red-600);
}

.pillar-tag {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
}

.pillar-tag-red {
    color: var(--red-600);
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--navy-900);
}

.pillar-text {
    font-size: 0.93rem;
    color: var(--slate-600);
    margin-bottom: 1.4rem;
    line-height: 1.55;
}

.pillar-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.pillar-list li {
    font-size: 0.9rem;
    color: var(--slate-700);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pillar-list li i {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-top: 4px;
}

.card-sos .pillar-list li i {
    color: var(--red-600);
}

.pillar-footer {
    border-top: 1px solid var(--slate-100);
    padding-top: 1.2rem;
}

.pillar-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.pillar-card:hover .pillar-link {
    gap: 0.8rem;
}

.pillar-link-red {
    color: var(--red-600);
}

/* Highlight SOS Pillar */
.card-sos {
    border-color: var(--red-border);
    background: linear-gradient(to bottom, #ffffff, #fff8f8);
}

.card-sos:hover {
    border-color: var(--red-500);
    box-shadow: 0 20px 35px -5px rgba(220, 38, 38, 0.18);
}

.pillar-badge-sos {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--red-600);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}

/* ==========================================================================
   SERVICE DETAIL SECTIONS
   ========================================================================== */
.detail-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.8rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.category-pill.blue {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
}

.detail-title {
    font-size: 2.4rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.detail-lead {
    font-size: 1.08rem;
    color: var(--slate-600);
    max-width: 650px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
}

.sub-service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-base);
}

.sub-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.sub-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.sub-icon-red {
    background: var(--red-light);
    color: var(--red-600);
}

.border-red {
    border-color: var(--red-border);
}

.border-red:hover {
    border-color: var(--red-600);
}

.sub-service-card h4 {
    font-size: 1.22rem;
    color: var(--navy-900);
    margin-bottom: 0.7rem;
}

.sub-service-card p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.sub-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sub-features li {
    font-size: 0.85rem;
    color: var(--slate-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.sub-features li i {
    color: var(--primary-blue);
    margin-top: 3px;
}

/* Spotlight Card: Abertura de Carotes */
.carotes-spotlight-card {
    position: relative;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.8rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.carotes-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--navy-950);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
}

.carotes-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    align-items: center;
}

.carotes-icon-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.carotes-text h3 {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.carotes-text p {
    font-size: 0.98rem;
    color: var(--slate-300);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.carotes-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.carote-detail-box {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.carote-detail-box i {
    color: #38bdf8;
    font-size: 1.15rem;
    margin-top: 3px;
}

.carote-detail-box strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.carote-detail-box span {
    font-size: 0.83rem;
    color: var(--slate-400);
    line-height: 1.4;
}

.carotes-side-action {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.action-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.carotes-side-action p {
    font-size: 0.88rem;
    color: var(--slate-300);
    margin-bottom: 1.4rem;
}

/* SOS Banner & Section */
.sos-section {
    background-color: #fff9f9;
}

.sos-banner {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #dc2626 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
    text-align: center;
}

.sos-top-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.sos-live-pulse {
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: blinkDot 1s infinite;
}

.sos-main-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.sos-description {
    font-size: 1.12rem;
    max-width: 680px;
    margin: 0 auto 2.2rem;
    color: #fecaca;
    line-height: 1.6;
}

.sos-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* ==========================================================================
   INTERACTIVE CALCULATOR / QUOTE SIMULATOR
   ========================================================================== */
.calculator-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-100) 100%);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.5rem;
    align-items: start;
}

.calc-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--slate-200);
}

.calc-step {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--slate-100);
    padding-bottom: 1.8rem;
}

.calc-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.1rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
}

.area-selector-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.area-pill {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--slate-200);
    background: var(--slate-50);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--slate-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
}

.area-pill:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--white);
}

.area-pill.active {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
}

.area-pill-sos.active {
    border-color: var(--red-600);
    background-color: var(--red-light);
    color: var(--red-600);
}

.services-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.check-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
}

.check-card:hover {
    border-color: var(--slate-400);
    background: var(--white);
}

.check-card.checked {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue-light);
    font-weight: 600;
}

.check-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.calc-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.8rem;
}

/* Side summary card */
.calc-summary-card {
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: sticky;
    top: 130px;
    box-shadow: var(--shadow-lg);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
}

.summary-header h4 {
    font-size: 1.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-badge {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}

.summary-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.6rem;
}

.summary-list {
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.summary-list li {
    font-size: 0.88rem;
    color: var(--slate-200);
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-guarantees {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.guarantee-row {
    font-size: 0.85rem;
    color: var(--slate-300);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.guarantee-row i {
    color: #60a5fa !important;
}

/* ==========================================================================
   FEATURES / PORQUÊ NÓS
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-base);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue-border);
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-icon-red {
    background: var(--red-light);
    color: var(--red-600);
}

.feature-box h4 {
    font-size: 1.18rem;
    margin-bottom: 0.6rem;
    color: var(--navy-900);
}

.feature-box p {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background: var(--navy-950);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-card {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.35);
}

.stars {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--slate-200);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
    max-width: 820px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.accordion-item.active {
    border-color: var(--primary-blue);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.6rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    cursor: pointer;
    text-align: left;
}

.accordion-header i {
    color: var(--slate-400);
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 1.6rem;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding-bottom: 1.3rem;
}

.accordion-body p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.text-white {
    color: #93c5fd !important;
}

.contact-title {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--slate-300);
    margin-bottom: 2.2rem;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-card-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.red-bg { background-color: var(--red-600); }
.green-bg { background-color: var(--whatsapp-green); }
.blue-bg { background-color: var(--primary-blue); }

.contact-small {
    display: block;
    font-size: 0.78rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-item strong {
    font-size: 1.05rem;
    color: var(--white);
}

.form-container-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    color: var(--slate-900);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.6rem;
    color: var(--navy-900);
    margin-bottom: 0.3rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 1.6rem;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #050a12;
    color: var(--slate-400);
    padding-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.brand-col .logo-footer .brand-prime {
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.2rem 0 1.5rem;
    color: var(--slate-400);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 1.3rem;
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.6rem 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.45rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    position: relative;
    transition: all var(--transition-base);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-sos {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    animation: pulseGlowRed 2s infinite;
}

.floating-whatsapp {
    background-color: var(--whatsapp-green);
}

.floating-top {
    background-color: var(--navy-900);
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.floating-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy-950);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--navy-950);
    color: var(--white);
    padding: 1.1rem 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
    border-left: 5px solid var(--whatsapp-green);
    max-width: min(520px, 92vw);
    width: auto;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.toast-icon {
    font-size: 1.45rem;
    color: var(--whatsapp-green);
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-content strong {
    display: block;
    font-size: 0.98rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.toast-content span {
    font-size: 0.88rem;
    color: var(--slate-300);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--slate-400);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.toast-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .carotes-content {
        grid-template-columns: 1fr;
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-summary-card {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1.8rem;
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 860px) {
    .nav-quick-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .emergency-container {
        justify-content: center;
        text-align: center;
    }

    .header-cta {
        display: none;
    }

    .drawer-menu {
        max-width: 85vw;
    }

    .hero {
        padding: 3.5rem 0 4.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .calc-inputs-grid,
    .calc-actions,
    .form-row,
    .carotes-grid-details,
    .area-selector-pills {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .sos-main-title {
        font-size: 2rem;
    }

    .sos-banner {
        padding: 2.2rem 1.5rem;
    }

    .sos-cta-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1rem;
    }

    .stat-card:last-child {
        border-bottom: none;
    }
}
