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

:root {
    /* Jeltix Healthcare Color Palette */
    --primary: #009E7E;
    --primary-dark: #007A61;
    --primary-light: #00B890;
    --accent: #64C6B1;
    --accent-light: #8ED9C6;

    --background: #F8FAF9;
    --background-alt: #FFFFFF;
    --foreground: #1A1A1A;
    --foreground-muted: #6B7280;

    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.logo-icon {
    width: 70px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--foreground);
    transition: var(--transition);
}

.mobile-menu-toggle .menu-icon {
    width: 28px;
    height: 28px;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(100, 198, 177, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--foreground);
}

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

.hero-description {
    font-size: 20px;
    color: var(--foreground-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 40px;
    left: 60px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 40px;
}

.card-text {
    font-weight: 600;
    color: var(--foreground);
    font-size: 15px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--foreground-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--foreground-muted);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
    stroke: var(--accent-light);
}

.benefit-item div {
    font-size: 17px;
    line-height: 1.6;
}

.benefit-item strong {
    font-weight: 600;
    color: var(--accent-light);
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-light);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
}

.contact-description {
    font-size: 18px;
    color: var(--foreground-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 158, 126, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.contact-privacy {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-top: 24px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon-footer {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-brand .logo-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-style: italic;
    color: var(--accent-light);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: white;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin: 8px 0;
}

/* Responsive Design */

/* Tablets and Medium Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .benefits-content {
        gap: 60px;
    }
}

/* Tablets (768px - 968px) */
@media (max-width: 968px) {

    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-visual {
        height: 300px;
        order: -1;
        /* Move visual above text on mobile */
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .contact-title {
        font-size: 36px;
    }

    .features,
    .benefits,
    .contact {
        padding: 80px 0;
    }
}

/* Mobile and Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Hero adjustments */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .trust-indicators {
        justify-content: space-between;
    }

    .trust-item {
        flex: 1;
        text-align: center;
        align-items: center;
    }

    .trust-number {
        font-size: 28px;
    }

    .trust-label {
        font-size: 13px;
    }

    /* Feature cards */
    .feature-card {
        padding: 32px 24px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    /* Benefits */
    .benefit-item div {
        font-size: 16px;
    }

    .stat-value {
        font-size: 40px;
    }

    /* Contact form */
    .contact-card {
        padding: 48px 32px;
    }

    .contact-description {
        font-size: 17px;
    }

    /* Footer */
    .footer-links {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Show mobile menu toggle and make nav responsive */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--border);
    }

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

    .nav-links a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }

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

    .nav-links a:not(.btn-nav)::after {
        display: none;
    }

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

    .navbar {
        padding: 12px 0;
    }

    .nav-brand {
        font-size: 20px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-visual {
        height: 280px;
    }

    .visual-card {
        padding: 16px;
    }

    .card-icon {
        font-size: 32px;
    }

    .card-text {
        font-size: 13px;
    }

    /* Adjust card positions for mobile */
    .card-1 {
        top: 20px;
        left: 10px;
    }

    .card-2 {
        top: 100px;
        right: 10px;
    }

    .card-3 {
        bottom: 20px;
        left: 20px;
    }

    /* Sections */
    .features,
    .benefits,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Benefits */
    .benefits-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .benefits-list {
        gap: 20px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-item svg {
        width: 20px;
        height: 20px;
    }

    .benefit-item div {
        font-size: 15px;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 15px;
    }

    /* Contact Section */
    .contact-card {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 16px 32px;
        font-size: 16px;
    }

    .contact-privacy {
        font-size: 13px;
        margin-top: 20px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 13px;
    }

    /* Trust indicators adjustment */
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
    }

    .trust-item {
        min-width: 80px;
    }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .benefits-title,
    .contact-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }

    .visual-card {
        padding: 12px;
    }

    .card-text {
        font-size: 12px;
    }

    .trust-number {
        font-size: 24px;
    }

    .trust-label {
        font-size: 12px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .stat-value {
        font-size: 32px;
    }
}