/* ==========================================================================
   SIM SERVICIO AL PACIENTE — ESTILOS PRINCIPALES (REFINADO & ELEGANTE)
   Cuidado y Acompañamiento en Internación y Domicilio | CABA y GBA
   ========================================================================== */

:root {
    --primary: #0d3b66;
    --primary-light: #185a88;
    --primary-dark: #07223b;
    --secondary: #2a9d8f;
    --secondary-light: #48bcae;
    --secondary-dark: #1b6c62;
    --accent: #f4a261;
    --accent-dark: #e76f51;
    --success: #25d366;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft-blue: #f0f6fa;
    --bg-soft-teal: #f0fdf9;
    --bg-dark: #091e30;
    --bg-card: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --border-light: #e2e8f0;
    --border-teal: #ccfbf1;
    
    --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.05);
    --shadow-md: 0 8px 24px rgba(13, 59, 102, 0.08);
    --shadow-lg: 0 16px 40px rgba(13, 59, 102, 0.12);
    --shadow-xl: 0 24px 60px rgba(13, 59, 102, 0.16);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Vector SVG Helper */
.icon-svg {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.15em;
    fill: currentColor;
    flex-shrink: 0;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-teal { color: var(--secondary); }
.text-navy { color: var(--primary); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid var(--border-teal);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: #ffffff;
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 157, 143, 0.45);
    color: #ffffff;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-pulse {
    animation: pulseBtn 2.2s infinite;
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   TOP BAR & HEADER (COMPACT & 1 LINE FIX)
   ========================================================================== */

.top-bar {
    background: #08243e;
    color: #ffffff;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #4ade80;
    flex-shrink: 0;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.top-bar-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.top-bar-right a:hover {
    color: #48bcae;
}

/* Header & Navbar */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 2px;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 50px 0 70px;
    background: linear-gradient(135deg, #f0f6fa 0%, #e8f4f8 50%, #f4faf8 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-title span {
    color: var(--secondary);
    position: relative;
}

.hero-lead {
    font-size: clamp(1.02rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(13, 59, 102, 0.1);
}

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

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #ffffff;
}

.hero-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.floating-card-urgent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--secondary);
    max-width: 270px;
}

.floating-card-urgent .card-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-urgent h4 {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.floating-card-urgent p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* Urgent Ribbon */
.urgent-banner {
    background: #092c4c;
    color: #ffffff;
    padding: 20px 0;
}

.urgent-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.urgent-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.urgent-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.2);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgent-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.urgent-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   PERSONALIZÁ EL PLAN DE CUIDADO (REFINADO & ATRACTIVO)
   ========================================================================== */
.plan-builder-section {
    padding: 76px 0;
    background: #ffffff;
}

.plan-builder-card {
    background: #ffffff;
    border: 1.5px solid var(--border-teal);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 12px 36px rgba(13, 59, 102, 0.07);
    max-width: 980px;
    margin: 0 auto;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.builder-step-box {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition);
}

.builder-step-box:focus-within,
.builder-step-box:hover {
    border-color: var(--secondary);
    background: var(--bg-soft-teal);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.step-num-badge {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
}

.custom-select-wrap {
    position: relative;
}

.custom-select-wrap select {
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select-wrap select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.builder-result-panel {
    background: linear-gradient(135deg, #f0fdf9 0%, #f0f6fa 100%);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    border: 1px solid var(--border-teal);
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.pill-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.result-info h4 {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--primary);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 157, 143, 0.4);
}

.service-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 59, 102, 0.92);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-badge.teal {
    background: rgba(42, 157, 143, 0.95);
}

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

.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features-list {
    margin-bottom: 20px;
    margin-top: auto;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 7px;
}

.service-features-list li .icon-svg {
    color: var(--secondary);
    margin-top: 3px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.service-card-footer a {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--secondary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-footer a:hover {
    color: var(--primary);
}

/* ==========================================================================
   CUIDAMOS AL CUIDADOR (CON FOTO DE ADULTO MAYOR)
   ========================================================================== */
.caregiver-section {
    padding: 84px 0;
    background: linear-gradient(135deg, #092642 0%, #0d3b66 60%, #104875 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.caregiver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.caregiver-content h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 18px;
}

.caregiver-content p {
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 26px;
}

.relief-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.relief-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.relief-item h4 {
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-light);
}

.relief-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    line-height: 1.45;
}

.caregiver-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.18);
}

.caregiver-image-wrapper img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* ==========================================================================
   BILINGUAL CARE
   ========================================================================== */
.bilingual-section {
    padding: 76px 0;
    background: #ffffff;
}

.bilingual-card {
    background: linear-gradient(135deg, #f0f6fa 0%, #e6f3f8 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #bce1ec;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.bilingual-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.bilingual-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.lang-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.lang-code {
    background: rgba(42, 157, 143, 0.15);
    color: var(--secondary-dark);
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.bilingual-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 270px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================================================
   PROCESS, HOSPITALS, TESTIMONIALS, FAQ
   ========================================================================== */
.process-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process-step {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sanatorios-section {
    padding: 76px 0;
    background: #ffffff;
}

.sanatorios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.sanatorio-item {
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    transition: var(--transition);
}

.sanatorio-item:hover {
    background: #ffffff;
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.sanatorio-item .icon-svg {
    color: var(--secondary);
}

.testimonials-section {
    padding: 84px 0;
    background: var(--bg-soft-blue);
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 59, 102, 0.1);
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
}

.author-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 84px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact-section {
    padding: 84px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.channel-item:hover {
    background: #ffffff;
    border-color: var(--secondary);
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon.wp {
    background: rgba(37, 211, 102, 0.15);
    color: #20ba5a;
}

.channel-icon.ig {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.channel-icon.fb {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
}

.channel-info h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.channel-info p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

/* SEO Silo */
.seo-silo-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.seo-silo-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.seo-silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.seo-silo-link {
    font-size: 0.84rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.seo-silo-link:hover {
    color: var(--secondary-dark);
    background: var(--bg-soft-teal);
    transform: translateX(3px);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
    gap: 36px;
    margin-bottom: 44px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
    position: relative;
    padding-bottom: 6px;
}

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

.footer-brand p {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

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

.footer-links li {
    margin-bottom: 8px;
}

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

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-info p {
    font-size: 0.86rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-info p .icon-svg {
    color: var(--secondary-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-credit {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 400;
    color: #64748b;
}

.footer-credit a {
    color: #94a3b8;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--secondary-light);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(20px, calc(20px + env(safe-area-inset-bottom, 0px)));
    z-index: 1500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.whatsapp-float-icon {
    width: 30px;
    height: 30px;
}

/* Toast */
.toast-notice {
    position: fixed;
    bottom: 86px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    border-left: 4px solid var(--secondary);
}

.toast-notice.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1080px) {
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .hero-grid, .caregiver-grid, .bilingual-card, .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .builder-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    .top-bar-inner {
        justify-content: space-between;
        font-size: 0.76rem;
    }
    .top-bar-desc {
        display: none;
    }
    .navbar {
        height: 64px;
    }
    .brand-logo img {
        height: 42px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid var(--border-light);
        gap: 14px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    .nav-cta {
        display: none;
    }
    .hero {
        padding: 32px 0 48px;
    }
    .floating-card-urgent {
        position: static;
        margin-top: 14px;
        max-width: 100%;
    }
    .services-grid, .relief-points, .footer-grid {
        grid-template-columns: 1fr;
    }
    .plan-builder-card {
        padding: 20px 16px;
    }
    .whatsapp-float {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: max(20px, calc(20px + env(safe-area-inset-bottom, 0px)));
        width: 52px;
        height: 52px;
    }
    .whatsapp-float-icon {
        width: 26px;
        height: 26px;
    }
}
