/* ----- CSS Reset & Variables (Tech Compact Theme) ----- */
:root {
    /* Logo Colors */
    --primary: #194073;
    --primary-hover: #13325c;
    --secondary: #F18A22;
    --secondary-hover: #e07b1d;
    
    /* Modern Light Theme Backgrounds */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-accent: #eff6ff;
    
    /* Typography Colors */
    --text-main: #0f172a;
    --text-muted: #475569;
    
    --border-color: #e2e8f0;
    
    /* Tech Font */
    --font-main: 'Space Grotesk', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Compact Soft Shadows */
    --shadow-sm: 0 2px 5px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 30px -6px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 6px 20px rgba(241, 138, 34, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Reduced base size to make everything less jumbo */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, hsla(211,100%,96%,1) 0, transparent 40%), 
        radial-gradient(at 100% 100%, hsla(28,100%,95%,1) 0, transparent 40%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: var(--secondary);
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 6px; /* More techy than 100px */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px -2px rgba(25, 64, 115, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -4px rgba(25, 64, 115, 0.5);
    color: white;
    background: var(--primary-hover);
}

.btn-outline {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--text-main);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ----- Header & Navigation ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-color);
}

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

/* ----- Logo Styling ----- */
.unique-logo {
    display: inline-flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px; /* Adjust height based on actual image aspect ratio */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
    opacity: 0;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
    border-radius: 1px;
}

/* ----- Hero Section ----- */
.hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: white;
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.stat-value {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Hero Image & 3D Elements */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.image-blob-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--bg-accent), #fff0e6);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite alternate;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.8;
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
    border: 4px solid white;
}

.hero-image:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(2deg); }
    50% { transform: translateY(-10px) rotateY(-2deg) rotateX(1deg); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.8rem 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--border-color);
    animation: floatCard 4s ease-in-out infinite alternate;
}

.icon-box {
    width: 36px;
    height: 36px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.floating-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.floating-card p {
    font-size: 0.75rem;
    margin: 0;
    font-weight: 500;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0% { transform: translateY(0px) translateZ(20px); }
    100% { transform: translateY(-10px) translateZ(30px); }
}

/* ----- Partners Section ----- */
.partners {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.partners-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.partners-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-logo-row:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

.partner-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-main);
}

/* ----- About Section (Professional) ----- */
.about-pro-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bg-card);
}

.about-pro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-pro-content {
    padding-right: 2rem;
}

.about-pro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sub-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 4 Pillars Grid */
.about-pro-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pro-pillar {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.pro-pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.pro-pillar h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.pro-pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .about-pro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-pro-content {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .about-pro-pillars {
        grid-template-columns: 1fr;
    }
}

/* ----- Features Section ----- */
.features-section {
    padding: 5rem 0;
    background-color: #f4f8fc;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
}

.features-swiper {
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.features-swiper .swiper-slide {
    width: 320px;
    height: auto;
    display: flex;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: white;
    color: var(--secondary) !important;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.swiper-slide-active .feature-card {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(241, 138, 34, 0.15);
}

.swiper-slide-active .feature-card::before {
    opacity: 1;
}

.feature-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ----- Privacy Policy Section ----- */
.privacy-section {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.privacy-block {
    margin-bottom: 2.5rem;
}

.privacy-block h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(25, 64, 115, 0.1);
    padding-bottom: 0.5rem;
}

.privacy-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.list-icon {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-card {
    background: rgba(25, 64, 115, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(25, 64, 115, 0.08);
}

.privacy-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.privacy-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.secondary-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
}

.secondary-list li strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
}

.privacy-subheading {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .privacy-content-wrapper {
        padding: 1.5rem;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Contact Us Section ----- */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

.info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-main);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(25, 64, 115, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    background: rgba(241, 138, 34, 0.1);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(25, 64, 115, 0.05);
}

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

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-card);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(241, 138, 34, 0.1);
}

.btn-block {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

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

/* ----- Compact Download Section ----- */
.download-section {
    padding: 2rem 0 7rem 0;
}

.download-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0a1b32 100%);
    border-radius: 24px;
    padding: 4.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 30px 60px -12px rgba(25, 64, 115, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.banner-shapes .shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    filter: blur(120px);
    opacity: 0.35;
    bottom: -150px;
    right: -100px;
    border-radius: 50%;
}

.banner-shapes .shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffffff;
    filter: blur(100px);
    opacity: 0.1;
    top: -100px;
    left: -50px;
    border-radius: 50%;
}

.download-content {
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.download-tagline {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.download-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
    line-height: 1.6;
}

.download-action {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-left: 3rem;
    min-width: 250px;
}

.btn-download {
    background: linear-gradient(to right, var(--secondary), #f5a24b);
    color: white;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(241, 138, 34, 0.4);
    border: none;
    font-weight: 700;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-download:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(241, 138, 34, 0.5);
    color: white;
}

.btn-download .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-download:hover .btn-icon {
    transform: translateY(3px);
}

/* Button Animation State */
.btn-download.is-downloading {
    background: #22c55e;
    pointer-events: none;
    animation: downloadPulse 1.5s infinite alternate;
}

@keyframes downloadPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    100% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
}

.download-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ----- Footer ----- */
.footer {
    background-color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ----- Responsive Design ----- */
@media (max-width: 1024px) {
    .download-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .download-content {
        max-width: 100%;
    }
    
    .download-action {
        margin-left: 0;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4.5rem);
        background-color: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .card-1, .card-2 {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Scroll Animations ----- */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
