/* Réseaux sociaux - Header */
.social-links-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links-nav a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links-nav a:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.social-links-nav a.facebook:hover {
    background: #1877f2;
}

.social-links-nav a.linkedin:hover {
    background: #0a66c2;
}

.social-links-nav a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Réseaux sociaux - Footer */
.footer-social {
    position: relative;
    z-index: 1;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links-footer a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links-footer a:hover {
    transform: translateY(-5px);
    border-color: white;
}

.social-links-footer a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-links-footer a.linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.social-links-footer a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

/* Bouton Retour en haut */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #4da6ff;
    --accent-orange: #ff8c00;
    --bright-orange: #ffa500;
    --text-dark: #0a1628;
    --text-gray: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ==================== NAVIGATION ==================== */

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.logo-img {
    position: relative;
    z-index: 1001;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.45);
}

/* ===== RÈGLE IMPORTANTE : Masquer les réseaux sociaux EN DESSOUS de 1375px (mode desktop) ===== */
@media (max-width: 1374px) and (min-width: 1120px) {
    .nav-links .social-links-nav {
        display: none !important;
    }
}

/* Au-dessus de 1375px : Desktop avec réseaux sociaux affichés */
@media (min-width: 1375px) {
    .nav-container {
        padding: 0.8rem 3rem;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .social-links-nav {
        gap: 1rem;
    }
    
    .social-links-nav a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Entre 1374px et 1120px : Desktop SANS réseaux sociaux */
@media (max-width: 1374px) and (min-width: 1120px) {
    .nav-container {
        padding: 0.8rem 2rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .cta-nav {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}

/* ===== RÈGLE IMPORTANTE : Mode Burger à partir de 1119px et moins ===== */
@media (max-width: 1119px) {
    .hamburger {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .nav-container {
        padding: 0.8rem 2rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 340px;
        max-width: 85vw;
        background: white;
        flex-direction: column;
        padding: 6rem 2.5rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1.3rem 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .cta-nav {
        margin-top: 1rem;
        text-align: center;
        border-radius: 15px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Réseaux sociaux dans le menu burger */
    .social-links-nav {
        justify-content: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--bg-light);
        gap: 1.5rem;
    }
    
    .social-links-nav a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }
    
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0.7rem 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-links {
        width: 300px;
        padding: 5rem 2rem 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.05rem;
        padding: 1.1rem 0;
    }
    
    .cta-nav {
        font-size: 1.05rem;
        padding: 1.1rem 1.8rem;
    }
    
    .social-links-nav a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Responsive pour les réseaux sociaux dans footer */
@media (max-width: 968px) {
    .footer-social {
        text-align: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}

/* Hero Ultra Modern with Image Background */
.hero {
    margin-top: 85px;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 61, 122, 0.95) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Placeholder for hero background image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5.3rem 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.8rem;
    line-height: 1.1;
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-4px);
}

/* Stats Card Modern */
.hero-stats {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    animation: fadeIn 1s ease 0.8s backwards;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    font-family: 'Sora', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: white;
    margin-top: 0.8rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Trust Banner Modern */
.trust-banner {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    padding: 2rem 3rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(255, 140, 0, 0.3);
}

.trust-banner p {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Domains Section with Images */
.domains {
    padding: 8rem 0;
}

.domains-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.domain-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image placeholder for domain cards */
.domain-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Couleurs spécifiques par domaine */
.domain-solar .domain-image {
    background: linear-gradient(135deg, #ff9a00, #ffcc00);
}

.domain-heating .domain-image {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.domain-insulation .domain-image {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.domain-wind .domain-image {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.domain-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.domain-icon-large {
    font-size: 3.5rem;
    z-index: 1;
    position: relative;
}

.domain-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.domain-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.domain-list {
    list-style: none;
    flex-grow: 1;
}

.domain-list li {
    padding: 0.7rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.domain-list li:last-child {
    border-bottom: none;
}

.domain-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Problems Section with Background Image */
.problems {
    padding: 8rem 3rem;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

/* Video Section */
.video-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.video-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #e53935, #c62828);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
}

.video-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.video-container {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.video-info p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.video-info strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.video-link {
    margin-top: 1.5rem;
    text-align: center;
}

.video-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.video-link a:hover {
    color: var(--accent-orange);
    gap: 0.8rem;
}

@media (max-width: 968px) {
    .video-header h2 {
        font-size: 2.5rem;
    }
    
    .video-container {
        padding: 1.5rem;
    }
}

.who-we-are {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.who-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-visual {
    position: relative;
}

.who-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.who-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.who-stats {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.who-stat {
    text-align: center;
}

.who-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
    font-family: 'Sora', sans-serif;
}

.who-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.3rem;
    font-weight: 600;
}

.who-content-text {
    padding: 2rem 0;
}

.who-content-text h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.who-content-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.who-content-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.who-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.who-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.who-feature:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.who-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.who-feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .who-container {
        gap: 3rem;
    }
    
    .who-content-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .who-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .who-visual {
        order: 2;
    }
    
    .who-content-text {
        order: 1;
    }
    
    .who-features {
        grid-template-columns: 1fr;
    }
    
    .who-image-placeholder {
        height: 400px;
    }
    
    .who-content-text h2 {
        font-size: 2.5rem;
    }
}

/* Placeholder for problems background */
.problems-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.problems-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problems-header {
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.problems-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.problems-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(10px);
    border-color: var(--accent-orange);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.problems-cta {
    text-align: center;
    margin-top: 5rem;
}

.alert-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--accent-orange);
    padding: 2rem;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 900px;
    color: white;
}

.alert-box strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

/* Process Section */
.process {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.step:hover {
    background: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
    font-family: 'Sora', sans-serif;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Results Section with Judgments */
.results {
    background: var(--bg-gradient);
    color: white;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.results h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.results-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 5rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.judgments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.judgment-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.judgment-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.judgment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.judgment-date {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 600;
}

.judgment-badge {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.judgment-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.judgment-parties {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.judgment-points {
    list-style: none;
    padding: 0;
}

.judgment-points li {
    padding: 0.9rem 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.judgment-points li strong {
    color: var(--accent-orange);
    font-weight: 800;
}

.amount {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.1em;
}

.results-cta {
    text-align: center;
    margin-top: 4rem;
}

.results-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Why Us Section with Image */
.why-us {
    padding: 8rem 0;
    background: white;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.why-us h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

@media (max-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.reason {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.reason:hover {
    background: white;
    border-color: var(--accent-orange);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.reason h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.reason p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.guarantee {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(255, 140, 0, 0.1));
    padding: 3rem;
    border-radius: 25px;
    margin-top: 4rem;
    border: 2px solid var(--accent-orange);
    text-align: center;
}

.guarantee h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee p {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 8rem 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact h2 {
    text-align: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-highlight {
    text-align: center;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.05rem;
}

.form-group label .required {
    color: var(--accent-orange);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: white;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.privacy-notice {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
    line-height: 1.7;
}

.privacy-notice strong {
    color: var(--primary-blue);
}

.submit-btn {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1.5rem;
}

/* Footer Modern with Gradient */
.footer {
    background: linear-gradient(135deg, #001a33 0%, #003d7a 50%, #001a33 100%);
    color: white;
    padding: 4rem 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-about {
    background: #ffffffe8;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-about p {
    opacity: 0.9;
    line-height: 1.9;
    font-size: 1.05rem;
    color: black;
}

.footer-logo {
    height: 90px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-links {
    position: relative;
    z-index: 1;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-orange);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Responsive Ultra Modern */
@media (max-width: 1200px) {
    .hero-container {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .domains-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding: 3rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .trust-banner {
        padding: 1.5rem 1.5rem;
    }
    
    .trust-banner p {
        font-size: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .judgments-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-header h2 {
        font-size: 2.5rem;
    }
    
    .problems-header p {
        font-size: 1.1rem;
    }
    
    .problem-card {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .results h2 {
        font-size: 2.5rem;
    }
    
    .results-intro {
        font-size: 1.1rem;
    }
    
    .judgments-grid {
        grid-template-columns: 1fr;
    }
    
    .judgment-card {
        padding: 2rem 1.5rem;
    }
    
    .why-us h2 {
        font-size: 2.5rem;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .contact-intro {
        font-size: 1.05rem;
    }
    
    .contact-highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .judgment-card,
    .problem-card {
        padding: 2rem 1.5rem;
    }
    
    .domains,
    .process,
    .results,
    .why-us,
    .contact,
    .who-we-are {
        padding: 5rem 0;
    }
    
    .domains-wrapper,
    .process,
    .why-us-container,
    .contact-container,
    .who-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .who-content-text h2 {
        font-size: 2rem;
    }
    
    .who-content-text p {
        font-size: 1.05rem;
    }
    
    .who-image-placeholder {
        height: 300px;
        font-size: 6rem;
    }
    
    .who-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .who-stat-number {
        font-size: 1.5rem;
    }
    
    .who-stat-label {
        font-size: 0.75rem;
    }
    
    .video-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    .video-header p {
        font-size: 1.05rem;
    }
    
    .video-container {
        padding: 1rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .problems-container,
    .results-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .problems-header h2,
    .results h2 {
        font-size: 2rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .reason h4 {
        font-size: 1.2rem;
    }
    
    .guarantee {
        padding: 2rem 1.5rem;
    }
    
    .guarantee h3 {
        font-size: 1.5rem;
    }
    
    .guarantee p {
        font-size: 1.05rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
