:root {
    --blue-ink: #060C1F;
    --blue-royal: #183C89;
    --blue-powder: #8BB5FF;
    --sahara-gold: #E4B355;
    --desert-rose: #F7D4BC;
    --linen: #FBF7EC;
    --night: #03060E;
    --text-muted: #3C475C;
}

.wholesale-section {
    background: linear-gradient(180deg, #fefefe, #f6f4ff 60%);
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.wholesale-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.wholesale-header h2 {
    margin-bottom: 0.8rem;
}

.wholesale-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: min(360px, 90vw);
    background: linear-gradient(140deg, #061638, #123b82);
    color: #f6fbff;
    border-radius: 2rem;
    padding: 2rem 2.25rem;
    box-shadow: 0 35px 80px rgba(3, 9, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: 60;
}

.wholesale-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.popup-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.popup-close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.wholesale-popup h3 {
    color: #fff;
    margin: 0.5rem 0;
}

.wholesale-popup p {
    margin: 0;
    color: rgba(246, 251, 255, 0.85);
    line-height: 1.6;
}

.wholesale-strip {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
    justify-content: center;
}

.wholesale-card {
    background: #fff;
    border-radius: 1.8rem;
    padding: 2.2rem;
    box-shadow: 0 18px 55px rgba(8, 20, 48, 0.08);
    border: 1px solid rgba(15, 35, 82, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    flex: 1 1 240px;
    max-width: 360px;
}

.wholesale-card::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(228, 179, 85, 0.14);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.wholesale-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(7, 18, 46, 0.15);
}

.wholesale-card:hover::after {
    opacity: 1;
}

.wholesale-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--blue-ink);
}

.wholesale-card p {
    margin: 0;
    line-height: 1.65;
}

.wholesale-card--accent {
    background: linear-gradient(140deg, #0b1f4d, #1c3b82);
    color: #f7fbff;
    border: none;
    box-shadow: 0 35px 75px rgba(2, 7, 20, 0.35);
}

.wholesale-card--accent::after {
    border-color: rgba(255, 255, 255, 0.18);
}

.wholesale-card--accent h3 {
    color: #fff;
}

.wholesale-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue-royal);
    background: rgba(24, 60, 137, 0.08);
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.wholesale-card--accent .wholesale-chip {
    color: #f7fbff;
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 680px) {
    .wholesale-strip {
        flex-direction: column;
    }

    .wholesale-card {
        max-width: 100%;
    }

    .wholesale-popup {
        position: static;
        margin-bottom: 1.5rem;
        width: 100%;
        transform: translate(0, 0);
        opacity: 1;
        pointer-events: auto;
    }

    .popup-close {
        top: 0.6rem;
        right: 0.6rem;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-muted);
    background: var(--linen);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: linear-gradient(120deg, #fffaf2, #f2f5ff 55%, #cfe2ff);
    border-bottom: 1px solid rgba(24, 60, 137, 0.18);
    box-shadow: 0 10px 25px rgba(6, 12, 31, 0.08);
}

.nav__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--blue-ink);
}

.brand img {
    height: 60px;
    width: auto;
}

.brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

.nav__links {
    display: flex;
    gap: 1.5rem;
    color: var(--blue-royal);
    font-size: 0.95rem;
}

.nav__links a {
    position: relative;
    padding-bottom: 0.25rem;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--sahara-gold);
    transition: width 0.3s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--blue-royal);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 90px;
    background-image:
        linear-gradient(125deg, rgba(3, 6, 14, 0.92), rgba(24, 60, 137, 0.85)),
        url('../img/img15.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f4f6ff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 181, 255, 0.3), transparent 55%);
    pointer-events: none;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
    text-align: center;
    padding: 4rem 0 5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--sahara-gold);
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--blue-ink);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.05;
    margin: 1rem 0 1.5rem;
    color: #fff;
}

.hero h1 a {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 3px;
    text-underline-offset: 0.4rem;
    transition: text-decoration-color 0.3s ease;
}

.hero h1 a:hover {
    text-decoration-color: var(--sahara-gold);
}

.hero__text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Promo Popup */
.promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(3, 9, 24, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.promo-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.promo-popup__dialog {
    background: #071433;
    border-radius: 2rem;
    padding: 2rem;
    width: min(90vw, 420px);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: left;
    color: #f3f5ff;
}

.promo-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #f3f5ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.promo-popup__eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sahara-gold);
    margin-bottom: 1rem;
}

.promo-popup__image {
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.promo-popup__image img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-popup__dialog h3 {
    margin-bottom: 0.75rem;
    color: #fff;
}

.promo-popup__dialog p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-popup__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-weight: 600;
    background: #1ebe5d;
    color: #041321;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-popup__cta i {
    font-size: 1.1rem;
}

.promo-popup__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 190, 93, 0.35);
}

.btn {
    border-radius: 999px;
    padding: 0.95rem 2.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:focus-visible {
    outline: 2px dashed rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--sahara-gold), #f6d673);
    color: var(--blue-ink);
    box-shadow: 0 20px 40px rgba(16, 20, 47, 0.35);
}

.btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 1.25rem;
    background: rgba(3, 10, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.75rem;
    padding: 2.4rem 3rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(3, 6, 14, 0.45);
    width: min(900px, 100%);
}

.hero__stat {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.hero__stat strong {
    display: block;
    font-size: 2.3rem;
    color: var(--blue-powder);
}

@media (max-width: 700px) {
    .hero__stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        padding: 2.2rem;
    }
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-top: 0.5rem;
}

.grid {
    display: grid;
    gap: 1.8rem;
}

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.manufacturer-section {
    background: linear-gradient(135deg, #faf4e4 0%, #fdf2e1 25%, #f1f7ff 60%, #e4ecff 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.manufacturer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.manufacturer-header h2 {
    margin-bottom: 0.85rem;
}

.manufacturer-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.manufacturer-content {
    background: linear-gradient(180deg, #fffdf7, rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(24, 60, 137, 0.08);
    border-radius: 2.5rem;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    box-shadow: 0 25px 65px rgba(6, 12, 31, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.manufacturer-lead {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.manufacturer-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.accordion-card {
    padding: 0;
    overflow: hidden;
    border-radius: 1.35rem;
    box-shadow: 0 18px 45px rgba(6, 12, 31, 0.12);
}

.accordion-card.accent-pane {
    background: linear-gradient(145deg, #0b1634, #152d63);
}

.accordion-toggle {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.65rem 2.2rem;
    cursor: pointer;
    color: inherit;
    font-family: 'Cormorant Garamond', serif;
}

.accordion-toggle i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--sahara-gold);
}

.accordion-card.is-open .accordion-toggle i {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 2.2rem;
}

.accordion-card.is-open .accordion-body {
    padding-bottom: 1.5rem;
}

.accordion-card.is-open .accordion-body p {
    margin-top: 1rem;
}

.accordion-card.is-open .accordion-body {
    max-height: 500px;
}

.manufacturer-visual {
    display: flex;
    justify-content: center;
    align-self: flex-start;
}

.manufacturer-photo {
    position: relative;
    width: min(480px, 90vw);
    height: min(480px, 90vw);
    border-radius: 2.3rem;
    overflow: hidden;
    box-shadow: 0 45px 85px rgba(6, 12, 31, 0.35);
    flex-shrink: 0;
}

.manufacturer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manufacturer-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(3, 10, 28, 0.7);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.reveal-zoom {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-zoom.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-rise {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-rise.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .manufacturer-photo {
        width: 100%;
        height: auto;
    }

    .manufacturer-content {
        text-align: center;
    }
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.content-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 25px 60px rgba(6, 12, 31, 0.08);
    border: 1px solid rgba(24, 60, 137, 0.08);
}

.content-card h3 {
    margin-top: 0;
    color: var(--blue-royal);
    font-size: 1.4rem;
}

.content-card p {
    margin-bottom: 0;
}

.content-card em {
    font-style: normal;
    color: var(--sahara-gold);
}

.accent-pane {
    background: linear-gradient(145deg, #0f1f40, #112b63);
    color: #f6f7ff;
}

.accent-pane h3 {
    color: #fff;
}

.reasons {
    background: linear-gradient(130deg, #fff5ec 0%, #f7f3ff 55%, #e6edff 100%);
    border-top: 1px solid rgba(6, 12, 31, 0.05);
    position: relative;
    overflow: hidden;
}

.reasons::before,
.reasons::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.reasons::before {
    background: radial-gradient(circle at 20% 10%, rgba(228, 179, 85, 0.2), transparent 55%);
    opacity: 0.7;
}

.reasons::after {
    background: radial-gradient(circle at 90% 0%, rgba(139, 181, 255, 0.22), transparent 65%);
}

.reasons-journey {
    --journey-offset: clamp(1.6rem, 5.5vw, 4.6rem);
    --badge-size: 52px;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    padding-left: calc(var(--journey-offset) + var(--badge-size) + 16px);
}

.journey-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--journey-offset) + (var(--badge-size) / 2) - 2px);
    width: 4px;
    background: linear-gradient(180deg, rgba(24, 60, 137, 0.05), rgba(228, 179, 85, 0.5));
    border-radius: 999px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.9s ease, opacity 0.6s ease;
    z-index: 0;
}

.journey-line.is-visible {
    transform: scaleY(1);
    opacity: 1;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-badge {
    width: var(--badge-size);
    height: var(--badge-size);
    border-radius: 999px;
    background: linear-gradient(145deg, #183c89, #0b1f4d);
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 25px rgba(6, 12, 31, 0.2);
    z-index: 2;
}

.step-content {
    background: #fffdf7;
    border-radius: 1.6rem;
    padding: 1.75rem;
    border: 1px solid rgba(24, 60, 137, 0.1);
    box-shadow: 0 20px 45px rgba(6, 12, 31, 0.08);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin: 0 0 0.7rem;
    color: var(--blue-ink);
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
}

@media (min-width: 900px) {
    .journey-step {
        grid-template-columns: 120px 1fr;
    }

    .journey-line {
        left: 58px;
    }
}

.keywords {
    position: relative;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, #fefaf4 0%, #f6f0ff 55%, #fffdf7 100%);
    overflow: hidden;
}

.keywords::before,
.keywords::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.keywords::before {
    background: radial-gradient(circle at 15% 20%, rgba(228, 179, 85, 0.3), transparent 55%);
}

.keywords::after {
    background: radial-gradient(circle at 85% 10%, rgba(24, 60, 137, 0.22), transparent 60%);
}

.keywords__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.keywords__chips span {
    border: 1px solid rgba(24, 60, 137, 0.12);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.92rem;
    color: var(--blue-ink);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(5, 10, 25, 0.08);
}

.about {
    background: var(--linen);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about__card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(24, 60, 137, 0.12);
    box-shadow: 0 20px 45px rgba(3, 6, 14, 0.08);
}

.contact-cta {
    background: linear-gradient(130deg, var(--blue-royal), #0F1D38);
    color: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem;
}

.contact-cta h3 {
    color: #fff;
    font-size: 2.1rem;
    margin: 0 0 1rem;
}

.contact-cta .details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.contact-cta .details span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

footer {
    background: var(--blue-ink);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
}

footer .max-w-7xl {
    max-width: 80rem;
}

footer .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

footer .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    footer .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    footer .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

footer .grid {
    display: grid;
}

footer .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    footer .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    footer .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

footer .gap-12 {
    gap: 3rem;
}


footer .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

footer .text-white {
    color: #fff;
}

footer .h-24 {
    height: 6rem;
}

footer .mb-6 {
    margin-bottom: 1.5rem;
}

footer .text-xl {
    font-size: 1.25rem;
}

footer .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

footer .font-bold {
    font-weight: 700;
}

footer .text-lg {
    font-size: 1.125rem;
}

footer .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

footer .leading-relaxed {
    line-height: 1.625;
}

footer .opacity-90 {
    opacity: 0.9;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    align-items: center;
    justify-items: stretch;
}

footer .footer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(244, 246, 255, 0.8);
}

footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

footer .footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

footer .footer-brand-text {
    display: flex;
    flex-direction: column;
}

footer .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f4f6ff;
    line-height: 1.2;
}

footer .footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(60, 71, 92, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

footer .footer-social-icon:hover {
    background: rgba(60, 71, 92, 1);
    transform: translateY(-2px);
}

footer .footer-logo-wrapper {
    background: #e8e8e8;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .footer-logo-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

footer .footer-logo {
    width: 100%;
    height: auto;
    max-width: 110px;
    max-height: 46px;
    object-fit: contain;
    justify-self: center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

footer .footer-logo:hover {
    transform: none;
}

footer .footer-grid-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    footer .footer-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    footer .footer-grid-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

footer .space-y-6 > * + * {
    margin-top: 1.5rem;
}

footer .space-y-4 > * + * {
    margin-top: 1rem;
}

footer img {
    max-width: 100%;
    height: auto;
}

footer .flex {
    display: flex;
    gap: 1rem;
}

footer .gap-3 {
    gap: 0.75rem;
}

footer .items-center {
    align-items: center;
}

footer .items-start {
    align-items: flex-start;
}

footer .justify-center {
    justify-content: center;
}

footer .flex.space-x-4 {
    gap: 1rem;
}

footer .rounded-full {
    border-radius: 9999px;
}

footer .bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

footer .transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

footer .w-10 {
    width: 2.5rem;
}

footer .h-10 {
    height: 2.5rem;
}

footer .mt-1 {
    margin-top: 0.25rem;
}

footer .border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

footer .border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

footer .mt-16 {
    margin-top: 4rem;
}

footer .pt-8 {
    padding-top: 2rem;
}

footer .text-center {
    text-align: center;
}

footer .opacity-60 {
    opacity: 0.6;
}

footer .break-words {
    overflow-wrap: break-word;
    word-break: break-word;
}

footer .footer-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(70px, 1fr));
    gap: 1.25rem 2rem;
    align-items: center;
}

@media (max-width: 640px) {
    footer .footer-logo-grid {
        grid-template-columns: repeat(2, minmax(70px, 1fr));
        gap: 1rem 1.25rem;
    }
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer a {
    text-decoration: none;
}

@media (max-width: 900px) {
    footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(3, 6, 14, 0.95);
        padding: 1rem 2rem 2rem;
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav__links.is-open {
        transform: scaleY(1);
    }

    .nav__menu-btn {
        display: block;
    }
}

@media (max-width: 600px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #2EC4B6;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    background: #26a69a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
