/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - HSL format */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 10%);
    
    /* Primary - Deep Red */
    --primary: hsl(358, 75%, 48%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(358, 70%, 65%);
    --primary-dark: hsl(358, 80%, 38%);
    
    /* Accent - Blue */
    --accent: hsl(211, 85%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --accent-dark: hsl(215, 80%, 45%);
    --accent-light: hsl(211, 85%, 70%);
    
    /* Neutrals */
    --muted: hsl(220, 15%, 96%);
    --muted-foreground: hsl(220, 12%, 45%);
    --border: hsl(220, 15%, 92%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(358, 75%, 52%) 0%, hsl(358, 80%, 42%) 50%, hsl(358, 85%, 38%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(211, 85%, 60%) 0%, hsl(215, 85%, 50%) 50%, hsl(220, 80%, 45%) 100%);
    --gradient-hero: linear-gradient(165deg, hsl(0, 0%, 100%) 0%, hsl(220, 25%, 98%) 40%, hsl(0, 0%, 100%) 100%);
    --gradient-mesh: radial-gradient(circle at 15% 20%, hsl(358, 75%, 96%) 0%, transparent 45%), 
                     radial-gradient(circle at 85% 80%, hsl(211, 80%, 96%) 0%, transparent 45%),
                     radial-gradient(circle at 50% 50%, hsl(220, 20%, 98%) 0%, transparent 60%);
    --gradient-card: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9) 0%, hsla(0, 0%, 100%, 0.6) 100%);
    --gradient-premium: linear-gradient(135deg, hsl(358, 75%, 52%) 0%, hsl(15, 85%, 55%) 50%, hsl(30, 90%, 60%) 100%);
    
    /* Shadows */
    --shadow-soft: 0 1px 3px hsla(220, 15%, 50%, 0.04), 0 4px 8px hsla(220, 15%, 50%, 0.06);
    --shadow-medium: 0 4px 12px hsla(220, 15%, 50%, 0.08), 0 8px 24px hsla(220, 15%, 50%, 0.10);
    --shadow-large: 0 12px 40px hsla(220, 15%, 50%, 0.12), 0 24px 64px hsla(220, 15%, 50%, 0.15);
    --shadow-accent: 0 8px 32px hsla(358, 75%, 48%, 0.18), 0 2px 8px hsla(358, 75%, 48%, 0.12);
    --shadow-glow: 0 0 40px hsla(358, 75%, 48%, 0.20), 0 0 80px hsla(358, 75%, 48%, 0.10);
    --shadow-premium: 0 20px 60px hsla(358, 75%, 48%, 0.15), 0 8px 24px hsla(358, 75%, 48%, 0.10);
}

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

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

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(358, 75%, 48%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-light);
    width: 100vw
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-logo .logo-img {
    height: 3rem;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

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

.nav-link {
    color: var(--primary-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-light);
}

.nav-cta-desktop {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .nav-cta-desktop {
        display: flex;
    }
}

.nav-mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-mobile-toggle {
        display: none;
    }
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--primary-light);
    animation: fadeIn 0.3s;
}

.nav-mobile.hidden {
    display: none;
}

.nav-link-mobile {
    color: var(--primary-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: var(--accent-light);
}

.nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-outline-accent {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--accent);
}
.btn-outline-white {
    background: transparent;
    border: 2px solid var(--muted);
    color: var(--muted);
}

.btn-outline-white:hover {
    background: var(--muted);
    color: var(--muted-foreground);
}

.btn-primary-gradient {
    background: var(--gradient-premium);
    color: white;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.btn-glass {
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    border: 2px solid hsla(358, 75%, 48%, 0.2);
    color: var(--foreground);
}

.btn-glass:hover {
    border-color: hsla(358, 75%, 48%, 0.4);
    background: hsla(0, 0%, 100%, 0.9);
}

.btn-lg {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.hero-orb-1 {
    top: 5rem;
    right: -5rem;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom right, hsla(358, 75%, 48%, 0.12), hsla(358, 75%, 48%, 0.06), transparent);
}

.hero-orb-2 {
    bottom: -5rem;
    left: -5rem;
    width: 600px;
    height: 600px;
    background: linear-gradient(to bottom right, hsla(211, 85%, 55%, 0.12), hsla(211, 85%, 55%, 0.06), transparent);
    animation-delay: 2s;
}

.hero-orb-3 {
    top: 33%;
    right: 33%;
    width: 400px;
    height: 400px;
    background: linear-gradient(to bottom right, hsla(358, 70%, 65%, 0.08), transparent, hsla(211, 85%, 70%, 0.08));
    animation: tilt 10s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: radial-gradient(circle, hsl(220, 20%, 30%) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.hero-grid-layout {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        height: 100%; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    border: 1px solid hsla(358, 75%, 48%, 0.15);
    box-shadow: var(--shadow-soft);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.5s;
    animation: fadeIn 0.8s;
}

.hero-badge:hover {
    box-shadow: var(--shadow-accent);
    transform: scale(1.05);
}

.pulse-indicator {
    position: relative;
    display: flex;
    height: 0.625rem;
    width: 0.625rem;
}

.pulse-ring {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot {
    position: relative;
    display: inline-flex;
    height: 0.625rem;
    width: 0.625rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pulse-indicator-small {
    position: relative;
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
}

.pulse-indicator-small .pulse-ring {
    height: 0.5rem;
    width: 0.5rem;
    opacity: 0.4;
}

.pulse-indicator-small .pulse-dot {
    height: 0.5rem;
    width: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-title {
       /* font-size: 4.5rem;*/
    }
}

.hero-title-gradient {
    display: block;
    margin-top: 1rem;
    background: var(--gradient-premium);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.hero-description {
    font-size: 1rem;
    line-height: 2;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
    animation: fadeIn 0.8s;
    animation-delay: 0.1s;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem;
    }
}

.hero-highlight {
    font-weight: 600;
    color: var(--primary);
    background: hsla(358, 75%, 48%, 0.05);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s;
    animation-delay: 0.2s;
}

@media (min-width: 640px) {
    .hero-cta {
        /*flex-direction: row;*/
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 0.8s;
    animation-delay: 0.3s;
}

@media (min-width: 1024px) {
    .hero-trust-indicators {
        justify-content: flex-start;
        gap: 2.5rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsla(220, 20%, 10%, 0.8);
    transition: color 0.3s;
    cursor: default;
}

@media (min-width: 640px) {
    .trust-item {
        font-size: 0.875rem;
    }
}

.trust-item:hover {
    color: var(--foreground);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeIn 0.8s;
    animation-delay: 0.2s;
}

@media (min-width: 1024px) {
    .hero-cards {
        gap: 1.5rem;
    }
}

.feature-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    border: 1px solid hsla(0, 0%, 100%, 0.6);
    box-shadow: var(--shadow-medium);
    transition: all 0.7s;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .feature-card {
        gap: 1.5rem;
        padding: 1rem;
        border-radius: 1rem;
    }
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.feature-card.card-1:hover {
    background: linear-gradient(145deg, hsla(211, 85%, 55%, 0.05), transparent);
}

.feature-card.card-2:hover {
    background: linear-gradient(145deg, hsla(358, 75%, 48%, 0.05), transparent);
}

.feature-card.card-3 {
    background: var(--gradient-premium);
    border-color: hsla(358, 75%, 48%, 0.3);
    box-shadow: var(--shadow-premium);
}

.feature-card.card-3:hover {
    box-shadow: var(--shadow-glow);
}

.feature-card.card-3 h3,
.feature-card.card-3 p {
    color: white;
}

.feature-icon {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    box-shadow: var(--shadow-accent);
    transition: all 0.5s;
}

@media (min-width: 1024px) {
    .feature-icon {
        padding: 1rem;
        border-radius: 1rem;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.icon-accent {
    background: var(--gradient-accent);
}

.icon-primary {
    background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
}

.icon-white {
    background: hsla(0, 0%, 100%, 0.25);
    backdrop-filter: blur(4px);
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

@media (min-width: 1024px) {
    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.feature-card.card-1:hover h3 {
    color: var(--accent);
}

.feature-card.card-2:hover h3 {
    color: var(--primary);
}

.feature-content p {
    color: var(--muted-foreground);
    line-height: 1.75;
    font-size: 0.875rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .feature-content p {
        font-size: 14px;
    }
}

.feature-card.card-3 p {
    color: hsla(0, 0%, 100%, 0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-mouse {
    width: 2rem;
    height: 3rem;
    border: 2px solid hsla(358, 75%, 48%, 0.25);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.625rem;
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s;
}

.scroll-mouse::before {
    content: '';
    width: 0.375rem;
    height: 0.875rem;
    background: var(--gradient-primary);
    border-radius: 9999px;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-glow);
}

.scroll-indicator:hover .scroll-mouse {
    border-color: hsla(358, 75%, 48%, 0.4);
    box-shadow: var(--shadow-accent);
    transform: scale(1.1);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-muted {
    background: var(--muted);
}

.section-gradient {
    background: linear-gradient(to bottom right, hsla(211, 85%, 55%, 0.05), var(--background), hsla(358, 75%, 48%, 0.05));
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, hsl(220, 20%, 30%) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

.text-primary {
    color: var(--primary);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.section-note {
    margin-top: 3rem;
    text-align: center;
    animation: fadeIn 0.8s;
}

.section-note p {
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.section-note strong {
    font-weight: 600;
    color: var(--accent);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: all 0.3s;
    animation: fadeIn 0.8s;
}

.step-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin: 1.5rem 0 0.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.highlight-box {
    margin-top: 4rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    animation: scaleIn 0.5s;
}

@media (min-width: 768px) {
    .highlight-box {
        padding: 3rem;
    }
}

.highlight-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

/* Models Grid */
.models-grid {
    display: grid;
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.model-card {
    background: white;
    border-radius: 0.75rem;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    transition: all 0.3s;
    animation: fadeIn 0.8s;
}

.model-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.model-icon {
    display: inline-block;
    font-size: 2rem;
    padding: 1rem;
    background: hsla(211, 85%, 55%, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.model-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.model-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.model-details {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.detail-row span:first-child {
    font-weight: 500;
    color: var(--muted-foreground);
}

.detail-value {
    font-weight: 700;
}

.detail-ideal {
    padding-top: 0.5rem;
    font-size: 0.75rem;
}

.detail-ideal strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Featured Project */
.featured-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.5rem;
}

.featured-card {
    max-width: 96rem;
    margin: 0 auto;
    background: white;
    border: 4px solid var(--accent);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-accent);
    overflow: hidden;
}

.featured-alert {
    background: linear-gradient(to right, var(--accent), var(--accent-dark));
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    animation: pulse 2s infinite;
}

.featured-content {
    display: grid;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.featured-pricing h3,
.featured-highlights h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-row span:first-child {
    color: var(--muted-foreground);
}

.price-old {
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--muted-foreground);
}

.price-main {
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--accent);
}

.price-expected {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.pricing-highlight {
    background: hsla(211, 85%, 55%, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.highlight-amount {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: hsla(358, 75%, 48%, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.highlight-item.highlight-special {
    background: hsla(211, 85%, 55%, 0.1);
    border: 2px solid var(--accent);
}

.highlight-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.highlight-item strong {
    color: var(--primary);
    display: block;
}

.highlight-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.featured-features {
    border-top: 1px solid var(--border);
    padding: 2rem;
}

.featured-features h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.featured-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
    .featured-cta {
        flex-direction: row;
    }
}

.featured-contact {
    text-align: center;
    padding: 0 2rem 2rem;
}

.featured-contact p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.featured-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

.featured-contact a:hover {
    text-decoration: underline;
}

.featured-info {
    margin-top: 2rem;
    text-align: center;
    animation: fadeIn 0.8s;
}

.featured-info p {
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 1rem;
}

.featured-info strong {
    font-weight: 600;
    color: var(--primary);
}

.featured-info a {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.featured-info a:hover {
    color: var(--accent-dark);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: white;
    border-radius: 0.75rem;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s;
    animation: fadeIn 0.8s;
}

.project-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.project-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item span {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.detail-item strong {
    font-weight: 700;
}

.project-stats {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.stat-row span {
    color: var(--muted-foreground);
}

.stat-row strong {
    font-weight: 700;
}

.project-progress {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.progress-header span {
    font-weight: 500;
    color: var(--muted-foreground);
}

.progress-header strong {
    font-weight: 700;
}

.progress-bar {
    height: 0.5rem;
    width: 100%;
    background: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

.project-model {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.project-model strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.project-model p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Security Grid */
.security-grid {
    display: grid;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 768px) {
    
    .security-card{
        display:grid !important;
    }
    .security-icon {
    font-size: 2rem !important;
    padding: 1rem 1.5rem !important;
    width: fit-content !important;
    }
    
}

.security-card {
    background: white;
    border-radius: 0.75rem;
    border: 2px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
    animation: fadeIn 0.8s;
}

.security-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-medium);
}

.security-icon {
    font-size: 1.75rem;
    padding: 0.75rem;
    background: hsla(211, 85%, 55%, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.security-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.security-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.security-highlight {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    max-width: 48rem;
    margin: 0 auto 3rem;
    animation: scaleIn 0.5s;
}

@media (min-width: 768px) {
    .security-highlight {
        padding: 3rem;
    }
}

.security-highlight-icon {
    display: inline-block;
    font-size: 2.5rem;
    padding: 1rem;
    background: hsla(211, 85%, 55%, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.security-highlight h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.security-highlight p {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.security-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    color: hsla(0, 0%, 100%, 0.8);
}

@media (min-width: 640px) {
    .security-benefits {
        flex-direction: row;
    }
}

.security-benefits div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-stats {
    display: grid;
    gap: 1.5rem;
    max-width: 96rem;
    margin: 0 auto;
    animation: fadeIn 0.8s;
}

@media (min-width: 768px) {
    .security-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
}

/* About Section */
.about-content {
    max-width: 96rem;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    animation: fadeIn 0.8s;
}

@media (min-width: 768px) {
    .about-content {
        padding: 3rem;
    }
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h3 {
        font-size: 1.875rem;
    }
}

.about-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-content strong {
    font-weight: 600;
    color: var(--accent);
}

.about-values {
    display: grid;
    gap: 1.5rem;
    max-width: 96rem;
    margin: 0 auto 3rem;
    animation: fadeIn 0.8s;
}

@media (min-width: 640px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-values {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.value-icon {
    display: inline-block;
    font-size: 2rem;
    padding: 1rem;
    background: hsla(358, 75%, 48%, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-difference {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    max-width: 48rem;
    margin: 0 auto;
    animation: scaleIn 0.5s;
}

@media (min-width: 768px) {
    .about-difference {
        padding: 3rem;
    }
}

.about-difference h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.about-difference p {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

.about-difference strong {
    font-weight: 700;
    color: var(--accent);
}

/* FAQ Section */
.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeIn 0.8s;
}

.faq-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-wrapper {
    animation: fadeIn 0.8s;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.8s;
    animation-delay: 0.15s;
}

.contact-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-advisor {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-icon {
    font-size: 1.25rem;
    padding: 0.5rem;
    background: hsla(358, 75%, 48%, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.info-value {
    font-size: 0.875rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-links h3,
.footer-contact h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li,
.footer-contact li {
    font-size: 0.875rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact li {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-bottom {
    border-top: 1px solid var(--primary-light);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-floating {
    box-shadow: var(--shadow-medium);
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: flex;
    }
}

.scroll-top-btn.hidden {
    display: none;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: var(--shadow-large);
    animation: scaleIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    border: none;
    background: var(--muted);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--border);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--foreground);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-large);
    z-index: 3000;
    animation: slideUp 0.3s;
}

.toast.hidden {
    display: none;
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes tilt {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(1000px) rotateX(1deg) rotateY(1deg);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

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

/* Utilities */
.hidden {
    display: none;
}