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

html {
    scroll-behavior: smooth;
}

:root {
    /* Primary: Deep Teal - Modern, trustworthy, healthcare */
    --primary: #0d7377;
    --primary-dark: #0a5d61;
    --primary-light: #14a085;
    
    /* Secondary: Sage Green - Health, growth, calm */
    --secondary: #6b9080;
    --secondary-dark: #5a7a6d;
    --secondary-light: #8fb3a3;
    
    /* Accent: Warm Terracotta - Approachable, human */
    --accent: #c97d60;
    --accent-dark: #b86a4f;
    --accent-light: #d99a84;
    
    /* Neutrals: Sophisticated grays */
    --dark-gray: #1e293b;
    --medium-gray: #cbd5e1;
    --light-gray: #f1f5f9;
    --warm-gray: #f8f9fa;
    --silver: #94a3b8;
    
    /* Backgrounds: Warm off-whites */
    --white: #ffffff;
    --bg-warm: #fafbfc;
    --bg-light: #f8f9fa;
    
    /* Text colors */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    
    /* Light backgrounds for cards */
    --card-bg-primary: #e8f4f3;
    --card-bg-secondary: #f0f5f4;
    --card-bg-accent: #faf5f3;
    
    /* Shadows */
    --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);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--text-medium);
    background-color: var(--white);
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* Add padding to body to account for fixed navbar on mobile */
    body {
        padding-top: 120px;
    }
    
    /* Ensure sections have scroll margin for anchor links */
    section {
        scroll-margin-top: 120px;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 32px;
    transition: padding 0.3s ease;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.logo:hover h1::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.625rem 0;
    letter-spacing: -0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary);
}

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

/* Hero Section */
.hero {
    background-image: linear-gradient(135deg, rgba(13, 115, 119, 0.92) 0%, rgba(20, 160, 133, 0.88) 100%),
                      url('Hospital_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 14rem 0 12rem;
    text-align: center;
    position: relative;
    min-height: 750px;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(13, 115, 119, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.045em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25), 0 2px 12px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.75rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.35), 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:active {
    transform: translateY(-1px) scale(1);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary:hover::before {
    left: 100%;
}

.cta-button.secondary:active {
    transform: translateY(-1px) scale(1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 3.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

.feature-card {
    background-color: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(203, 213, 225, 0.6);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    border-radius: 24px;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.2), 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.3), 0 6px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--secondary-light) 100%);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.about-text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.compliance-box {
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 144, 128, 0.3);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.15), 0 6px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.compliance-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(107, 144, 128, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.compliance-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.compliance-box p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.compliance-box ul {
    list-style: none;
    padding-left: 0;
}

.compliance-box li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.compliance-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-form .cta-button {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, #0f172a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--silver);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver);
}

/* Legal Pages Styles */
.legal-page {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: var(--secondary);
}

.legal-page a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Who It's For Section */
.who-its-for {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.who-its-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
}

.ehr-note {
    margin-top: 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    border-radius: 16px;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.ehr-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 144, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ehr-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Problem Section */
.problem {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-item {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(203, 213, 225, 0.6);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
}

.problem-item:hover .problem-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.3), 0 6px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--secondary-light) 100%);
}

.problem-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    border-radius: 20px;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.2), 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.problem-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
}

.problem-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.problem-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
}

/* Solution Section */
.solution {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-secondary) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(203, 213, 225, 0.6);
    border-left: 6px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.solution-item:hover::before {
    transform: scaleY(1);
}

.solution-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.solution-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
    position: relative;
    z-index: 1;
}

.staff-control-note {
    margin-top: 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    border-radius: 16px;
    border: 1px solid rgba(107, 144, 128, 0.3);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.staff-control-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 144, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.staff-control-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.how-item {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.how-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.how-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
}

.how-item:hover::after {
    opacity: 1;
}

.how-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    border-radius: 20px;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.2), 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.how-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.how-item:hover .how-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.3), 0 6px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--secondary-light) 100%);
}

.how-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
}

.how-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.how-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
}

.integration-note {
    margin-top: 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
    border-radius: 16px;
    border: 2px solid var(--secondary);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.integration-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 144, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.integration-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
}

.benefit-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
}

/* Use Cases Section */
.use-cases {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.use-case-card {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 6px solid var(--secondary);
    border: 1px solid rgba(203, 213, 225, 0.6);
    border-left: 6px solid var(--secondary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(13, 115, 119, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.use-case-card:hover::before {
    transform: scaleY(1);
}

.use-case-card h3 {
    color: var(--primary);
    font-size: 1.625rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.use-case-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
    position: relative;
    z-index: 1;
}

.use-case-card strong {
    color: var(--primary);
    font-weight: 600;
}

.use-case-role {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* Security Section */
.security {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.security-item:hover {
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: translateX(8px) scale(1.02);
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--white) 0%, var(--card-bg-primary) 100%);
}

.security-item h3 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.security-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
}

/* Maturity Section */
.maturity {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.maturity-content {
    max-width: 850px;
    margin: 0 auto;
}

.maturity-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.15), 0 6px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(203, 213, 225, 0.6);
    position: relative;
    overflow: hidden;
}

.maturity-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.maturity-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.maturity-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.maturity-text li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.maturity-text p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Updated Contact Section */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-details {
    background-color: var(--white);
    padding: 3rem 3.5rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.15), 0 6px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(203, 213, 225, 0.6);
    position: relative;
    overflow: hidden;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 115, 119, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--secondary);
}

.contact-details a:hover {
    text-decoration: underline;
}

.support-note {
    background: linear-gradient(135deg, var(--card-bg-primary) 0%, var(--card-bg-secondary) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 144, 128, 0.3);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.support-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 144, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.support-note h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-note p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Updated Footer */
.footer-address {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address p {
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.footer-address a {
    color: var(--silver);
    text-decoration: none;
}

.footer-address a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 2rem 0 5rem;
        min-height: 500px;
        margin-top: 0;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .use-case-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

