/* ================================================
   STAZ.TECH Landing Page Styles
   Multi-product positioning with 3 pillars
   ================================================ */

/* ===================================
   NAVBAR - Now handled globally in styles.css
   All header, logo, nav links, and language switcher styles
   have been moved to styles.css for consistency across all pages
   =================================== */

/* ===================================
   HERO SECTION IMPROVEMENTS
   =================================== */

/* Hero Landing Section */
.hero-landing {
    background: linear-gradient(135deg, #0f0f19 0%, #1a1d2e 50%, #2d3142 100%);
    color: var(--blanc);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background */
.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Glow halo effect */
.hero-landing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

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

/* Additional radial halo behind hero text */
.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 50%, rgba(255,0,0,0.08), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

/* Hero Content - Improved Typography with Text Gradient */
.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff 0%, #e2e2e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand name with red-orange gradient and glow */
.hero-content h1 span[style*="color: var(--rouge)"] {
    display: inline-block;
    background: linear-gradient(135deg, #FF3C3C 0%, #FF6A00 100%);
    color: var(--blanc) !important;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 60, 60, 0.5);
    animation: brand-glow 3s ease-in-out infinite;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--blanc);
}

@keyframes brand-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 60, 60, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 106, 0, 0.7);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #c5cfe0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Primary CTA Button - Enhanced with glow */
.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, var(--rouge) 0%, #b91c1c 100%);
    color: var(--blanc);
    border: none;
    box-shadow:
        0 0 15px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgba(220, 38, 38, 0.6),
        0 8px 20px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Secondary CTA Button - Ghost/Outline style */
.btn-secondary.btn-large {
    background: transparent;
    color: var(--blanc);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Solution Pillars Visual - Enhanced with gradient halo */
.solution-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
}

/* Animated background glow for pillars */
.solution-pillars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: pillar-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pillar-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.pillar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Gradient overlay on hover */
.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar:hover::before,
.pillar.auto-hover::before {
    opacity: 1;
}

.pillar:hover,
.pillar.auto-hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(255, 60, 60, 0.12);
    border-color: rgba(255, 60, 60, 0.6);
    box-shadow:
        0 10px 35px rgba(255, 60, 60, 0.5),
        0 0 25px rgba(255, 106, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

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

.pillar-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blanc);
    position: relative;
    z-index: 1;
}

/* Animated pointer icon for click interaction */
.pillar-label::after {
    content: '👆';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.pillar:hover .pillar-label::after,
.pillar.auto-hover .pillar-label::after {
    opacity: 1;
    transform: translateY(0);
    animation: pointer-bounce 0.8s ease-in-out infinite;
}

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

/* Animated connector between pillars */
.pillar-connector {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

/* Animated flow effect */
.pillar-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--rouge), transparent);
    animation: flow-right 2s ease-in-out infinite;
}

@keyframes flow-right {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pillar-connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--rouge);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
    animation: pulse-arrow 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes pulse-arrow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background-color: var(--gris-clair);
}

.vision-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--noir);
}

.vision-text {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--gris-fonce);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--blanc);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background: #ffffff;
}

.value-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.value-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--noir);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gris-fonce);
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background: var(--blanc);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--noir);
}

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

.solution-card {
    background: var(--gris-clair);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border-top: 4px solid var(--rouge);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.solution-card:hover h3 {
    color: var(--rouge);
}

.solution-card:hover .btn-card {
    background: var(--rouge);
    color: var(--blanc);
    transform: translateY(-2px);
}

.solution-card-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-top: 4px solid var(--rouge);
    box-shadow: 0 8px 20px rgba(228, 25, 55, 0.15);
    padding: 2.5rem;
}

.solution-card-highlight:hover {
    box-shadow: 0 16px 40px rgba(228, 25, 55, 0.25);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 0;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--noir);
}

.solution-card p {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gris-fonce);
    margin-bottom: 0;
}

.btn-card {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--blanc);
    color: var(--rouge);
    border: 2px solid var(--rouge);
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.btn-card:hover {
    background: var(--rouge);
    color: var(--blanc);
}

.btn-card-primary {
    background: var(--rouge);
    color: var(--blanc);
}

.btn-card-primary:hover {
    background: #c41e3a;
}

/* SaaS Focus Section */
.saas-focus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.saas-focus-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--noir);
    line-height: 1.3;
}

.saas-focus-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gris-fonce);
    margin-bottom: 2rem;
    font-weight: 500;
}

.saas-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 0.75rem;
}

.saas-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gris-fonce);
}

.saas-features li:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.saas-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* SaaS Mockup */
.saas-focus-visual {
    position: relative;
}

.saas-focus-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(228, 25, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.saas-mockup {
    background: var(--blanc);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid var(--gris);
    position: relative;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.saas-mockup:hover {
    transform: scale(1.12);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.mockup-header {
    background: #1a1d2e;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-title {
    color: var(--blanc);
    font-weight: 600;
    font-size: 0.95rem;
}

.mockup-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 300px;
}

.mockup-sidebar {
    background: #f8f9fa;
    padding: 1rem 0.5rem;
    border-right: 1px solid var(--gris);
}

.mockup-menu-item {
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--gris-fonce);
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.mockup-menu-item.active {
    background: var(--rouge);
    color: var(--blanc);
    font-weight: 600;
}

.mockup-main {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.mockup-stat {
    background: var(--gris-clair);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gris-fonce);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rouge);
}

/* Cyber Focus Section */
.cyber-focus-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 0%, #1A1C24 0%, #0E0F14 100%);
    color: var(--blanc);
    text-align: center;
    position: relative;
}

.cyber-focus-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(228, 25, 55, 0.4));
}

.cyber-focus-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cyber-focus-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #a8b3cf;
    font-weight: 500;
}

.cyber-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    background: rgba(228, 25, 55, 0.1);
    border-color: var(--rouge);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(228, 25, 55, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
}

.benefit-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a8b3cf;
    font-weight: 400;
}

.cyber-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cyber-cta-context {
    font-size: 1rem;
    color: #a8b3cf;
    margin-bottom: 1.5rem;
}

/* Dev Focus Section */
.dev-focus-section {
    padding: 5rem 0;
    background: var(--blanc);
}

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

.dev-focus-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--noir);
    line-height: 1.3;
}

.dev-focus-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-fonce);
    margin-bottom: 2rem;
}

.dev-services {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.dev-services li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gris-fonce);
    border-bottom: 1px solid var(--gris);
}

.dev-services li:last-child {
    border-bottom: none;
}

.dev-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.dev-focus-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--gris-clair) 0%, var(--blanc) 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--rouge);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--gris-fonce);
    font-weight: 600;
}

/* Why STAZ.TECH Section */
.why-section {
    padding: 5rem 0;
    background: var(--gris-clair);
}

.why-subtitle {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--gris-fonce);
}

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

.diff-item {
    background: var(--blanc);
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border-top: 3px solid var(--rouge);
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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

.diff-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gris-fonce);
    line-height: 1.4;
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #2d3142 100%);
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-stat {
    text-align: center;
    color: var(--blanc);
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rouge);
    margin-bottom: 0.75rem;
}

.proof-label {
    font-size: 1.1rem;
    color: #a8b3cf;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rouge) 0%, #c41e3a 100%);
    text-align: center;
    color: var(--blanc);
}

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-reassurance {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-landing .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .solution-pillars {
        flex-direction: column;
    }

    .pillar-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--rouge), transparent);
    }

    .pillar-connector::after {
        content: '↓';
    }

    .saas-focus-content,
    .dev-focus-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mockup-content {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--gris);
    }

    .mockup-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero improvements for mobile */
    .hero-landing {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-landing .container {
        gap: 2rem;
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }

    /* Hide pillars and visual elements on mobile */
    .hero-visual,
    .solution-pillars {
        display: none !important;
    }

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

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .hero-content::before {
        display: none;
    }

    .hero-landing::after {
        width: 300px;
        height: 300px;
    }

    /* Hide AstraDesk mockup on mobile */
    .saas-focus-visual,
    .saas-mockup {
        display: none !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .saas-focus-text h2,
    .cyber-focus-content h2,
    .dev-focus-text h2 {
        font-size: 1.85rem;
    }

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

    /* CTAs centered on mobile */
    .hero-cta-group,
    .saas-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group a,
    .saas-cta-group a {
        width: 100%;
        text-align: center;
    }

    /* Pillars and visual elements hidden on mobile - no carousel needed */

    @keyframes fade-pulse {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }

    .values-grid,
    .solutions-grid,
    .cyber-benefits,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .dev-focus-stats {
        grid-template-columns: 1fr;
    }

    /* Mobile navigation adjustments */
    .landing-page .logo {
        width: 100px;
        height: 50px;
    }

    .landing-page .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .landing-page .nav-cta {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile UX - Fixed CTA */
@media (max-width: 768px) {
    .mobile-cta-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--blanc);
        padding: 1rem;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex;
        justify-content: center;
    }

    .mobile-cta-fixed a {
        flex: 1;
        max-width: 400px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-landing {
        padding: 2rem 0;
    }

    .hero-landing .container {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}
