/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Subtle Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header Section - ChatGPT Style */
header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.logo:hover {
    color: #666666;
}

header nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

header nav ul li {
    padding: 0;
    position: relative;
}

header nav ul li a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    position: relative;
    text-transform: none;
    letter-spacing: 0;
    border: none;
    background: transparent;
    display: inline-block;
    line-height: 1.2;
}

header nav ul li a:hover {
    color: #000000;
    background: #f3f4f6;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Ensure Contact button works properly */
header nav ul li a[href="contact.html"] {
    color: #6b7280 !important;
    background: transparent !important;
    border: none !important;
    font-weight: 500 !important;
}

header nav ul li a[href="contact.html"]:hover {
    color: #000000 !important;
    background: #f3f4f6 !important;
    border-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Get Started Button - ChatGPT Style */
header nav ul li a[href*="#pricing"] {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    margin-left: 0.5rem !important;
}

header nav ul li a[href*="#pricing"]:hover {
    background: #374151 !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}







/* Mobile menu toggle - ChatGPT Style */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
}

.menu-toggle:hover {
    background: #f3f4f6;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #000000;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
    position: relative;
}

.menu-toggle span:nth-child(1) {
    transform-origin: left;
}

.menu-toggle span:nth-child(3) {
    transform-origin: left;
}

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

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

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

/* Hero Section */
#home {
    background-color: #ffffff;
    color: #1a1a1a;
    text-align: center;
    padding: 6rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

#home h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000000;
    position: relative;
    z-index: 2;
    letter-spacing: -2px;
}

#home p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.cta-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cta-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.dashboard-screenshot:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000000;
}

.floating-card.card-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
#features {
    padding: 6rem 2rem;
    background-color: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -1px;
    position: relative;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #000000, #666666);
    border-radius: 2px;
}

.features-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #000000, #333333);
    border-color: #000000;
    transform: scale(1.05);
}

.feature-icon svg {
    color: #000000;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.feature-card:hover .feature-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 50px;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li {
    color: #000000;
    transform: translateX(5px);
}

.feature-card:hover .feature-list li::before {
    color: #000000;
    transform: scale(1.2);
}

/* How It Works Section */
#how-it-works {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

#how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5rem;
    color: #000000;
    letter-spacing: -1px;
}

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

.step {
    text-align: center;
    padding: 3rem;
    background-color: #fafafa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
    to { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.step p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Pricing Section */
#pricing {
    padding: 6rem 2rem;
    background-color: #fafafa;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

#pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -1px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.pricing-card.featured {
    border-color: #000000;
    transform: scale(1.02);
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, transparent, #000000, transparent);
    transform: scaleX(1);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.6rem 0;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 0.8rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

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

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Additional Page Styles */

/* About Page Styles */
.about-hero {
    background-color: #fafafa;
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666666;
    font-size: 1rem;
}

.story-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

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

.story-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid #e5e5e5;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #666666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666666;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #fafafa;
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.contact-options {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.response-time {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666666;
    line-height: 1.6;
}

.office-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.office-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.office-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.office-details p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.office-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.map-placeholder {
    background-color: #e5e5e5;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 1.1rem;
}

/* Blog Page Specific Styles */
.blog-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
    position: relative;
    z-index: 2;
    letter-spacing: -2px;
}

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

/* Featured Post Section */
.featured-post {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-badge {
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-meta span {
    color: #999999;
    font-size: 0.875rem;
}

.read-more-btn {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #666666;
}

/* Blog Categories */
.blog-categories {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.02);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.4s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.blog-post {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-content {
    padding: 2rem;
}

.post-category {
    background: #666666;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-post h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #666666;
}

/* Graph and Chart Styles */
.graph-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.graph-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, #666666, #000000);
    opacity: 0.3;
}

.graph-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.chart-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.data-visualization {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000, #666666, #000000);
    opacity: 0.4;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.metric-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #000000, #666666);
    border-radius: 1px;
}

.metric-label {
    color: #666666;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 2rem;
    background: #ffffff;
    margin: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #666666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
}

.newsletter-form button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
    font-size: 0.875rem;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    header nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e5e5;
    }
    
    header nav ul.active {
        display: flex;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    header nav ul li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    
    header nav ul li a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-radius: 0;
    }
    
    .signup-link {
        margin: 1rem 2rem;
        text-align: center;
        display: inline-block;
    }
    
    #home h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .plan-header h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .pricing-card,
    .value-card,
    .contact-card,
    .team-member,
    .blog-post {
        border-width: 2px;
    }
    
    .cta-btn,
    .pricing-btn,
    .read-more-btn,
    .submit-btn {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    .menu-toggle,
    .signup-link,
    .cta-btn,
    .pricing-btn,
    .read-more-btn,
    .submit-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .feature-card,
    .pricing-card,
    .value-card,
    .contact-card,
    .team-member,
    .blog-post {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}

/* Blog Page Image Alignment Styles */
.featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.featured-img:hover {
    transform: scale(1.02);
}

.post-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-img:hover {
    transform: scale(1.05);
}

.chart-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Enhanced image container alignment */
.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.post-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chart-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}