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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1e293b;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

/* ===== CLINICARE COLORS ===== */
:root {
    --clinicare-primary: #2c5aa0;
    --clinicare-primary-dark: #1e4178;
    --clinicare-primary-light: #3d6bb5;
    --clinicare-accent: #4a9eff;
    --clinicare-success: #10b981;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    background: white;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--clinicare-primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-login {
    background: linear-gradient(135deg, var(--clinicare-accent) 0%, var(--clinicare-primary) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--clinicare-primary);
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clinicare-primary);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: #64748b;
    transition: all 0.3s ease;
}

/* ===== PARALLAX EFFECT ===== */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-image: url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.402) 0%, rgba(226, 232, 240, 0.55) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.parallax-bg:hover::before {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(226, 232, 240, 0.45) 100%);
}

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

/* Mejorar legibilidad del texto en secciones parallax */
.parallax-bg .section-title,
.parallax-bg .contact-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #1e293b;
}

.parallax-bg .section-subtitle,
.parallax-bg .contact-subtitle {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    color: #475569;
}

.parallax-bg p,
.parallax-bg .solution-description {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    color: #475569;
}

.parallax-bg .solution-card,
.parallax-bg .contact-method {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.603) 0%, rgba(226, 232, 240, 0.95) 100%),
                url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero.hero-loaded {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 65, 120, 0.05) 100%);
    opacity: 0.8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--clinicare-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== MOBILE MOCKUP ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.mobile-mockup {
    position: relative;
    z-index: 2;
}

.mobile-frame {
    width: 280px;
    height: 580px;
    background: #1e293b;
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mobile-frame:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mobile-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1e293b;
    border-radius: 0 0 15px 15px;
    z-index: 3;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.mobile-header {
    background: white;
    padding: 12px 16px 8px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.time {
    color: #1e293b;
}

.mobile-indicators {
    display: flex;
    gap: 4px;
    color: #1e293b;
}

.mobile-indicators i {
    font-size: 12px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo {
    height: 24px;
    width: auto;
    max-width: 100px;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.profile-icon {
    color: var(--clinicare-primary);
    font-size: 20px;
}

.mobile-content {
    padding: 16px;
}

.mobile-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-stat-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.stat-info {
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.action-button {
    background: white;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    cursor: pointer;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-button.primary {
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    color: white;
    border: none;
}

.action-button i {
    font-size: 18px;
    margin-bottom: 6px;
    display: block;
    color: var(--clinicare-primary);
}

.action-button.primary i {
    color: white;
}

.action-button span {
    font-size: 12px;
    font-weight: 500;
    color: #1e293b;
}

.action-button.primary span {
    color: white;
}

.mobile-chart {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.mobile-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 80px;
    gap: 8px;
}

.mobile-bar {
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-bar:hover {
    opacity: 0.8;
}

.bar-value {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-description {
    margin-bottom: 1.5rem;
    color: #64748b;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clinicare-success);
    font-weight: bold;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    padding: 100px 0;
    background: #f8fafc;
}

.solutions.parallax-bg {
    background: none;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-title {
    margin-bottom: 1rem;
    color: #1e293b;
}

.solution-description {
    margin-bottom: 1.5rem;
    color: #64748b;
}

.solution-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit {
    background: #e8f2ff;
    color: var(--clinicare-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 90, 160, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.pricing-card {
    flex: 1;
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--clinicare-primary);
    margin: -1px;
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.pricing-header {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .plan-name {
    color: var(--clinicare-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    min-height: 50px;
    align-items: center;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    align-self: flex-start;
    margin-top: 0.2rem;
}

.amount {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.pricing-card.featured .amount {
    color: var(--clinicare-primary);
}

.period {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.2rem;
}

.plan-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.875rem;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
}

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

.features-list li:hover {
    background: #f8fafc;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.features-list i {
    color: var(--clinicare-primary);
    font-size: 0.875rem;
    min-width: 16px;
    text-align: center;
}

.btn-full {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.pricing-card .btn-outline {
    background: transparent;
    color: var(--clinicare-primary);
    border: 2px solid var(--clinicare-primary);
}

.pricing-card .btn-outline:hover {
    background: var(--clinicare-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border: 2px solid transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.5);
}

.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-note {
    color: #64748b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--clinicare-primary);
    font-size: 1.25rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--clinicare-primary-dark) 0%, var(--clinicare-primary) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact.parallax-bg {
    background: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    margin-bottom: 1rem;
}

.contact-subtitle {
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clinicare-primary) 0%, var(--clinicare-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.contact-method p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.parallax-bg .contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clinicare-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-description {
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--clinicare-primary);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

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

.copyright {
    color: #94a3b8;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        background-position: center right;
        background-size: cover;
        background-attachment: scroll;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .parallax-bg::before {
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .mobile-frame {
        transform: none;
        width: 240px;
        height: 480px;
    }

    .mobile-content {
        padding: 12px;
    }

    .mobile-stats {
        gap: 8px;
        margin-bottom: 16px;
    }

    .mobile-stat-card {
        padding: 12px;
    }

    .action-button {
        padding: 12px 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .pricing-grid {
        flex-direction: column;
        box-shadow: none;
        background: transparent;
    }

    .pricing-card {
        border-right: none;
        border-radius: 20px;
        margin-bottom: 2rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid #f1f5f9;
        min-height: auto;
    }

    .pricing-card.featured {
        transform: none;
        margin: 0 0 2rem 0;
        border: 2px solid var(--clinicare-primary);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .popular-badge {
        top: -12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 20px;
        padding: 0.5rem 1.5rem;
    }

    .plan-price {
        min-height: 60px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
