/* ==========================================================================
   RCORETECH - CORPORATE DESIGN SYSTEM & STYLESHEET
   Colors: Solid Logo Blue (#0052cc), Vibrant Orange CTA (#ff6b00), Dark Navy (#0b132b), Light Grey (#f8fafc)
   ========================================================================== */

:root {
    --primary-blue: #0052cc;
    --primary-blue-dark: #003d99;
    --primary-blue-light: #4c8dff;
    --orange-cta: #ff6b00;
    --orange-cta-hover: #e05d00;
    --dark-navy: #0b132b;
    --dark-surface: #131e3a;
    --light-bg: #f8fafc;
    --light-surface: #ffffff;
    --border-light: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-shadow: 0 10px 30px rgba(0, 82, 204, 0.08);

    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-orange {
    background-color: var(--orange-cta);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.btn-orange:hover {
    background-color: var(--orange-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.45);
    color: var(--text-white);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-remote {
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 82, 204, 0.25);
    padding: 8px 16px;
    font-size: 0.88rem;
    border-radius: 30px;
}

.btn-remote:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.25);
}

.btn-outline-blue {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #cbd5e1;
}

/* ==========================================================================
   NAVBAR & HEADER
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

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

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

/* Seletor de Idiomas */
.lang-selector {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn.active {
    background: var(--light-surface);
    color: var(--primary-blue);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lang-divider {
    color: #cbd5e1;
    font-size: 0.8rem;
    user-select: none;
}

/* Mobile Hambúrguer */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light-surface);
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open { right: 0; }

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

.drawer-logo { height: 40px; }

.drawer-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.drawer-footer { margin-top: auto; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--dark-navy);
    color: var(--text-white);
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: rgba(0, 82, 204, 0.35);
}

.hero-glow-2 {
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 0, 0.2);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #38bdf8;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--orange-cta);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-cta);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text-white);
}

.typed-wrapper {
    color: var(--orange-cta);
    background: linear-gradient(90deg, #ff6b00 0%, #ffa048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typed-cursor {
    display: inline-block;
    color: var(--orange-cta);
    font-weight: 300;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 36px auto;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 32px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   SERVICES SECTION (REVEAL SLIDE-UP OVERLAY - SEM ESPELHAMENTO DE TEXTO)
   ========================================================================== */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.section-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

/* Cartão de Serviço Glassmorphic com Painel Deslizante sem Espelhamento */
.service-glass-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 290px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.service-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.12);
    border-color: rgba(0, 82, 204, 0.3);
}

.card-front-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-blue { background: rgba(0, 82, 204, 0.1); color: var(--primary-blue); }
.icon-orange { background: rgba(255, 107, 0, 0.1); color: var(--orange-cta); }
.icon-purple { background: rgba(147, 51, 234, 0.1); color: #9333ea; }
.icon-teal { background: rgba(13, 148, 136, 0.1); color: #0d9488; }

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: auto;
}

.card-reveal-btn {
    margin-top: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Painel de Detalhes em Glassmorphism que Desliza de Baixo para Cima */
.card-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 5;
}

.service-glass-card:hover .card-details-overlay,
.service-glass-card:focus-within .card-details-overlay {
    transform: translateY(0);
    opacity: 1;
}

.details-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.service-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-checklist li {
    font-size: 0.94rem;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   CONTACT SECTION & RECAPTCHA STYLING
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.info-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.info-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item:last-child { margin-bottom: 0; }

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.map-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.map-header {
    padding: 14px 20px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
}

.map-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
}

/* Contact Form */
.contact-form {
    background: var(--light-surface);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

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

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

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

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--light-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15);
}

/* COMPONENTE RECAPTCHA */
.recaptcha-wrapper {
    margin-bottom: 24px;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 18px;
    max-width: 310px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.recaptcha-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.recaptcha-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4285f4;
}

.recaptcha-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.recaptcha-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-brand {
    font-size: 0.65rem;
    font-weight: 800;
    color: #555;
    letter-spacing: 0.5px;
}

.recaptcha-privacy {
    font-size: 0.58rem;
    color: #888;
}

.form-feedback {
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(11, 19, 43, 0.9);
    color: var(--text-white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark-navy);
    color: var(--text-white);
    padding: 80px 0 30px 0;
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--orange-cta);
}

.footer-contact-line {
    color: #94a3b8;
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #64748b;
    font-size: 0.88rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}

.legal-links a {
    color: #94a3b8;
}

.legal-links a:hover {
    color: var(--orange-cta);
}

.legal-links span {
    color: #475569;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--light-surface);
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: var(--transition);
    overflow: hidden;
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-body {
    padding: 28px;
    overflow-y: auto;
}

.modal-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    background: #f8fafc;
}

.modal-service-section {
    margin-bottom: 24px;
}

.modal-service-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.modal-service-section ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
}

.remote-icon-wrapper {
    margin-bottom: 16px;
}

.steps-box {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-title { font-size: 2.4rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { display: none; }

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

@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
}