/*
Theme Name: Amnea
Theme URI: https://amnea.com
Description: A modern, professional WordPress theme for medical device companies and healthcare ventures. Features Maven Clinic-inspired design with emerald green color scheme, Helvetica Now Display typography, and investor-focused layout. Perfect for medical technology startups seeking investment.
Version: 1.0
Author: Amnea Corp
Author URI: https://amnea.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: medical, healthcare, investor, startup, modern, professional, emerald-green, maven-inspired
Text Domain: amnea
*/

:root {
    --primary-emerald: #028C74;
    --dark-emerald: #013126;
    --light-emerald: #58EDA2;
    --accent-terra: #E07856;
    --accent-mint: #B2E4D6;
    --accent-warm: #A67B5B;
    --cream: #F9FAFB;
    --white: #FFFFFF;
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --text-gray: #4B5563;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.3;
    color: var(--text-gray);
    background: #FFFFF5;
    overflow-x: hidden;
    font-size: 16px;
}

/* Custom Scrollbar - Green on White */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #028C74;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: #01654f;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #028C74 #ffffff;
}

/* Maven-style italic serif for emphasis */
.serif-italic {
    font-family: 'Times New Roman', 'Georgia', serif;
    font-style: italic;
    font-weight: 300;
}

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

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientRotateFast {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Header - Maven Style */
header {
    background: transparent;
    color: var(--dark-gray);
    padding: 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

header .header-inner {
    background: var(--white);
    padding: 20px 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled .header-inner {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 0;
    max-width: 100%;
}

header .container {
    position: relative;
    padding: 0;
    max-width: 100%;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-emerald);
    animation: fadeIn 0.8s ease;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo .registered {
    font-size: 0.7rem;
    vertical-align: super;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-emerald);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li {
    animation: slideInRight 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
}

nav ul li:nth-child(1) { --i: 1; animation-delay: 0.2s; opacity: 1; }
nav ul li:nth-child(2) { --i: 2; animation-delay: 0.3s; opacity: 1; }
nav ul li:nth-child(3) { --i: 3; animation-delay: 0.4s; opacity: 1; }
nav ul li:nth-child(4) { --i: 4; animation-delay: 0.5s; opacity: 1; }
nav ul li:nth-child(5) { --i: 5; animation-delay: 0.6s; opacity: 1; }
nav ul li:nth-child(6) { --i: 6; animation-delay: 0.7s; opacity: 1; }

nav ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-emerald);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #71d1b5;
}

nav ul li a:hover::after {
    width: 100%;
    background: #71d1b5;
}

/* Contact Button in Navigation */
.nav-contact-btn {
    background: var(--primary-emerald) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 5px;
    font-weight: 500;
}

.nav-contact-btn::after {
    display: none !important;
}

.nav-contact-btn:hover {
    background: var(--dark-emerald) !important;
    color: white !important;
}

/* Hero Section - Maven Style */
.hero {
    background: var(--dark-emerald);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 100px 100px;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    border-radius: 22px;
    z-index: -1;
    animation: gradientRotate 4s ease infinite;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.1;
    animation: elegantFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--cream);
    animation: elegantFadeIn 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    animation: elegantFadeIn 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 2rem;
    animation: elegantFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 21px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.3px;
    line-height: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--light-emerald);
    color: var(--dark-emerald);
    box-shadow: none;
    border: none;
    font-weight: 500;
}

.btn-primary:hover {
    background: white;
    color: var(--dark-emerald);
}

.btn-primary:active {
    transform: translateY(0px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-emerald);
    border: 2px solid var(--light-emerald);
    box-shadow: none;
    font-weight: 500;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-emerald);
}

.btn-secondary:active {
    transform: translateY(0px);
}

/* Market Opportunity Section */
.market-opportunity {
    padding: 120px 0 60px 0;
    background: #FFFFF5;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    animation: elegantFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-emerald);
    margin: 1rem auto calc(3rem + 30px) auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-emerald);
    margin-bottom: 4rem;
    font-weight: 400;
    animation: elegantFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

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

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

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 140, 116, 0.2);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 100% 200%;
    animation: gradientSlide 4s ease infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.stat-card:hover::before {
    animation: shimmer 1.5s infinite;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(15, 169, 135, 0.2);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientRotate 4s ease infinite;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.stat-description {
    font-size: 1rem;
    color: #666;
    margin-top: 0.8rem;
    font-family: 'Arial', sans-serif;
}

/* Problem Box with Animated Gradient Border */
.problem-box {
    position: relative;
    padding-left: calc(2.5rem + 6px) !important;
}

.problem-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 100% 200%;
    border-radius: 15px 0 0 15px;
    animation: gradientSlide 4s ease infinite;
}

/* Mobile menu header - hidden on desktop by default */
.mobile-menu-header {
    display: none !important;
}

/* Medical Advisory Board */
.advisory-board {
    padding: 120px 0;
    background: #013126;
    color: var(--white);
}

.advisory-board .section-title {
    color: var(--white);
}

.advisory-board .section-subtitle {
    color: var(--cream);
}

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

@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    padding: 5px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .doctor-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: calc(33.333% - 1.35rem);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--dark-emerald);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: -60px;
    display: none;
}

.carousel-next {
    right: -60px;
    display: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #58EDA2;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #58EDA2;
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--light-emerald);
    border-color: var(--light-emerald);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .carousel-prev {
        left: 10px;
    }
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-track .doctor-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-track .doctor-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .carousel-track {
        gap: 0;
    }
    
    .carousel-container {
        overflow: hidden;
        padding: 2rem 0;
        max-width: 100%;
    }
    
    .carousel-wrapper {
        overflow: hidden;
        padding: 0;
        margin: 0 10px;
    }
}

.doctor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: calc(2.5rem - 3px);
    border-radius: 15px;
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: visible;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    border-radius: 15px;
    z-index: -1;
    animation: gradientRotate 4s ease infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 3px;
}

.doctor-card:nth-child(1) { animation-delay: 0.1s; }
.doctor-card:nth-child(2) { animation-delay: 0.2s; }
.doctor-card:nth-child(3) { animation-delay: 0.3s; }
.doctor-card:nth-child(4) { animation-delay: 0.4s; }
.doctor-card:nth-child(5) { animation-delay: 0.5s; }
.doctor-card:nth-child(6) { animation-delay: 0.6s; }
.doctor-card:nth-child(7) { animation-delay: 0.7s; }

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cream);
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-emerald);
    font-weight: bold;
    transition: none;
    transform: none;
    pointer-events: none;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #58EDA2;
}

.doctor-credentials {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-style: italic;
}

.doctor-specialty {
    font-size: 1rem;
    color: var(--white);
    font-family: 'Arial', sans-serif;
}

/* Founder Section */
.founder-section {
    padding: 60px 0 60px 0;
    background: #FFFFF5;
}

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

.founder-photo-container {
    text-align: center;
}

.founder-photo-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 3px;
    margin: 0 auto;
    display: block;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #012E24, #FFD042, #58EDA2) border-box;
    background-size: 200% 200%;
    animation: gradientRotate 4s ease infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.founder-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientRotate 4s ease infinite;
}

.founder-title {
    font-size: 1.4rem;
    color: var(--primary-emerald);
    margin-bottom: 2rem;
    font-style: italic;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    font-family: 'Arial', sans-serif;
}

.founder-bio strong {
    color: var(--primary-emerald);
}

.founder-highlight {
    background: var(--cream);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-terra);
    margin-top: 2rem;
    border-radius: 5px;
}

/* Gradient Text Animation - Universal Class */
.gradient-text-animation {
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientRotate 4s ease infinite;
}

/* Team Section - Clean Design */
.team-section {
    padding: 40px 0 120px 0;
    background: #FFFFF5;
}

/* Team section uses default heading - gradient removed for visibility */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

/* Hover effect removed as per user request */
/* .team-member:hover {
    transform: translateY(-8px);
} */

.team-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24) border-box;
    background-size: 200% 200%;
    animation: gradientRotate 4s ease infinite;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Hover effect removed as per user request */
/* .team-member:hover .team-img {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #012E24, #FFD042, #58EDA2) border-box;
    background-size: 200% 200%;
    animation: gradientRotateFast 2s ease infinite;
    box-shadow: 0 12px 32px rgba(2, 140, 116, 0.25);
} */

.team-member-name {
    font-size: 1.5rem;
    color: var(--primary-emerald);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.team-member-role {
    font-size: 1rem;
    color: var(--primary-emerald);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.team-member-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
    text-align: center;
}

.read-more-btn {
    background: #58EDA2;
    color: var(--dark-emerald);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.read-more-btn:hover {
    background: var(--primary-emerald);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 237, 162, 0.3);
}

/* Team Modal Styles */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.team-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.team-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 2;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-terra);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.team-modal-close:hover {
    background: var(--light-emerald);
    transform: rotate(90deg);
}

.team-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
}

.team-modal-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.team-modal-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 3px;
    display: block;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #012E24, #FFD042, #58EDA2) border-box;
    background-size: 200% 200%;
    animation: gradientRotate 4s ease infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 10px;
}

.team-modal-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-modal-name {
    font-size: 2.2rem;
    color: var(--dark-emerald);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-modal-role {
    font-size: 1.2rem;
    color: var(--primary-emerald);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-modal-bio {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.team-modal-bio p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-img {
        width: 180px;
        height: 180px;
    }
    
    .team-modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .team-modal-img {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-img {
        width: 200px;
        height: 200px;
    }
}

/* Technology Highlights */
.technology {
    padding: 120px 0;
    background: #FFFFF5;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-emerald);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--accent-terra), transparent);
    opacity: 0.1;
    transition: height 0.4s;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    background: var(--cream);
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 30px rgba(15, 169, 135, 0.15);
    border-top-color: var(--accent-terra);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--dark-emerald);
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Competitive Advantage */
.competitive-advantage {
    padding: 120px 0;
    background: var(--cream);
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto 0;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #012E24;
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
}

.comparison-table th:last-child {
    background: #0FA987;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-family: 'Arial', sans-serif;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.checkmark {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
}

.crossmark {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* M&A Representation */
.ma-section {
    padding: 80px 0;
    background: #013126;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-135deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(135deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-135deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 120px 120px;
    background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
    opacity: 0.4;
    pointer-events: none;
}

.ma-section .section-title {
    color: var(--white);
}

.ma-content {
    max-width: 1200px;
    margin: 1.2rem auto 0;
}

.ma-logo {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-info {
    margin-top: 3rem;
    font-family: 'Arial', sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-person {
    background: #58EDA2;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    color: #013126;
}

.contact-person strong {
    color: #013126;
    font-size: 1.2rem;
}

.contact-person a {
    color: #013126;
    text-decoration: none;
}

.contact-person a:hover {
    color: #012E24;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 0 20px;
    background: transparent;
    text-align: center;
    margin: 100px 0 60px;
}

.cta-section .container {
    background: #028C74;
    padding: 80px 3rem;
    border-radius: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-family: 'Arial', sans-serif;
}

.cta-section .btn-primary {
    background: #013126;
    color: #ffffff;
    border: 2px solid #013126;
}

.cta-section .btn-primary:hover {
    background: #ffffff;
    color: #013126;
    border: 2px solid transparent;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
    background: #ffffff;
    color: #013126;
    border: 2px solid #ffffff;
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* Footer - Maven Style */
footer {
    background: transparent;
    padding: 2rem 20px 0;
}

footer .footer-container {
    background: var(--dark-emerald);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-radius: 20px 20px 0 0;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr 1.25fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #71d1b5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-emerald);
}

.footer-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 22px;
    background: var(--primary-emerald);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--light-emerald);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: var(--white);
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    header {
        padding: 0.5rem 1rem;
    }

    header.scrolled {
        padding: 0;
    }

    header .container {
        padding: 0.5rem 0.5rem;
    }

    header.scrolled .container {
        padding: 0;
    }

    header .header-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    header.scrolled .header-inner {
        padding: 0.5rem 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 90%;
        max-width: 350px;
        background: linear-gradient(135deg, var(--dark-emerald) 0%, var(--primary-emerald) 100%);
        padding: 80px 0.25rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        z-index: 999;
    }

    .mobile-menu-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: -0.5px;
    }

    .mobile-menu-logo .registered {
        font-size: 0.6rem;
        vertical-align: super;
    }

    nav.active {
        right: 0;
    }

    nav.active .mobile-menu-header {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }

    nav ul li {
        opacity: 0;
        transform: translateX(30px);
        animation: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.active ul li {
        animation: slideInRight 0.4s ease forwards;
    }

    nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    nav.active ul li:nth-child(6) { animation-delay: 0.35s; }

    nav ul li a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        color: var(--white);
    }

    nav ul li a::after {
        display: none;
    }

    .hero {
        min-height: 100vh;
        padding: 70px 0 0 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-width: 400px;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero .tagline {
        font-size: calc(1rem + 2px);
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 2rem;
    }

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

    .doctor-card {
        padding: 2rem;
    }

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

    .founder-photo {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 1;
        font-size: 4rem;
    }

    .founder-info h3 {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1.2rem;
    }

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

    .feature-card {
        padding: 1.5rem;
        padding-bottom: 15px;
        margin: 0 20px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .ma-logo {
        font-size: 1.8rem;
    }

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

    .contact-person {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

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

    footer {
        padding: 1.5rem 20px 0;
    }

    footer .footer-container {
        padding: 3rem 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .doctor-photo {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .doctor-name {
        font-size: 1.3rem;
    }

    .founder-photo {
        max-width: 200px;
        font-size: 3rem;
    }

    .comparison-table th {
        font-size: 0.85rem;
    }

    .comparison-table td {
        font-size: 0.85rem;
        padding: 0.8rem;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }
}

/* Themes Section */
.themes-section {
    padding: 120px 0;
    background: #FFFFF5;
}

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

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

.theme-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 140, 116, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 169, 135, 0.2);
}

.theme-preview {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    animation: gradientRotate 4s ease infinite;
}

.theme-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.theme-info {
    padding: 2rem;
}

.theme-name {
    font-size: 1.8rem;
    color: var(--primary-emerald);
    margin-bottom: 1rem;
    font-weight: 500;
}

.theme-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.theme-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.theme-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

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

.theme-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.theme-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.theme-installation-note {
    margin-top: 4rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 6px solid var(--primary-emerald);
}

.theme-installation-note h4 {
    font-size: 1.5rem;
    color: var(--primary-emerald);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.theme-installation-note ol {
    padding-left: 2rem;
}

.theme-installation-note li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .theme-actions {
        flex-direction: column;
    }
    
    .theme-actions .btn {
        min-width: 100%;
    }
}

/* Target Market Section */
.target-market-section {
    padding: 0;
    background: #FFFFF5;
}

.target-market-header,
.target-market-footer {
    background: linear-gradient(135deg, #012E24, #028C74, #0FA987, #58EDA2);
    background-size: 200% 200%;
    animation: gradientRotate 8s ease infinite;
    padding: 2.5rem 0;
}

.target-market-header h2,
.target-market-footer h2 {
    text-align: center;
    margin: 0;
}

.highlight-amount {
    font-weight: 700;
    color: #FFD042;
}

.target-market-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.target-card {
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(2, 140, 116, 0.15);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.target-card-left,
.target-card-right {
    background: linear-gradient(135deg, #E8F8F5, #D1F2EB, #A9DFCE);
}

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

.target-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #028C74;
    transition: all 0.3s ease;
}

.target-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.target-item h3 {
    font-size: 1.4rem;
    color: #028C74;
    font-weight: 400;
    margin: 0;
}


@media (max-width: 968px) {
    .target-market-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .target-market-header,
    .target-market-footer {
        padding: 2rem 0;
    }

    .target-card {
        padding: 2rem 1.5rem;
    }

    .target-icon {
        width: 50px;
        height: 50px;
    }

    .target-icon svg {
        width: 40px;
        height: 40px;
    }

    .target-item h3 {
        font-size: 1.2rem;
    }
}

/* Cost Savings Section */
.cost-savings-section {
    padding: 100px 0;
    background: var(--white);
}

.cost-savings-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #012E24, #FFD042, #58EDA2, #012E24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientRotate 4s ease infinite;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.savings-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFF5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    border-collapse: collapse;
}

.savings-table thead th {
    background: #012E24;
    color: var(--white);
    padding: 1.2rem 2rem;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 600;
}

.savings-table thead th:last-child {
    background: #0FA987;
}

.savings-table thead .savings-col {
    text-align: right;
}

.savings-table tbody tr {
    border-bottom: 2px dashed #E0E0E0;
    transition: background 0.3s ease;
}

.savings-table tbody tr:hover {
    background: rgba(2, 140, 116, 0.03);
}

.benefit-cell {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.benefit-cell strong {
    color: var(--primary-emerald);
    font-weight: 600;
}

.savings-cell {
    padding: 1.2rem 2rem;
    text-align: right;
    font-size: 1.3rem;
    color: #E74C3C;
    font-weight: 600;
}

.savings-table tfoot .total-row {
    background: linear-gradient(135deg, #012E24, #028C74, #0FA987);
}

.total-row .total-label {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.total-row .total-value {
    padding: 1.5rem 2rem;
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD042;
}

@media (max-width: 768px) {
    .cost-savings-title {
        font-size: 1.8rem;
    }

    .savings-table thead th {
        padding: 1rem 1rem;
        font-size: 1.1rem;
    }

    .benefit-cell,
    .savings-cell {
        padding: 1rem 1rem;
        font-size: 1rem;
    }

    .savings-cell {
        font-size: 1.1rem;
    }

    .total-row .total-label,
    .total-row .total-value {
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
    }

    .total-row .total-value {
        font-size: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #FFFFF5;
}

.pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-category-row th {
    background: #012E24;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.pricing-category-row th:last-child {
    background: #0FA987;
}

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

.pricing-category-price {
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

.pricing-table tbody tr:hover {
    background: rgba(2, 140, 116, 0.02);
}

.item-name {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.item-name em {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.item-price {
    padding: 0.8rem 2rem;
    text-align: right;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.pricing-table tfoot .pricing-total td:first-child {
    background: #012E24;
}

.pricing-table tfoot .pricing-total td:last-child {
    background: #0FA987;
}

.pricing-total .total-label {
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.pricing-total .total-amount {
    padding: 1rem 2rem;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD042;
}

@media (max-width: 768px) {
    .pricing-category-row th {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }

    .item-name,
    .item-price {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .pricing-total .total-label,
    .pricing-total .total-amount {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }

    .pricing-total .total-amount {
        font-size: 1.3rem;
    }
}

/* Analysis Section */
.analysis-section {
    padding: 100px 0;
    background: var(--white);
}

.analysis-content {
    max-width: 1000px;
    margin: 0 auto;
}

.analysis-box {
    background: #FFFFF5;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-emerald);
}

.analysis-subtitle {
    font-size: 1.8rem;
    color: var(--primary-emerald);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.analysis-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.highlight-number {
    color: var(--primary-emerald);
    font-weight: 600;
}

.cost-breakdown {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.cost-breakdown h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cost-breakdown ul {
    list-style: none;
    padding: 0;
}

.cost-breakdown li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #E0E0E0;
    color: var(--dark-gray);
}

.cost-breakdown li:last-child {
    border-bottom: none;
}

.amount-value {
    color: #E74C3C;
    font-weight: 600;
}

.interpretation {
    background: rgba(2, 140, 116, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-top: 1.5rem;
}

.range-highlight {
    color: var(--primary-emerald);
    font-weight: 700;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.allocation-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(2, 140, 116, 0.15);
    text-align: center;
}

.allocation-percent {
    font-size: 2.5rem;
    color: var(--primary-emerald);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.allocation-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.allocation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.allocation-table thead th {
    background: #012E24;
    color: var(--white);
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
}

.allocation-table thead th:last-child {
    background: #0FA987;
}

.allocation-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

.allocation-table tbody tr:hover {
    background: rgba(2, 140, 116, 0.03);
}

.allocation-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.allocation-table .cost-cell {
    font-weight: 600;
    color: #E74C3C;
}

.allocation-table tfoot .total-row td {
    background: #012E24;
}

.allocation-table tfoot .total-row td:last-child {
    background: #0FA987;
}

.allocation-table tfoot td {
    padding: 1.2rem 1.5rem;
    color: var(--white);
}

.total-cost {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD042 !important;
}

@media (max-width: 768px) {
    .analysis-box {
        padding: 1.5rem;
    }

    .analysis-subtitle {
        font-size: 1.4rem;
    }

    .analysis-text p {
        font-size: 1.1rem;
    }

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

    .allocation-percent {
        font-size: 2rem;
    }

    .allocation-table thead th,
    .allocation-table tbody td {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

/* Table Wrapper for Mobile Responsiveness */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .table-wrapper {
        margin: 1rem -1rem;
        padding: 0 1rem;
    }
    
    .savings-table {
        min-width: 600px;
    }
    
    .pricing-table {
        min-width: 500px;
    }
    
    .allocation-table {
        min-width: 650px;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .savings-table thead th,
    .savings-table tbody td,
    .savings-table tfoot td {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td,
    .pricing-table tfoot td {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
    
    .allocation-table thead th,
    .allocation-table tbody td,
    .allocation-table tfoot td {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
    
    .cost-savings-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .table-wrapper {
        margin: 1rem -0.5rem;
        padding: 0 0.5rem;
    }
    
    .savings-table thead th,
    .savings-table tbody td,
    .savings-table tfoot td {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td,
    .pricing-table tfoot td {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .allocation-table thead th,
    .allocation-table tbody td,
    .allocation-table tfoot td {
        font-size: 0.8rem;
        padding: 0.6rem 0.6rem;
    }
    
    .cost-savings-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .pricing-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
        border-radius: 0;
    }
    
    .pricing-table {
        min-width: 500px;
    }
    
    .pricing-category-row th {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .item-name,
    .item-price {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .pricing-total .total-label,
    .pricing-total .total-amount {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-wrapper {
        margin: 0 -0.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-category-row th {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    
    .item-name,
    .item-price {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .pricing-total .total-label,
    .pricing-total .total-amount {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}
