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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFA;
    color: #374151;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 110px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
.header {
    padding: 2.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.header.scrolled {
    padding: 1.25rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 35px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #1E7DA9;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1E7DA9;
}

/* Download Button */
.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #1E7DA9;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-download:hover {
    background-color: #196d96;
}

.btn-download img {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #1E7DA9;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 19px;
}

.hamburger-line:nth-child(3) {
    top: 26px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 5rem 0 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.3;
    color: #374151;
    text-align: center;
}

.hero-title-highlight {
    color: #1E7DA9;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: #6B7280;
    text-align: center;
}

.hero-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.hero-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #374151;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease;
}

.hero-input:focus {
    outline: none;
    border-color: #1E7DA9;
}

.hero-input::placeholder {
    color: #9CA3AF;
}

.hero-button {
    padding: 14px 28px;
    background-color: #1E7DA9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.hero-button:hover {
    background-color: #196d96;
}

.hero-image {
    width: 100%;
    max-width: 1400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.features-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    max-width: 1168px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.features-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
    text-align: center;
}

.features-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

.features-visual {
    position: relative;
    width: 100%;
    max-width: 1168px;
    height: 550px;
    overflow: hidden;
    background-color: #F2F4F5;
    border-radius: 8px;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F4F5;
    border-radius: 8px;
}

.features-image {
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 1000px;
    max-width: 85%;
    height: auto;
}

.features-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Everything on one place Section */
.everything-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.everything-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 136px;
}

.everything-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 478px;
    flex-shrink: 0;
}

.everything-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.everything-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: #374151;
}

.everything-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    max-width: 446px;
}

.everything-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.everything-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
}

.everything-image {
    width: 650px;
    flex-shrink: 0;
}

.everything-image img {
    width: calc(100% + 200px);
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* AI-Powered Lab Section */
.ai-lab-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.ai-lab-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 136px;
    overflow: visible;
}

.ai-lab-image {
    width: 650px;
    flex-shrink: 0;
}

.ai-lab-image img {
    width: calc(100% + 200px);
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-left: -200px;
}

.ai-lab-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 478px;
    flex-shrink: 0;
}

.ai-lab-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-lab-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: #374151;
}

.ai-lab-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    max-width: 446px;
}

.ai-lab-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-lab-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

/* Bento Grid Section */
.bento-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.bento-header {
    text-align: center;
    margin-bottom: 5rem;
}

.bento-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
}

.bento-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 1168px;
    margin: 0 auto;
}

.bento-card {
    background-color: #F2F4F5;
    border-radius: 6px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.bento-card-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 12px;
}

/* Knowledge Graph Card - Top left, tall */
.bento-card-knowledge {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 287px;
}

.bento-card-knowledge .bento-card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 12px;
}

/* 5 Languages Card - Bottom left */
.bento-card-languages {
    grid-column: 1;
    grid-row: 3;
    min-height: 170px;
    position: relative;
}

.bento-card-languages .bento-card-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: auto;
}

/* Medications Card - Top middle, shorter */
.bento-card-medications {
    grid-column: 2;
    grid-row: 1;
    min-height: 222px;
}

.medication-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 7px;
    margin-top: 12px;
    max-width: 284px;
}

.medication-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.medication-info {
    flex: 1;
}

.medication-name {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.2;
    color: #575767;
    margin-bottom: 4px;
}

.medication-schedule {
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
    font-size: 12.7px;
    line-height: 1.2;
    color: #575767;
}

/* Powerful Search Card - Middle, tall */
.bento-card-search {
    grid-column: 2;
    grid-row: 2 / 4;
    min-height: 340px;
}

.bento-card-search .bento-card-screenshot {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin-top: 12px;
}

/* Smart Tags Card - Top right */
.bento-card-tags {
    grid-column: 3;
    grid-row: 1 / 3;
    min-height: 200px;
    position: relative;
}

.tags-container {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 16px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    position: absolute;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tag-pink {
    top: 6px;
    left: 8px;
    z-index: 3;
}

.tag-gray {
    top: 38px;
    left: 84px;
    z-index: 2;
}

.tag-green {
    top: 68px;
    left: 20px;
    z-index: 4;
}

.tag-blue {
    top: 16px;
    left: 132px;
    z-index: 1;
}

.tag-yellow {
    top: 98px;
    left: 102px;
    z-index: 5;
}

.tag.tag-pink {
    background-color: #FCE8F3;
    color: #99154B;
}

.tag.tag-gray {
    background-color: #F3F4F6;
    color: #111928;
}

.tag.tag-green {
    background-color: #DEF7EC;
    color: #03543F;
}

.tag.tag-blue {
    background-color: #E1EFFE;
    color: #1E429F;
}

.tag.tag-yellow {
    background-color: #FDF6B2;
    color: #723B13;
}

/* Invoices & Billing Card - Bottom right */
.bento-card-billing {
    grid-column: 3;
    grid-row: 3;
    min-height: 300px;
    position: relative;
}

.bento-card-billing .bento-card-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 190px;
    height: auto;
}

/* Smart Health Insights Section */
.insights-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.insights-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 136px;
}

.insights-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 478px;
    flex-shrink: 0;
}

.insights-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insights-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: #374151;
}

.insights-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    max-width: 446px;
}

.insights-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insights-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.insights-image {
    width: 650px;
    flex-shrink: 0;
}

.insights-image img {
    width: calc(100% + 200px);
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
}

.pricing-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    max-width: 484px;
    padding: 40px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.pricing-card-light {
    background-color: #FAFAFA;
    border: 1px solid #E5E7EB;
}

.pricing-card-dark {
    background-color: #1F2937;
    color: #FFFFFF;
}

.pricing-name {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pricing-card-light .pricing-name {
    color: #374151;
}

.pricing-card-dark .pricing-name {
    color: #FFFFFF;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-card-light .pricing-subtitle {
    color: #6B7280;
}

.pricing-card-dark .pricing-subtitle {
    color: #9CA3AF;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
}

.pricing-card-dark .pricing-price {
    border-bottom-color: #374151;
}

.price-amount {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
}

.price-period {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #6B7280;
    margin-left: 4px;
}

.pricing-card-dark .price-period {
    color: #9CA3AF;
}

.price-currency {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    margin-right: 4px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon-disabled {
    background-color: #E5E7EB;
    color: #9CA3AF;
}

.feature-icon-enabled {
    background-color: #1E7DA9;
    color: #FFFFFF;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.pricing-card-light .feature-text {
    color: #374151;
}

.pricing-card-dark .feature-text {
    color: #F3F4F6;
}

.pricing-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pricing-button-light {
    background-color: #1E7DA9;
    color: #FFFFFF;
}

.pricing-button-light:hover {
    background-color: #196d96;
}

.pricing-button-dark {
    background-color: #1E7DA9;
    color: #FFFFFF;
}

.pricing-button-dark:hover {
    background-color: #196d96;
}

.pricing-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-button:disabled:hover {
    background-color: #1E7DA9;
}

/* Privacy by Design Section */
.privacy-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

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

.privacy-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
}

.privacy-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1168px;
    margin: 0 auto 4rem;
}

.privacy-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 125, 169, 0.1);
    border-color: #1E7DA9;
}

.privacy-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1E7DA9 0%, #196d96 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(30, 125, 169, 0.2);
}

.privacy-card:nth-child(1) .privacy-icon-wrapper {
    animation-delay: 0s;
}

.privacy-card:nth-child(2) .privacy-icon-wrapper {
    animation-delay: 0.5s;
}

.privacy-card:nth-child(3) .privacy-icon-wrapper {
    animation-delay: 1s;
}

.privacy-icon {
    width: 36px;
    height: 36px;
    color: #FFFFFF;
}

.privacy-card-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #374151;
    margin-bottom: 12px;
}

.privacy-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
}

.security-specs {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px 40px;
}

.security-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #374151;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.security-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px 16px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #1E7DA9;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 125, 169, 0.1);
}

.security-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-value {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #1E7DA9;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: #F2F4F5;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
    margin-bottom: 16px;
}

.newsletter-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #374151;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1E7DA9;
}

.newsletter-input::placeholder {
    color: #9CA3AF;
}

.newsletter-button {
    padding: 14px 32px;
    background-color: #1E7DA9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #196d96;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

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

.faq-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #374151;
}

.faq-title-highlight {
    color: #1E7DA9;
    font-weight: 600;
}

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

.faq-item {
    background-color: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #F3F4F6;
}

.faq-question-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #374151;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #1E7DA9;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    margin-bottom: 3rem;
}

.footer-left {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 28px;
}

.footer-logo-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #1E7DA9;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

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

.footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-legal-label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1E7DA9;
}

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

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #9CA3AF;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        gap: 200px;
    }

    .hero-text {
        width: 100%;
        max-width: 675px;
    }

    .features-visual {
        height: 480px;
    }

    .features-image {
        width: 850px;
        max-width: 80%;
    }

    .everything-content {
        gap: 48px;
        padding: 0 3rem;
    }

    .everything-left {
        width: 400px;
    }

    .everything-image {
        width: 550px;
    }

    .everything-image img {
        width: calc(100% + 3rem);
    }

    .ai-lab-content {
        gap: 48px;
        padding: 0 3rem;
    }

    .ai-lab-right {
        width: 400px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card-knowledge {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    
    .bento-card-languages {
        grid-column: 2;
        grid-row: 1;
    }
    
    .bento-card-medications {
        grid-column: 1;
        grid-row: 3;
    }
    
    .bento-card-search {
        grid-column: 2;
        grid-row: 2;
    }
    
    .bento-card-tags {
        grid-column: 1 / 3;
        grid-row: 4;
        min-height: 300px;
    }
    
    .bento-card-billing {
        grid-column: 2;
        grid-row: 3;
    }
    
    .pricing-cards {
        gap: 24px;
    }

    .ai-lab-image {
        width: 550px;
    }

    .ai-lab-image img {
        width: calc(100% + 3rem);
        margin-left: -3rem;
    }

    .insights-content {
        gap: 48px;
        padding: 0 3rem;
    }

    .insights-left {
        width: 400px;
    }

    .insights-image {
        width: 550px;
    }

    .insights-image img {
        width: calc(100% + 3rem);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .container {
        padding: 0 24px;
    }
    
    .header {
        padding: 20px 0;
    }

    .header.scrolled {
        padding: 16px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }

    /* Mobile Menu Toggle - Show on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation - Mobile styles */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 100px 32px 32px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #E5E7EB;
    }

    /* Hide desktop download button on mobile */
    .btn-download {
        display: none;
    }
    
    .hero {
        padding: 48px 0 0;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .hero-form {
        flex-direction: column;
        max-width: 100%;
    }

    .hero-input,
    .hero-button {
        width: 100%;
    }

    .hero-image img {
        height: auto;
    }
    
    .features {
        padding: 48px 0;
    }
    
    .features-content {
        gap: 32px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-visual {
        height: 300px;
    }
    
    .features-image {
        width: 90%;
        max-width: 90%;
    }
    
    .everything-section {
        padding: 48px 0;
    }
    
    .everything-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .everything-content {
        padding: 0 24px;
    }
    
    .everything-left {
        width: 100%;
    }
    
    .everything-title {
        font-size: 24px;
    }
    
    .everything-description {
        max-width: 100%;
    }
    
    .everything-image {
        width: 100%;
    }

    .everything-image img {
        width: 100%;
    }
    
    .ai-lab-section {
        padding: 48px 0;
    }
    
    .ai-lab-content {
        flex-direction: column-reverse;
        gap: 32px;
        padding: 0 24px;
    }
    
    .ai-lab-right {
        width: 100%;
    }
    
    .ai-lab-title {
        font-size: 24px;
    }
    
    .ai-lab-description {
        max-width: 100%;
    }
    
    .ai-lab-image {
        width: 100%;
    }

    .ai-lab-image img {
        width: 100%;
        margin-left: 0;
    }
    
    .bento-section {
        padding: 48px 0;
    }
    
    .bento-header {
        margin-bottom: 32px;
    }
    
    .bento-title {
        font-size: 32px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .bento-card-knowledge,
    .bento-card-languages,
    .bento-card-medications,
    .bento-card-search,
    .bento-card-tags,
    .bento-card-billing {
        grid-column: 1;
        grid-row: auto;
        min-height: 250px;
    }
    
    .bento-card-tags {
        min-height: 300px;
    }

    .insights-section {
        padding: 48px 0;
    }

    .insights-content {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }

    .insights-left {
        width: 100%;
    }

    .insights-title {
        font-size: 24px;
    }

    .insights-description {
        max-width: 100%;
    }

    .insights-image {
        width: 100%;
    }

    .insights-image img {
        width: 100%;
    }

    .tags-container {
        position: relative;
        height: 150px;
        width: 100%;
        margin-top: 24px;
    }

    .tag-pink {
        top: 6px;
        left: 8px;
    }

    .tag-gray {
        top: 38px;
        left: 84px;
    }

    .tag-green {
        top: 68px;
        left: 20px;
    }

    .tag-blue {
        top: 16px;
        left: 132px;
    }

    .tag-yellow {
        top: 98px;
        left: 102px;
    }
    
    .pricing-section {
        padding: 48px 0;
    }
    
    .pricing-header {
        margin-bottom: 32px;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .pricing-cards {
        flex-direction: column;
        padding: 0 24px;
        gap: 24px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .privacy-section {
        padding: 48px 0;
    }
    
    .privacy-header {
        margin-bottom: 32px;
        padding: 0 24px;
    }
    
    .privacy-title {
        font-size: 32px;
    }
    
    .privacy-title-highlight {
        font-size: 18px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
        margin-bottom: 32px;
    }
    
    .privacy-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .privacy-icon {
        width: 32px;
        height: 32px;
    }
    
    .privacy-card-title {
        font-size: 18px;
    }
    
    .privacy-card-text {
        font-size: 14px;
    }
    
    .security-specs {
        margin: 0 24px;
        padding: 32px 24px;
    }
    
    .security-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .security-item {
        padding: 20px 12px;
    }
    
    .newsletter-section {
        padding: 48px 0;
    }
    
    .newsletter-content {
        padding: 0 24px;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .faq-section {
        padding: 48px 0;
    }
    
    .faq-header {
        margin-bottom: 32px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-list {
        padding: 0 24px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }
    
    .footer-right {
        align-items: center;
        width: 100%;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}
