/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1563b2;
    --primary-blue-light: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-green: #10b981;
    --primary-green-light: #34d399;
    --primary-green-dark: #059669;
    --secondary-teal: #0891b2;
    --secondary-teal-light: #0ea5e9;
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-orange: #f59e0b;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-gray-light: #f1f5f9;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --border-gray: #e2e8f0;
    --border-gray-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-brutal: 4px 4px 0px var(--primary-blue);
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Quantum-Enhanced Custom Cursor */
.quantum-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all var(--transition-fast);
    opacity: 0;
}

.quantum-cursor.active {
    opacity: 1;
}

.quantum-cursor.hover {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-blue);
}

.quantum-cursor.click {
    transform: scale(0.5);
    background: var(--accent-blue);
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

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

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-smooth);
}

.nav a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}
.auth-buttons-mobile{
    display: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-gray);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: var(--shadow-brutal);
    transform: translate(-4px, -4px);
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    box-shadow: var(--shadow-brutal);
    transform: translate(-4px, -4px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section - Quantum Enhanced */
.hero {
    position: relative;
    padding: 150px 0 80px;
    background: var(--bg-white);
    overflow: hidden;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-blue);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-cta {
    background: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-cta:hover {
    background: white;
    color: var(--primary-blue);
    box-shadow: var(--shadow-brutal);
    transform: translate(-4px, -4px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: var(--shadow-brutal);
    transform: translate(-4px, -4px);
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: left;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Bento Grid System */
.hero-bento {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 450px;
    height: 450px;
}

.bento-card {
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    box-shadow: 8px 8px 0px var(--accent-blue);
    transform: translate(-8px, -8px);
    border-color: var(--accent-blue);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.medium {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-card.small {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.bento-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.bento-content span {
    font-size: 14px;
    line-height: 18px;
    display: block;
}

.score-display {
    margin: 1rem 0;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.score-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-gray);
    border-radius: 4px;
    margin: 0.5rem 0;
    overflow: hidden;
}

.score-fill {
    width: 98%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 4px;
    animation: fillAnimation 2s ease-out;
}

@keyframes fillAnimation {
    from { width: 0%; }
    to { width: 98%; }
}

.template-preview {
    display: flex;
    gap: 0.3rem;
    margin: 0.5rem 0;
    justify-content: center;
}

.template-mini {
    width: 20px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 2px;
    opacity: 0.8;
}

.template-mini:nth-child(2) {
    opacity: 0.6;
}

.template-mini:nth-child(3) {
    opacity: 0.4;
}

.success-chart {
    display: flex;
    gap: 0.3rem;
    align-items: end;
    height: 40px;
    margin: 0.5rem 0;
    justify-content: center;
}

.chart-bar {
    width: 8px;
    background: var(--primary-blue);
    border-radius: 4px 4px 0 0;
    animation: barAnimation 1.5s ease-out;
}

@keyframes barAnimation {
    from { height: 0%; }
}

.bento-card.small .bento-content {
    flex-direction: column;
    gap: 0.5rem;
}

.bento-card.small i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.bento-card.small span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-main-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.resume-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.resume-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.mockup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    width: 350px;
    height: 450px;
}

.resume-preview {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
    background: white;
}

.resume-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
}

.profile-info {
    flex: 1;
}

.name-bar {
    height: 12px;
    background: var(--text-dark);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 70%;
}

.title-bar {
    height: 8px;
    background: var(--text-gray);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 80%;
}

.contact-bar {
    height: 6px;
    background: var(--text-light);
    border-radius: 4px;
    width: 60%;
}

.resume-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title {
    height: 10px;
    background: var(--primary-green);
    border-radius: 4px;
    width: 40%;
    margin-bottom: 0.5rem;
}

.content-line {
    height: 6px;
    background: var(--border-gray);
    border-radius: 4px;
    margin-bottom: 0.3rem;
    width: 100%;
}

.content-line.short {
    width: 70%;
}

.ai-suggestions {
    position: absolute;
    top: -20px;
    right: -30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    width: 200px;
}

.suggestion {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.suggestion:last-child {
    margin-bottom: 0;
}

.suggestion i {
    color: var(--primary-green);
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green-light), var(--secondary-blue-light));
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 20%;
    animation: float 8s ease-in-out infinite;
}

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

/* Trusted By */
.trusted-by {
    padding: 4rem 0;
    background: var(--bg-gray);
    text-align: center;
}

.trusted-by h3 {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid var(--border-gray-light);
    box-shadow: var(--shadow-sm);
}

.logo-item:hover {
    background: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.company-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-item:hover .company-logo-text {
    color: var(--primary-green);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    /* background: var(--bg-white); */
    background: var(--bg-gray-light);
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-gray-light);
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Products */
.products {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray-light);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 1.5rem;
    /* color: white; */
    color: var(--primary-green);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: var(--primary-green-dark);
    transform: translateX(5px);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
}

.step-content {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray-light);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    /* color: white; */
    color: var(--primary-green);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border-gray);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--border-gray);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Resume Previews */
.resume-previews {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.preview-card {
    text-align: center;
}

.preview-image {
    margin-bottom: 1.5rem;
}

.resume-template {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    width: 240px;
    height: 320px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.resume-template:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.template-1 {
    border-left: 4px solid var(--primary-green);
}

.template-2 {
    border-left: 4px solid var(--secondary-blue);
}

.template-3 {
    border-left: 4px solid var(--accent-orange);
}

.template-header {
    margin-bottom: 1rem;
}

.template-name {
    height: 10px;
    background: var(--text-dark);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 60%;
}

.template-title {
    height: 8px;
    background: var(--text-gray);
    border-radius: 4px;
    width: 80%;
}

.template-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.template-section {
    text-align: left;
}

.template-section .section-title {
    width: 50%;
    margin-bottom: 0.5rem;
}

.section-items {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.item {
    height: 6px;
    background: var(--border-gray);
    border-radius: 4px;
    width: 100%;
}

.preview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.preview-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px 0px rgb(216 216 216 / 81%);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    /* color: white; */
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.currency {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

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

.features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.features i.fa-check {
    color: var(--primary-green);
}

.features i.fa-times {
    color: var(--text-light);
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid var(--border-gray);
    color: var(--text-dark);
}

.btn-pricing:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-pricing.primary {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-pricing.primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

/* Blog Preview */
.blog-preview {
    padding: 6rem 0;
    /* background: var(--bg-white); */
    background: var(--bg-gray-light);
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-bg {
    transform: scale(1.05);
}

.blog-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    display: inline-block;
    border: 1px solid;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section .logo{
    color: var(--bg-white);
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .footer-section a:hover {
    color: var(--primary-green);
} */

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav,
    .auth-buttons {
        display: none;
    }

    
    .auth-buttons{
        display: none;
    }

    .auth-buttons-mobile{
        display: block;
    }
    
    .mobile-menu-toggle .fa-times{
        display: none;
    }
    
    .mobile-menu-toggle.mobile-close-nav .fa-times{
        display: block;
    }
    
    .mobile-menu-toggle.mobile-close-nav .fa-bars{
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .step-connector {
        display: none;
    }

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

    .container {
        padding: 0 15px;
    }

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

    .testimonials-grid,
    .products-grid,
    .benefits-grid,
    .previews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .btn-cta,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .mockup-container {
        width: 280px;
        height: 360px;
        padding: 1.5rem;
    }
}

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

.testimonial-card,
.product-card,
.benefit-card,
.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Professional Statistics - Brutalist Style */
.professional-stats {
    padding: 6rem 0;
    background: var(--primary-blue);
    color: white;
    position: relative;
}

.professional-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent-blue);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 3px solid white;
    transition: all var(--transition-smooth);
    color: var(--text-dark);
}

.stat-card:hover {
    box-shadow: 8px 8px 0px var(--accent-blue);
    transform: translate(-8px, -8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-blue);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Showcase */
.features-showcase {
    padding: 6rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-xl);
}

.feature-img {
    width: 100%;
    /* height: 400px; */
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.feature-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-benefits i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    /* background: var(--bg-gray); */
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray-light);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--border-gray-light);
}

.faq-question:hover {
    background: var(--bg-gray-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    /* padding: 0 2rem 1.5rem; */
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--text-dark), #374151);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

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

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.cta-feature i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.cta-action {
    text-align: center;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border: none;
    color: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.btn-cta-large i {
    font-size: 1.5rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.cta-note {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .feature-showcase,
    .feature-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .feature-img {
        /* height: 250px; */
        height: 100%;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

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

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

    .btn-cta-large {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
}

/* Enhanced UI Improvements and Animations */

/* Enhanced Glassmorphism Effects */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Enhanced Card Designs */
.testimonial-card,
.product-card,
.benefit-card,
.pricing-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Floating animation for background elements */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Enhanced accessibility focus states */
button:focus,
a:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip links for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced hover effects for better interactivity */
.hero-buttons .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 99, 178, 0.4);
}

.hero-buttons .btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 99, 178, 0.3);
}

/* Improved placeholder section styles */
.placeholder-section-2 .placeholder-grid > div {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder-section-2 .placeholder-grid > div:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced CTA section styles */
.cta-enhanced {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.cta-enhanced::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" fill-opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Better responsive design enhancements */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

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

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

@media (max-width: 768px) {
    .cta-enhanced .cta-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .features-enhanced-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

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

    .cta-enhanced h2 {
        font-size: 2.5rem !important;
    }

    .cta-enhanced p {
        font-size: 1.2rem !important;
    }

    .btn-cta-mega {
        padding: 1.2rem 2.5rem !important;
        font-size: 1.1rem !important;
    }

    .hero-metrics {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    .btn-cta, .btn-outline {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }

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

    .bento-grid {
        max-width: 320px !important;
        height: 320px !important;
        gap: 0.5rem !important;
    }

    .bento-card {
        padding: 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .feature-enhanced-card {
        padding: 2rem 1.5rem !important;
    }

    .cta-enhanced {
        padding: 4rem 0 !important;
    }

    .cta-enhanced h2 {
        font-size: 2rem !important;
    }

    .btn-cta-mega {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }

    .cta-enhanced .cta-features {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .cta-feature {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0066cc;
        --text-gray: #333333;
        --bg-gray: #f0f0f0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-shapes .shape {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .header,
    .cta-enhanced,
    .footer {
        display: none !important;
    }

    .hero {
        padding: 2rem 0 !important;
    }

    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
}

/* Dark mode support (if implemented in future) */
@media (prefers-color-scheme: dark) {
    .placeholder-section-2 {
        background: #1a1a1a !important;
    }

    .placeholder-section-2 .placeholder-grid > div {
        background: #2a2a2a !important;
        color: #ffffff !important;
    }
}

/* Utility classes for improved UX */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
