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

:root {
    --primary: #0a0e1a;
    --secondary: #1a1f2e;
    --accent: #4f46e5;
    --accent-light: #6366f1;
    --accent-secondary: #06b6d4;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #8b5cf6 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

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

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-text span {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-light);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    height: 56px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    height: 56px;
}

.secondary-button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--secondary);
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.category-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.service-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.business-focused {
    border-left: 4px solid #10b981;
}

.business-focused:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.fintech-focused {
    border-left: 4px solid #3b82f6;
}

.fintech-focused:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.enterprise-focused {
    border-left: 4px solid #8b5cf6;
}

.enterprise-focused:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.service-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

.service-title {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

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

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.business-focused .service-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.fintech-focused .service-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.enterprise-focused .service-icon {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.business-focused .tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.enterprise-focused .tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.2);
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: var(--primary);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.step-description {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Results Section */
.results {
    padding: 4rem 0;
    background: var(--secondary);
}

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

.result-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.result-metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Investment Section */
.investment {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(30, 41, 59, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: backgroundShift 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.02); }
}

.investment .container {
    position: relative;
    z-index: 1;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
    justify-items: center;
}

.investment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.investment-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.investment-card.featured {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.investment-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.investment-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 30%, #ff6b35 70%, #ff4757 100%);
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badge-glow 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.investment-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badge-shine 2s ease-in-out infinite;
}

.investment-badge::after {
    content: '⭐';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    animation: star-twinkle 1.5s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 107, 107, 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 107, 107, 0.6),
            0 0 0 3px rgba(255, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 20px rgba(255, 107, 107, 0.3);
    }
}

@keyframes badge-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes star-twinkle {
    0% { opacity: 0.7; transform: translateY(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.investment-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.investment-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.investment-title {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.investment-range {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.investment-content {
    position: relative;
}

.investment-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.value-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.featured-highlight {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.highlight-label {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.highlight-value {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

.featured-highlight .highlight-value {
    color: var(--accent-light);
}

.investment-features {
    list-style: none;
    margin-bottom: 2rem;
    space-y: 0.75rem;
}

.investment-features li {
    color: var(--text-gray);
    padding: 0.75rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.investment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.investment-card:hover .investment-features li {
    color: var(--text-light);
}

.investment-note {
    font-size: 0.9rem;
    color: var(--accent-light);
    text-align: center;
    font-style: italic;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.investment-factors {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-factors h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.factor {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.factor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.factor:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.factor:hover::before {
    opacity: 0.05;
}

.factor-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.factor:hover .factor-icon {
    transform: scale(1.1) rotate(5deg);
}

.factor h4 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.25px;
}

.factor p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.factor:hover p {
    color: var(--text-light);
}

.investment-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 12px;
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.investment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.investment-cta:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.investment-cta:hover::before {
    left: 0;
}

.featured-cta {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.featured-cta::before {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(450px);
    transition: transform 0.3s ease-out;
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    display: none;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notification.success .notification-content {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(15, 23, 42, 0.95);
}

.notification.error .notification-content {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(15, 23, 42, 0.95);
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    color: #10b981;
}

.notification.error .notification-icon {
    color: #ef4444;
}

.notification-message {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}x;
}

/* Footer */
footer {
    padding: 2rem 0;
    background: var(--primary);
    text-align: center;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer-content p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1rem;
    color: var(--accent-light);
    filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 0.3));
}

.footer-divider {
    color: rgba(148, 163, 184, 0.5);
    font-weight: 300;
}

.footer-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--accent-light);
}

/* Button Icons */
.button-icon {
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.cta-button:hover .button-icon,
.secondary-button:hover .button-icon,
.investment-cta:hover .button-icon {
    transform: scale(1.1) rotate(5deg);
}

.secondary-button:hover .button-icon {
    transform: scale(1.2);
}

.featured-cta:hover .button-icon {
    transform: scale(1.15) rotate(-5deg);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .services-grid,
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .footer-content p {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-divider {
        display: none;
    }

    /* Investment section mobile fixes */
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }

    .investment-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .investment-card.featured {
        transform: none;
        order: -1;
    }

    .investment-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.5rem;
        top: -15px;
    }

    .investment-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .investment-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .investment-title {
        font-size: 1.5rem;
    }

    .investment-range {
        font-size: 1.25rem;
    }

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

    .investment-factors {
        padding: 2rem 1rem;
    }

    /* Results section mobile alignment */
    .results-grid {
        gap: 1.5rem;
        justify-items: center;
    }

    .result-card {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    /* Services section mobile alignment */
    .services-row {
        justify-items: center;
    }

    .service-card {
        max-width: 100%;
        width: 100%;
    }
}
