:root {
    --color-primary: #D32F2F;
    --color-primary-dark: #B71C1C;
    --color-secondary: #111111;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F9FAFB;
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #111111;
    --color-border: #E5E7EB;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --font-sans: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-white { color: white; }
.text-grey { color: #A1A1AA; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mb-4 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.text-lg { font-size: 1.125rem; font-weight: 500; }
.center-text { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

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

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

.btn-call {
    display: none;
    background-color: var(--color-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, var(--color-primary) 0%, #c62828 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.urgency-bar .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.urgency-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-bar svg {
    flex-shrink: 0;
}

/* Bold Urgency Bar */
.urgency-bar-bold {
    background: var(--color-primary);
    color: white;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.urgency-bar-bold .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.urgency-divider {
    opacity: 0.6;
}

/* Header */
.site-header {
    background-color: white;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    text-decoration: none;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 4px;
    mix-blend-mode: multiply;
    background: transparent;
}

.logo-light .logo-img {
    mix-blend-mode: multiply;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background-color: #000000;
    transition: 0.3s;
}

/* Dark Header for Homepage */
.site-header-dark {
    background-color: white;
    position: absolute;
    width: 100%;
    top: 48px;
    box-shadow: none;
}

.logo-light {
    color: white;
}

.main-nav-light a {
    color: var(--color-secondary);
}

.main-nav-light a:hover,
.main-nav-light a.active {
    color: var(--color-primary);
}

.main-nav-light a.active::after {
    background-color: var(--color-primary);
}

.mobile-toggle-light span {
    background-color: #000000;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.floating-btn-phone {
    background-color: var(--color-primary);
    color: white;
}

/* Bold Hero Section */
.hero-bold {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content-bold {
    max-width: 800px;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-headline-accent {
    color: var(--color-primary);
}

.hero-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-text-bold {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 650px;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--color-primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 3px solid var(--color-primary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-hero-cta:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

/* Bold Trust Strip */
.trust-strip-bold {
    background-color: var(--color-secondary);
    padding: 25px 0;
    border-top: 4px solid var(--color-primary);
}

.trust-items-bold {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-divider {
    color: var(--color-primary);
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d32f2f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.badge {
    background-color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
}

.badge svg {
    color: var(--color-primary);
}

.hero-tagline {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--color-secondary);
    padding: 25px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item svg {
    color: var(--color-primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: white;
}

.section-grey {
    background-color: var(--color-bg-light);
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--color-secondary);
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.05) 100%);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.feature-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cta-block {
    text-align: center;
    margin-top: 2rem;
}

/* Emergency Section */
.section-emergency {
    background-color: var(--color-bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.emergency-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    z-index: 1;
}

.emergency-content-wrapper {
    position: relative;
    z-index: 2;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-text {
    text-align: left;
}

.emergency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.emergency-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-weight: 500;
    border-left: 3px solid var(--color-primary);
}

.emergency-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.emergency-image {
    position: relative;
}

.emergency-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* Areas We Cover */
.areas-content {
    max-width: 600px;
    margin: 0 auto;
}

.area-highlight {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

/* How It Works - Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 2px;
    background-color: var(--color-border);
}

.step-card:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 15px auto;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Footer */
.site-footer {
    padding: 60px 0 20px 0;
}

.footer-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.footer-contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-hours {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #A1A1AA;
}

.footer-hours p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.footer-hours svg {
    color: var(--color-primary);
}

.footer-tagline {
    color: white;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1.25rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #71717A;
}

/* Services Page */
.page-header {
    background-color: var(--color-secondary);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #A1A1AA;
}

.page-header-agent {
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.8) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

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

.service-category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-category-card .card-image {
    height: 200px;
    overflow: hidden;
}

.service-category-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-category-card:hover .card-image img {
    transform: scale(1.05);
}

.service-category-card .card-header {
    background-color: var(--color-bg-light);
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-border);
}

.service-category-card h2 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.service-category-card .card-body {
    padding: 30px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.service-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background: var(--color-bg-light);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.cta-pretext {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Agent Support Page */
.agent-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.intro-large {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.agent-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 120px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-nav-links a:hover {
    background-color: var(--color-bg-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .emergency-text {
        text-align: center;
    }
    
    .emergency-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-card::after {
        display: none;
    }
    
    .floating-buttons {
        right: 15px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Bold Hero Mobile */
    .hero-bold {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-lead {
        font-size: 1.15rem;
    }
    
    .hero-text-bold {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero-cta {
        padding: 16px 28px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .site-header-dark {
        top: 42px;
    }
    
    .urgency-bar-bold {
        font-size: 0.75rem;
        padding: 10px 0;
        letter-spacing: 0.05em;
    }
    
    .urgency-bar-bold .container {
        gap: 8px;
    }
    
    .trust-items-bold {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .floating-buttons {
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        right: 20px;
        left: auto;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }

    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-sub {
        font-size: 0.9rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 350px;
    }
    
    .main-nav {
        display: none;
    }
    
    .btn-whatsapp span {
        display: none;
    }
    
    .btn-call {
        display: inline-flex;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-card {
        display: flex;
        align-items: center;
        text-align: left;
        background: var(--color-bg-light);
        border-radius: 12px;
        padding: 15px 20px;
    }
    
    .step-number {
        margin: 0 15px 0 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .urgency-bar .container {
        font-size: 0.8rem;
        gap: 15px;
    }
    
    .urgency-bar span {
        gap: 5px;
    }
    
    .trust-items {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .emergency-list li {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .footer-contact-actions {
        flex-direction: column;
        align-items: center;
    }
}
