/* ==========================================
   BY ANIM - Style CSS
   Reproduction du design de byanim.fr
   Version: 2.1 - Founders layout update
   ========================================== */

/* Variables CSS */
:root {
    --color-primary: #EA5B0C;
    --color-secondary: #00A8A8;
    --color-dark: #00191a;
    --color-light: #f7f8f9;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-gray-light: #e5e5e5;

    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Barlow', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;

    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 {
    font-size: clamp(32px, 5vw, 46px);
}

h2 {
    font-size: clamp(28px, 4vw, 36px);
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
}

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

.highlight-light {
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #d14f08;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #008f8f;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

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

.btn-white:hover {
    background-color: var(--color-light);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-link {
    color: var(--color-primary);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--color-secondary);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 39px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--color-dark);
}

.nav-list > li > a:hover {
    color: var(--color-primary);
}

/* Dropdown */
.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: var(--transition);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:first-child .dropdown {
    columns: 2;
    min-width: 440px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-light);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.hero-image img {
    border-radius: var(--radius-lg);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    padding: 60px 0;
    background-color: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Visual Side */
.about-visual {
    position: relative;
    padding: 30px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-image-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

/* Founders Showcase - Mise en avant en bas de section */
.founders-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #003333 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.founders-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.founders-image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.founders-image img {
    height: 200px;
    width: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.founders-content {
    position: relative;
    z-index: 1;
}

.founders-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.founders-content h3 {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.founders-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.founders-signature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founders-signature span {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content Side */
.about-content {
    padding-left: 20px;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d14f08 100%);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 1.3;
}

.about-intro {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content .benefits-list {
    margin: 25px 0 30px;
}

.about-content .btn {
    margin-top: 10px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-gray);
    margin-bottom: 15px;
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-gray);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 0;
    background-color: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-light);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* ==========================================
   ANIMATIONS SECTION
   ========================================== */
.animations {
    padding: 100px 0;
}

.animations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.animation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.animation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.animation-card:nth-child(even) {
    direction: rtl;
}

.animation-card:nth-child(even) > * {
    direction: ltr;
}

.animation-image {
    height: 100%;
    min-height: 250px;
}

.animation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animation-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.animation-content h3 {
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.animation-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.animation-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--color-gray);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d14f08 100%);
}

.cta-inner {
    text-align: center;
}

.cta h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-light);
    border-radius: 50%;
    color: var(--color-dark);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

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

.contact-form .btn {
    align-self: flex-start;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

a.footer-contact-item:hover {
    color: var(--color-primary);
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col--animations ul {
    columns: 2;
    column-gap: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .about-grid {
        gap: 60px;
    }

    .about-visual {
        padding: 20px;
    }

    .about-image-accent {
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
    }

    .founders-showcase {
        padding: 40px;
        gap: 35px;
        margin-top: 60px;
    }

    .founders-image img {
        height: 160px;
    }

    .founders-content h3 {
        font-size: 26px;
    }

    .founders-content p {
        font-size: 15px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .animations-grid {
        grid-template-columns: 1fr;
    }

    .animation-card {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-white);
        padding: 30px;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list > li > a {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-gray-light);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .has-dropdown:first-child .dropdown {
        columns: 1;
        min-width: unset;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .btn-nav {
        margin-top: 20px;
        text-align: center;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .animation-card {
        grid-template-columns: 1fr;
    }

    .animation-card:nth-child(even) {
        direction: ltr;
    }

    .animation-image {
        min-height: 200px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col:first-child {
        margin-bottom: 20px;
    }

    .footer-col--animations ul {
        columns: 1;
    }

    .footer-contact {
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
        padding: 15px;
    }

    .about-image-accent {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

    .founders-showcase {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
        margin-top: 50px;
    }

    .founders-image img {
        height: 140px;
    }

    .founders-content h3 {
        font-size: 24px;
    }

    .founders-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content .benefits-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content .btn {
        display: inline-block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .about,
    .services,
    .animations,
    .testimonials,
    .contact,
    .cta {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form .btn {
        width: 100%;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ==========================================
   HERO ADDITIONS
   ========================================== */
.hero-badge {
    display: inline-block;
    background-color: rgba(234, 91, 12, 0.1);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

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

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 25px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

.trust-item svg {
    color: var(--color-secondary);
}

/* ==========================================
   USP BAR
   ========================================== */
.usp-bar {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #008f8f 100%);
    padding: 25px 0;
}

.usp-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
}

.usp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ==========================================
   STATS SECTION ADDITIONS
   ========================================== */
.section-header-light h2 {
    color: var(--color-white);
}

.client-logos {
    text-align: center;
    margin-top: 40px;
}

.client-logos p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ==========================================
   EXPERTISE SECTION
   ========================================== */
.expertise {
    padding: 100px 0;
    background-color: var(--color-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.expertise-icon {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.expertise-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-primary);
}

.expertise-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.expertise-card p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ==========================================
   BENEFITS LIST
   ========================================== */
.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--color-gray);
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.benefits-list li strong {
    color: var(--color-dark);
}

/* ==========================================
   SECTION CTA
   ========================================== */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   SERVICES EXTENDED
   ========================================== */
.services-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-extended-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-extended-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-extended-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-extended-card p {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-extended-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}

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

.faq-question svg {
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ==========================================
   CTA SECTION ADDITIONS
   ========================================== */
.cta-reasons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cta-reason {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
}

.cta-reason svg {
    color: var(--color-white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.guarantee-badge {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 14px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.form-group select {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    background-color: var(--color-white);
    cursor: pointer;
}

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

/* ==========================================
   FOOTER ADDITIONS
   ========================================== */
.footer-bottom p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

/* ==========================================
   RESPONSIVE ADDITIONS
   ========================================== */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-extended {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 20px;
    }

    .usp-grid {
        gap: 30px;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .usp-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-reasons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================
   BLOG POST STYLES
   ========================================== */

/* Breadcrumb */
.blog-breadcrumb {
    padding: 100px 0 20px;
    background: var(--color-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: var(--color-gray-light);
}

.breadcrumb-list a {
    color: var(--color-gray);
}

.breadcrumb-list a:hover {
    color: var(--color-primary);
}

.breadcrumb-list li:last-child {
    color: var(--color-dark);
    font-weight: 500;
}

/* Blog Header */
.blog-header {
    padding: 30px 0 60px;
    background: var(--color-light);
}

/* Blog Header with Image */
.blog-header-with-image {
    padding: 30px 0 50px;
}

.blog-header-with-image .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.blog-header-content {
    order: 1;
}

.blog-header-image {
    order: 2;
}

.blog-header-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    max-height: 400px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date,
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-gray);
}

.blog-date svg,
.blog-reading-time svg {
    opacity: 0.7;
}

.blog-title {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 800px;
}

/* Blog Content Container */
.blog-container {
    max-width: 800px;
}

/* Blog Content */
.blog-content {
    padding: 60px 0;
}

.blog-content section {
    margin-bottom: 50px;
}

.blog-content h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    color: var(--color-dark);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
}

.blog-content h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-secondary);
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-dark);
}

.blog-content ul {
    margin: 25px 0;
    padding-left: 0;
}

.blog-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-content ul li::before {
    content: "▸";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 10px;
    font-size: 1.2em;
}

.blog-content strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* Blog Full Width Image */
.blog-image-full {
    margin: 50px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.blog-image-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.blog-image-full:hover img {
    transform: scale(1.02);
}

.blog-image-full figcaption {
    background: linear-gradient(135deg, var(--color-dark) 0%, #002828 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 25px;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

/* Blog Intro */
.blog-intro {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-gray-light);
}

.blog-intro p {
    color: var(--color-gray);
}

/* Blog Table of Contents */
.blog-toc {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0 40px;
    overflow: hidden;
}

.blog-toc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.blog-toc-toggle:hover {
    background: linear-gradient(135deg, #eef0f1 0%, var(--color-light) 100%);
}

.blog-toc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8c5a 100%);
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.blog-toc-icon svg {
    width: 18px;
    height: 18px;
}

.blog-toc-toggle span:nth-child(2) {
    flex: 1;
    text-align: left;
}

.blog-toc-chevron {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.blog-toc.active .blog-toc-chevron {
    transform: rotate(180deg);
}

.blog-toc-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.blog-toc.active .blog-toc-list {
    max-height: 600px;
}

.blog-toc-list li {
    counter-increment: toc-counter;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-gray-light);
}

.blog-toc-list li::before {
    display: none;
}

.blog-toc-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: var(--color-dark);
    font-size: 15px;
    transition: all 0.2s ease;
}

.blog-toc-list a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--color-light);
    color: var(--color-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
}

.blog-toc-list a:hover {
    background: var(--color-light);
    color: var(--color-primary);
    padding-left: 30px;
}

.blog-toc-list a:hover::before {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Key Points Box */
.key-points {
    background: linear-gradient(135deg, rgba(234, 91, 12, 0.08) 0%, rgba(0, 168, 168, 0.05) 100%);
    padding: 35px;
    margin: 40px 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.key-points::before {
    content: '✓';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    color: var(--color-primary);
    opacity: 0.06;
    font-weight: 700;
}

.key-points h2 {
    font-size: 20px !important;
    color: var(--color-dark);
    margin-top: 0 !important;
    margin-bottom: 20px;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.key-points h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.key-points ul {
    margin: 0;
}

.key-points ul li {
    padding: 12px 0 12px 30px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    margin-bottom: 10px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.08) 0%, rgba(0, 168, 168, 0.03) 100%);
    padding: 30px 35px;
    margin: 35px 0;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 168, 168, 0.1);
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 28px;
    background: var(--color-white);
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
    margin-top: 0 !important;
    color: var(--color-secondary) !important;
    font-size: 18px !important;
    padding-top: 10px;
}

.highlight-box p {
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
    padding: 30px 35px;
    margin: 35px 0;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.12);
}

.tip-box::before {
    content: '🎯';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 28px;
    background: var(--color-white);
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-box strong {
    color: #2e7d32;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    padding-top: 10px;
}

.tip-box p {
    margin-bottom: 0;
    color: #333;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-gray-light);
    font-size: 15px;
}

.comparison-table tr:nth-child(even) {
    background: var(--color-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section in Blog - Accordion Style */
.blog-faq {
    margin-top: 60px;
}

.blog-faq-item {
    background: var(--color-white);
    margin-bottom: 12px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    transition: all 0.3s ease;
    gap: 15px;
}

.blog-faq-question:hover {
    background: linear-gradient(135deg, #f0f1f2 0%, var(--color-light) 100%);
}

.blog-faq-question span {
    flex: 1;
}

.blog-faq-question svg {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.blog-faq-item.active .blog-faq-question svg {
    transform: rotate(180deg);
}

.blog-faq-item.active .blog-faq-question {
    color: var(--color-primary);
}

.blog-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.blog-faq-item.active .blog-faq-answer {
    max-height: 500px;
}

.blog-faq-answer p {
    margin: 0;
    padding: 20px 28px 28px;
    color: var(--color-gray);
    line-height: 1.8;
    border-top: 1px solid var(--color-gray-light);
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, var(--color-dark) 0%, #002828 100%);
    padding: 45px;
    border-radius: var(--radius-lg);
    margin-top: 50px;
    box-shadow: 0 15px 50px rgba(0, 25, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.conclusion h2 {
    margin-top: 0 !important;
    color: var(--color-white) !important;
    border-bottom: none !important;
    padding-bottom: 15px !important;
}

.conclusion p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.conclusion strong {
    color: var(--color-primary) !important;
}

/* Author Box */
.author-box {
    background: var(--color-light);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin: 60px 0 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.author-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    margin: 0 0 5px 0 !important;
    color: var(--color-dark) !important;
    font-size: 22px !important;
}

.author-info .author-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info p {
    margin: 0;
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #003333 100%);
    padding: 80px 0;
    text-align: center;
}

.blog-cta h2 {
    color: var(--color-white);
    margin-bottom: 15px;
    border: none;
    padding-bottom: 0;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-header-with-image .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-header-content {
        order: 2;
    }

    .blog-header-image {
        order: 1;
    }

    .blog-header-image img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .blog-breadcrumb {
        padding: 90px 0 15px;
    }

    .breadcrumb-list {
        font-size: 13px;
    }

    .blog-header {
        padding: 20px 0 40px;
    }

    .blog-header-with-image {
        padding: 20px 0 30px;
    }

    .blog-header-image img {
        max-height: 280px;
    }

    .blog-meta {
        gap: 12px;
    }

    .blog-content {
        padding: 40px 0;
    }

    .blog-content h2 {
        margin-top: 40px;
    }

    .key-points,
    .highlight-box,
    .tip-box {
        padding: 20px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .faq-item {
        padding: 20px;
    }

    .conclusion {
        padding: 25px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .author-info p {
        text-align: center;
    }

    .blog-cta {
        padding: 60px 0;
    }

    .blog-cta p {
        font-size: 16px;
    }
}

/* ==========================================
   GAME SELECTOR TOOL - Interactive widget
   ========================================== */

.game-selector-tool {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 40px rgba(234, 91, 12, 0.15);
    border: 2px solid var(--color-primary);
}

.game-selector-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff7b3a 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.game-selector-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.game-selector-badge svg {
    flex-shrink: 0;
}

.game-selector-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
}

.game-selector-header p {
    opacity: 0.9;
    font-size: 16px;
    margin: 0;
}

.game-selector-form {
    padding: 30px;
}

.game-selector-step {
    display: none;
}

.game-selector-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.game-selector-step.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.step-indicator {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.game-selector-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.game-selector-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.game-option {
    cursor: pointer;
}

.game-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: white;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
    min-height: 100px;
}

.option-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 91, 12, 0.2);
}

.game-option input:checked + .option-card {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(234, 91, 12, 0.08) 0%, rgba(234, 91, 12, 0.03) 100%);
    box-shadow: 0 4px 15px rgba(234, 91, 12, 0.2);
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(234, 91, 12, 0.1) 0%, rgba(0, 168, 168, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
    transition: var(--transition);
}

.game-option input:checked + .option-card .option-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff7b3a 100%);
    color: white;
}

.option-card:hover .option-icon {
    transform: scale(1.05);
}

.option-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

.game-selector-nav {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.game-selector-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.game-selector-btn svg {
    flex-shrink: 0;
}

.next-btn, .submit-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff7b3a 100%);
    color: white;
    margin-left: auto;
}

.next-btn:hover, .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 91, 12, 0.4);
}

.prev-btn {
    background: transparent;
    color: var(--color-gray);
    border: 2px solid var(--color-gray-light);
}

.prev-btn:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.reset-btn {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    margin-top: 20px;
    width: 100%;
}

.reset-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* Results */
.game-selector-results {
    padding: 30px;
}

.results-header {
    text-align: center;
    margin-bottom: 24px;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00c5c5 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.results-badge svg {
    flex-shrink: 0;
}

.results-header h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-dark);
}

.results-summary {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.1) 0%, rgba(0, 168, 168, 0.05) 100%);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.results-summary p {
    margin: 0;
    color: var(--color-secondary);
}

.results-games {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.result-game-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--color-primary);
}

.result-game-card .game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(234, 91, 12, 0.1) 0%, rgba(0, 168, 168, 0.1) 100%);
    border-radius: 12px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.result-game-card .game-info {
    display: flex;
    flex-direction: column;
}

.result-game-card .game-info strong {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.result-game-card .game-info span {
    font-size: 13px;
    color: var(--color-gray);
}

.results-tips {
    background: linear-gradient(135deg, rgba(234, 91, 12, 0.08) 0%, rgba(234, 91, 12, 0.03) 100%);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.results-tips h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.results-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-tips li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-gray);
    font-size: 14px;
}

.results-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.results-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #003030 100%);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.results-cta p {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.results-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff7b3a 100%);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.results-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 91, 12, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .game-selector-header {
        padding: 24px 20px;
    }

    .game-selector-header h3 {
        font-size: 22px;
    }

    .game-selector-form {
        padding: 20px;
    }

    .game-selector-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-card {
        padding: 16px 12px;
        min-height: 90px;
    }

    .option-emoji {
        font-size: 28px;
    }

    .game-selector-nav {
        flex-direction: column;
    }

    .game-selector-btn {
        width: 100%;
        text-align: center;
    }

    .prev-btn {
        order: 2;
    }

    .game-selector-results {
        padding: 20px;
    }

    .result-game-card {
        padding: 14px;
    }

    .result-game-card .game-icon {
        width: 40px;
        height: 40px;
    }

    .option-icon {
        width: 48px;
        height: 48px;
    }
}

/* ==========================================
   DIY GUIDE - Additional Styles
   ========================================== */

/* Schema/Diagram Figures */
.schema-figure {
    margin: 35px 0;
    text-align: center;
}

.schema-svg {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    background: #f8f9fa;
}

.schema-figure figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-gray);
    font-style: italic;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 35px 0;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.12);
}

.warning-box::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 28px;
    background: var(--color-white);
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.warning-box strong {
    display: block;
    color: #e65100;
    margin-bottom: 10px;
    font-size: 17px;
    padding-top: 8px;
}

.warning-box p {
    margin: 0;
    color: #5d4037;
    line-height: 1.7;
}

/* Danger Box */
.danger-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 35px 0;
    position: relative;
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.12);
}

.danger-box::before {
    content: '🚨';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 28px;
    background: var(--color-white);
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.danger-box strong {
    display: block;
    color: #c62828;
    margin-bottom: 10px;
    font-size: 17px;
    padding-top: 8px;
}

.danger-box p {
    margin: 0;
    color: #5d4037;
    line-height: 1.7;
}

/* Checklist Box */
.checklist-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.12);
}

.checklist-box h4 {
    color: #2e7d32;
    margin: 0 0 18px 0;
    font-size: 18px;
    font-family: var(--font-heading);
}

.checklist-box ul {
    margin: 0;
    padding-left: 0;
}

.checklist-box ul li {
    position: relative;
    padding: 10px 0 10px 30px;
    margin-bottom: 5px;
    color: #1b5e20;
    line-height: 1.5;
}

.checklist-box ul li::before {
    content: '☐';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 18px;
}

/* Steps List (numbered) */
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 15px 0 15px 55px;
    margin-bottom: 15px;
    line-height: 1.7;
    background: var(--color-light);
    border-radius: var(--radius);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), #ff7c3a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
}

/* Ordered List in blog content - override default */
.blog-content ol {
    counter-reset: ol-counter;
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.blog-content ol li {
    counter-increment: ol-counter;
    position: relative;
    padding: 12px 0 12px 45px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-content ol li::before {
    content: counter(ol-counter) ".";
    position: absolute;
    left: 10px;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Table wrapper for horizontal scroll on mobile */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.comparison-table-wrapper .comparison-table {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    min-width: 500px;
}

/* Conclusion box link styling */
.conclusion a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.conclusion a:hover {
    color: #ff8c5a;
}

/* Highlight box inside conclusion */
.conclusion .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    margin-top: 25px;
}

.conclusion .highlight-box::before {
    display: none;
}

.conclusion .highlight-box h3 {
    color: var(--color-white) !important;
    margin-bottom: 12px;
    padding-top: 0;
}

.conclusion .highlight-box p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.conclusion .highlight-box a {
    color: var(--color-primary);
}

/* Responsive for DIY Guide */
@media (max-width: 768px) {
    .schema-svg {
        max-height: 280px;
    }

    .steps-list li {
        padding-left: 50px;
    }

    .steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 12px;
        left: 10px;
    }

    .warning-box,
    .danger-box,
    .checklist-box {
        padding: 20px;
    }

    .warning-box::before,
    .danger-box::before {
        font-size: 24px;
        top: -12px;
        left: 20px;
    }
}

/* ==========================================
   BLOG HUB CARDS
   ========================================== */
.blog-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.blog-hub-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-hub-card-header {
    background-color: var(--color-secondary);
    padding: 24px 24px 20px;
    position: relative;
}

.blog-hub-card:nth-child(2) .blog-hub-card-header {
    background-color: var(--color-primary);
}

.blog-hub-card:nth-child(3) .blog-hub-card-header {
    background-color: #2d6a4f;
}

.blog-hub-card:nth-child(4) .blog-hub-card-header {
    background-color: #7b2cbf;
}

.blog-hub-card:nth-child(5) .blog-hub-card-header {
    background-color: #1d3557;
}

.blog-hub-card:nth-child(6) .blog-hub-card-header {
    background-color: #e76f51;
}

.blog-hub-card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.blog-hub-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

.blog-hub-card-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.blog-hub-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-hub-card-body p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
}

.blog-hub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-hub-card:nth-child(2) .blog-hub-card-link {
    color: var(--color-primary);
}

.blog-hub-card:nth-child(3) .blog-hub-card-link {
    color: #2d6a4f;
}

.blog-hub-card:nth-child(4) .blog-hub-card-link {
    color: #7b2cbf;
}

.blog-hub-card:nth-child(5) .blog-hub-card-link {
    color: #1d3557;
}

.blog-hub-card:nth-child(6) .blog-hub-card-link {
    color: #e76f51;
}

.blog-hub-card-link:hover {
    gap: 10px;
}

.blog-hub-card-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

@media (max-width: 1024px) {
    .blog-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-hub-grid {
        grid-template-columns: 1fr;
    }
}
