@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #1e293b;
    line-height: 1.6;
    max-width: 1200px;
    width: 100%;
    margin: 20px;
}

/* Custom CSS Properties for Tailwind-like colors */
:root {
    --bg-primary: #667eea;
    --bg-alt: #f8fafc;
    --bg-background-warm: #fef3c7;
    --text-grey-700: #374151;
    --text-black-800: #1f2937;
    --desktop-page: 1200px;
}

.bg-primary {
    background-color: var(--bg-primary);
}

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-background-warm {
    background-color: var(--bg-background-warm);
}

.text-grey-700 {
    color: var(--text-grey-700);
}

.text-black-800 {
    color: var(--text-black-800);
}

.desktop\:max-w-desktop-page {
    max-width: var(--desktop-page);
}

@media (min-width: 1024px) {
    .desktop\:max-w-desktop-page {
        max-width: var(--desktop-page);
    }
}

/* Navigation */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: inline-block;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #667eea;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex: 1;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-login {
    border: 1px solid #f59e0b;
    color: #f59e0b;
    padding: 0.5rem 1rem;
    font-size: 14px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link-login:hover {
    border-color: #667eea;
    color: #667eea;
}

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* Services Hero */
.services-hero {
    background: #ffebd7;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1rem;
    color: black;
    margin-right: 4vw;
    margin-left: 4vw;
}

/* Pricing Section */
.pricing {
    padding: 0rem 2rem 2rem 2rem;
    background: #f5f6fa;
}

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

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.pricing-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.price-description {
    color: #64748b;
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.95rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
}

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

/* Additional Services */
.additional-services {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.additional-service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.additional-service-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #667eea;
    font-size: 1.25rem;
}

/* FAQ Section */
.faq {
    padding: 0rem 2rem 2rem 2rem;
    background: white;
}

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

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
}

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

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu.active {
    z-index: 1003;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary-nav {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    padding: 9px 0.5rem;
    border-radius: 0.5rem;
    min-height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

@media (min-width: 1024px) {
    .btn-primary-nav {
        padding: 9px 16px;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-secondary {
    background: white;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    max-height: 521px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: flex-end;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        margin-left: -16px;
        margin-right: -16px;
        margin-top: 0;
        border-radius: 0;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

.hero-text {
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 556px;
    text-align: center;
    align-items: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .hero-text {
        text-align: left;
        align-items: flex-start;
        padding: 3rem;
        max-width: 556px;
        gap: 1rem;
    }
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: none;
    flex: 1;
    align-items: stretch;
}

@media (max-width: 767px) {
    .hero-title-wrapper {
        text-align: center;
        font-weight: 700;
        font-size: 40px;
        line-height: 50px;
    }
}

@media (min-width: 768px) {
    .hero-title-wrapper {
        gap: 1rem;
        flex: none;
        width: 545px;
        min-height: 298px;
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
        letter-spacing: -1px;
        margin-bottom: 1rem;
        text-align: left;
    }
}

.about-hero-section .hero-title {
    text-align: center !important;
}

.hero-description {
    margin-right: 140px !important;
    margin-left: 140px !important;
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fe8b07 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hero-subtitle {
        text-align: center;
        margin-top: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        max-width: 85%;
        display: block;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    order: 1;
}

@media (min-width: 768px) {
    .hero-cta {
        gap: 1rem;
        flex: none;
        order: 2;
        align-items: flex-start;
    }
}

.hero-cta p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
        width: 640px;
        justify-content: center;
    }
}

.hero-image-container {
    position: relative;
    width: 216px;
    height: 440px;
    margin-bottom: -170px;
}

@media (min-width: 768px) {
    .hero-image-container {
        width: 280px;
        height: 580px;
        margin-bottom: -139px;
    }
}

.hero-image {
    position: absolute;
    height: 100%;
    width: 100%;
    padding-top:15px;
    inset: 0;
    color: transparent;
    transform: translateZ(0);
    filter: drop-shadow(5.03px 12px 10px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 6.04px rgba(0, 0, 0, 0.3)) drop-shadow(4.03px 16px 5.07px rgba(0, 0, 0, 0.15));
}

.hero-image-overlay {
    display: none;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-features {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2rem;
    }
}

.hero-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-feature-card {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }
}

.hero-feature-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-feature-image {
        width: 280px;
        height: 280px;
    }
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.hero-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-feature-title {
        font-size: 1.5rem;
    }
}

.hero-feature-title.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .hero-feature-title.mobile-only {
        display: none;
    }
}

.hero-feature-title.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .hero-feature-title.desktop-only {
        display: block;
    }
}

/* Navigation mobile-only and desktop-only classes */
.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
}

.hero-feature-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: 688px 1fr;
        gap: 2rem;
        flex-direction: row;
    }
}

.hero-stats-main {
    padding: 1.5rem;
    background: #f5f6fa;
    color: #64748b;
    flex-grow: 1;
    border-radius: 1rem;
    font-size: 1.5rem;
    line-height: 1.875rem;
}

@media (min-width: 768px) {
    .hero-stats-main {
        padding: 2.5rem;
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-stats-grid {
        display: flex;
        gap: 2rem;
    }
}

.hero-stat-card {
    background: #f5f6fa;
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .hero-stat-card {
        padding: 2rem;
        flex-grow: 0;
    }
}

.hero-stat-number {
    color: #1e293b;
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: -0.0625rem;
}

@media (min-width: 768px) {
    .hero-stat-number {
        font-size: 3.5rem;
        line-height: 4.375rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .hero-stat-label {
        font-size: 1rem;
    }
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* About Section */
.about-hero-section {
    background-color: rgb(255, 235, 214);
    padding: 1.5rem;
    text-align: center;
    margin-left: -1rem;
    margin-right: -1rem;
}

@media (min-width: 768px) {
    .about-hero-section {
        padding: 2rem;
        border-radius: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .about-hero-section {
        padding: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.about {
    padding: 6rem 2rem;
    background: white;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.value-dimensions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dimension-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dimension-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.dimension-icon.intrinsic {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.dimension-icon.extrinsic {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.dimension-icon.systemic {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.dimension-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.dimension-card p {
    color: #64748b;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: #f5f6fa;
    text-align: left;
}

@media (min-width: 768px) {
    .how-it-works {
        align-items: flex-start;
        padding: 2.5rem;
        border-radius: 1rem;
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .how-it-works {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

.how-it-works-title {
    width: 100%;
    text-align: left;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.0625rem;
}

@media (min-width: 768px) {
    .how-it-works-title {
        font-size: 3.5rem;
    }
}

.how-it-works-steps {
    display: grid;
    grid-template-rows: auto;
    margin-top:40px;
    gap: 2rem;
}

@media (min-width: 768px) {
    .how-it-works-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .how-it-works-step {
        display: block;
    }
}

.step-number-circle {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 50%;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .step-number-circle {
        width: 4.5rem;
        height: 4.5rem;
    }
}

.step-number {
    letter-spacing: 0;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 1.875rem;
    }
}

.step-content {
    margin-top: 0;
}

@media (min-width: 768px) {
    .step-content {
        margin-top: 1rem;
    }
}

.step-title {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 1.5rem;
    }
}

.step-description {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.loading-link {
    position: relative;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 40px;
}

.loading-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.loading-text {
    visibility: visible;
}

.spinner {
    display: none;
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #f5f6fa;
}

.results-screenshot-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.results-screenshot {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.results-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.screenshot-caption {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
}

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

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: white;
    color: #475569;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo .logo-icon {
    color: #667eea;
}

.footer-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e293b;
}

.footer-description {
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .nav-content {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .nav-links {
        flex: 1;
        order: 2;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .value-dimensions,
    .steps,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-content {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }
    
    .nav-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 999;
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
    }
    
    .nav-links.active .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        color: #1e293b;
        text-align: center;
    }
    
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        border-top: 1px solid #e5e7eb;
        margin-top: 0;
        margin-left: 0;
        align-items: center;
        justify-content: center;
    }
    
    .nav-actions.active .nav-link,
    .nav-actions.active .btn-primary-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0.5rem auto;
        padding: 0.75rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .value-dimensions,
    .steps,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Common mobile responsive styles for all pages */
    body {
        padding: 0 !important;
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
    }
    
    main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
        padding: 0 !important;
    }
    
    .about-hero-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden;
        box-sizing: border-box !important;
    }
    
    .hero-description {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        display: block !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Override Tailwind tablet:w-3/4 class on mobile */
    .tablet\:w-3\/4 {
        width: 100% !important;
        max-width: calc(100% - 2rem) !important;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p {
    color: #64748b;
}

.auth-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* Login Section */
.login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    max-width: 500px;
    width: 100%;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.login-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #64748b;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.auth-divider span {
    padding: 0 1rem;
}

.auth-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    display: none;
}

.auth-message.success {
    background: #d1fae5;
    color: #065f46;
}

.auth-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.logged-in-view {
    text-align: center;
}

.welcome-message {
    color: #374151;
    margin-bottom: 1.5rem;
}

.nav-user-email {
    color: #64748b;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Dashboard Section */
.dashboard-section {
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    background: #f8fafc;
}

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

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.loading-state,
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #94a3b8;
}

.empty-state h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 2rem;
}

.assessments-list {
    display: grid;
    gap: 1.5rem;
}

.assessment-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.assessment-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.assessment-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.assessment-date {
    color: #64748b;
    font-size: 0.9rem;
}

.assessment-actions {
    display: flex;
    gap: 0.75rem;
}

.assessment-preview {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.score-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.score-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.score-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
}

.btn-danger {
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background: #dc2626;
}
