*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D32F2F;
    --primary-hover: #C62828;
    --primary-light: #FFEBEE;
    --gradient-start: #1a1a2e;
    --gradient-end: #16213e;
    --accent-gradient: linear-gradient(135deg, #D32F2F, #FF6659);
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --section-alt: #f8f9fa;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-svg {
        animation: none !important;
    }

    .marquee-track {
        animation: none !important;
    }
}

/* ===== 1. Sticky Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .accent {
    color: #FF6659;
}

.navbar.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--accent-gradient);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    color: #fff !important;
}

/* Hamburger (CSS checkbox hack) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle-label span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar.scrolled .nav-toggle-label span {
    background: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: var(--text-primary) !important;
        font-size: 1.0625rem;
    }

    .nav-toggle:checked~.nav-links {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ===== 2. Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: clamp(120px, 15vw, 160px) 0 clamp(80px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15), transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat .label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 580px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-svg {
        max-width: 400px;
    }
}

/* ===== Partnership Banner ===== */
.partnership {
    padding: 64px 0;
    background: var(--section-alt);
    border-bottom: 1px solid var(--border);
}

.partnership-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.partnership-logo-wrap {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-logo-wrap img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
}

.partnership-connector {
    flex-shrink: 0;
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-connector svg {
    width: 22px;
    height: 22px;
}

.partnership-label {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 480px) {
    .partnership-inner {
        gap: 24px;
    }

    .partnership-logo-wrap {
        width: 110px;
    }

    .partnership-logo-wrap img {
        max-height: 40px;
    }

    .partnership-connector {
        width: 36px;
        height: 36px;
    }

    .partnership-connector svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== 3. Logo / Trust Bar ===== */
.trust-bar {
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trust-bar p {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 24px;
}

.marquee {
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    gap: 72px;
    align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-track .logo-item {
    flex-shrink: 0;
    height: 32px;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.marquee-track .logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.marquee-track .logo-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== 4. Feature Cards ===== */
.features {
    padding: 96px 0;
    background: var(--section-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 5. Detailed Features ===== */
.detailed-features {
    padding: 96px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-row-content {
    order: 2;
}

.feature-row.reverse .feature-row-visual {
    order: 1;
}

.feature-row-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-row-visual svg {
    width: 100%;
    max-width: 320px;
}

.feature-row-content h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-row-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row.reverse .feature-row-content,
    .feature-row.reverse .feature-row-visual {
        order: unset;
    }

    .feature-row-visual svg {
        max-width: 240px;
    }
}

/* ===== 6. E-commerce Section ===== */
.ecommerce {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ecommerce-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.ecommerce-content>p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.ecommerce-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ecommerce-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.ecommerce-features li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: #FF6659;
    fill: none;
    stroke-width: 2;
}

.ecommerce-visual {
    display: flex;
    justify-content: center;
    padding: 25px 10px;
    background-color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-radius: 32px;
}

.ecommerce-visual img {
    width: 100%;
    max-width: 380px;


}

@media (max-width: 992px) {
    .ecommerce-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ecommerce-features {
        align-items: center;
    }

    .ecommerce-visual {
        order: -1;
    }
}

/* ===== 7. Pricing ===== */
.pricing {
    padding: 96px 0;
    background: var(--section-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-top: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0 4px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card .price-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2.5;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-btn:hover {
    background: var(--primary);
    color: #fff;
}

.pricing-card.popular .pricing-btn {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
}

.pricing-card.popular .pricing-btn:hover {
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 32px;
}

/* ===== 8. References ===== */
.references {
    padding: 96px 0;
    overflow: hidden;
}

.ref-marquee {
    overflow: hidden;
    position: relative;
}

.ref-marquee::before,
.ref-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.ref-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.ref-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.ref-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: refScroll 35s linear infinite;
    width: max-content;
}

.ref-logo {
    flex-shrink: 0;
    background: var(--section-alt);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.ref-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.ref-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@keyframes refScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== 9. FAQ Accordion ===== */
.faq {
    padding: 96px 0;
    background: var(--section-alt);
}

.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--card-bg);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: var(--primary-light);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* ===== 10. Contact ===== */
.contact {
    padding: 96px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-group label small {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid var(--border);
    background: var(--section-alt);
    border-radius: 8px 8px 0 0;
    outline: none;
    transition: border-color 0.2s;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-error {
    display: none;
    margin-top: 6px;
    color: #dc3545;
    font-size: 0.8125rem;
}

.form-response {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-response.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.form-response.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.form-submit {
    background: var(--accent-gradient);
    color: #fff;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: center;
    font-family: var(--font);
}

.form-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
}

.form-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== 11. Footer ===== */
.footer {
    background: var(--gradient-start);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand h4 .accent {
    color: #FF6659;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}