:root {
  /* ── Austin Acoustics Brand Colors ── */
  --color-primary:       #2F1105;   /* dark espresso — nav, footer, buttons */
  --color-secondary:     #B55C2A;   /* terracotta — badges, social icons, accents */
  --color-accent:        #D4A878;   /* sandy tan — highlights, hover tints */
  --color-soft:          #EBDDD0;   /* blush beige — borders, light cards */
  --color-bg-soft:       #F5EFE8;   /* warm cream — section backgrounds */
  --color-white:         #FFFFFF;   /* pure white */

  /* ── Derived utilities ── */
  --color-primary-dark:  #1d0a03;                    /* deeper press state */
  --color-primary-alpha: rgba(47, 17, 5, 0.13);      /* about-why section tint */
  --color-primary-muted: rgba(47, 17, 5, 0.20);      /* inactive dots */
  --color-primary-hero:  rgba(47, 17, 5, 0.95);      /* hero gradient stop */
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Bebas Neue", serif;
}


/* NAV */
.navbar {
    z-index: 1050;
    overflow: visible;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 400;
    font-size: 18px;
    padding: 2px 0;
    padding-left: 15px !important;
    padding-right: 16px !important;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    background-color: var(--color-primary);
    transform: translateY(2px);
}

.navbar-inner .nav-link:hover {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
    transform: translateY(2px);
}

.nav-link.active {
    background-color: var(--color-primary);
}

.nav-icons i {
    color: var(--color-white);
    font-size: 23px;
    margin-left: 22px;
    cursor: pointer;
}

.nav-offcanvas {
    width: 320px;
    z-index: 9999;
    background: var(--color-primary);
}

.offcanvas-header {
    padding: 20px 24px;
}

.nav-offcanvas-header i {
    font-size: 18px;
    cursor: pointer;
}

.nav-offcanvas .nav-link {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white) !important;
    padding-left: 0;
}

.navbar-toggler,
.btn-close {
    box-shadow: none !important;
}

.nav-right-icons i{
    transition: all ease 0.35s;
}
.nav-right-icons i:hover{
    color: #c5c0c0;
}

/* Inner Pages Hero */
/* BASE NAVBAR */
.navbar-inner {
    padding: 18px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    overflow: visible;

    background: linear-gradient(
        180deg,
        rgba(47,17,5,0.85) 0%,
        rgba(47,17,5,0.75) 60%,
        rgba(47,17,5,0.6) 100%
    );

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.navbar-inner.scrolled {
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        #3a1406 70%,
        var(--color-primary-dark) 100%
    );

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.navbar-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,168,120,0.5),
        transparent
    );
}

.inner-hero {
    position: relative;
    min-height: 250px;
    background-size: cover;
    background-position: 80% 75%;
    display: flex;
    align-items: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.inner-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

.inner-hero .breadcrumb {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.inner-hero .breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
}

.inner-hero .breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .navbar {
        background: transparent;
    }
    .navbar-inner {
        background: var(--color-primary);
    }

    .offcanvas {
        width: 280px;
    }

    .offcanvas .nav-link {
        font-size: 18px;
    }
    .navbar-brand img{
        height: 30px;
    }

    .fa-magnifying-glass {
        display: none;
    }
    .inner-hero {
       min-height: 150px;
   }

   .inner-hero h1 {
       font-size: 28px;
   }
}

/* HERO CONTENT */

.hero-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80% 65%;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 6%);
    z-index: 1;
}

/* ── New: image stretcher ── */
.hero-spacer {
    display: block;
    width: 100%;
    height: 100vh;          
}

/* ── Text overlay wrapper — covers full hero ── */
.hero-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* background: linear-gradient(360deg, var(--color-primary-hero) 0%, rgba(47, 17, 5, 0) 38.47%); */
}

/* ── Sticky content  ── */
.hero-content {
    position: sticky;
    bottom: 3rem;
    top: 4rem;
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 1rem;
    padding-top: 0;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
}

.hero-text {
    font-size: 20px;
    margin: 15px 0 25px;
    font-weight: 400;
}

.hero-btn {
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 0;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 19px;
    transition: all ease 0.35s;
}

.hero-btn:hover {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

/* Section Background */
.speaker-section {
    background: var(--color-white);
    padding: 90px 0 70px 0;
}

.speaker-card {
    background: var(--color-bg-soft);
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.speaker-card:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.card-top-title {
    font-family: "Bebas Neue", serif;
    font-weight: 700;
    font-size: 25px;
    color: #000;
    padding-bottom: 40px;
    margin: 0;
}

.speaker-img {
    max-width: 427px;
    height: auto;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.08);
}

.rating {
    color: #FFC700;
    font-size: 27px;
    display: inline-block;
    padding: 4px 12px;
}

.speaker-name {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 25px;
    text-align: center;
    color: #000;
    margin: 0;
}

.price {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--color-primary);
}

.cut-price {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 17px;
    text-decoration: line-through;
    color: #353535;
}

.speaker-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.speaker-specs span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-soft);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.03em;
}

.speaker-cta-wrap {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-cta-link {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    border-bottom: 1.5px solid var(--color-primary);
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.speaker-card:hover .speaker-cta-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}



/* X-Ray Section */
.xray-section {
    background: var(--color-white);
    overflow: hidden;
}

.xray-inner {
    display: flex;
    align-items: center;
    min-height: 680px;
}

.xray-content-col {
    width: 42%;
    flex-shrink: 0;
    padding: 80px 60px 80px 8%;
}

.xray-image-col {
    flex: 1; 
    position: sticky;
    top: 100px;
    height: 500px;
}

#xray-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xray-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.xray-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.xray-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.0;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.xray-subtext {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #777;
    line-height: 1.7;
    margin: 0 0 48px;
    max-width: 380px;
}

.xray-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.xray-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.xray-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    border: 1.5px solid var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.xray-feature-icon i {
    font-size: 16px;
    color: var(--color-secondary);
}

.xray-feature-item:hover .xray-feature-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.xray-feature-item:hover .xray-feature-icon i {
    color: var(--color-white);
}

.xray-feature-body h4 {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 5px;
    line-height: 1.3;
}

.xray-feature-body p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* @media (max-width: 991px) {
    .xray-inner {
        flex-direction: column;
        min-height: auto;
    }

    .xray-content-col {
        width: 100%;
        padding: 60px 32px 40px;
    }

    .xray-image-col {
        width: 100%;
        min-height: 340px;
    }

    .xray-subtext {
        max-width: 100%;
    }
}

@media (max-width: 425px) {
    .xray-content-col {
        padding: 50px 20px 36px;
    }

    .xray-title {
        font-size: 36px;
    }

    .xray-image-col {
        min-height: 260px;
    }
} */

/* ── FEATURES SECTION ── */
.features-slider-section {
    padding: 90px 0 60px 0;
    overflow: hidden;
    position: relative;
}

.features-slider-section > * {
    position: relative;
    z-index: 1;
}

/* Card */
.features-owl-slider .feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 580px;
    cursor: pointer;
}

.features-owl-slider .feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.features-owl-slider .feature-card:hover img {
    transform: scale(1.04);
}

.features-owl-slider .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0)    40%,
        rgba(47, 17, 5, 0.75) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.features-owl-slider .badge-glass {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 9px 20px;
    border-radius: 40px;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    background: rgba(255, 255, 255, 0.28);
    border: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.features-owl-slider .card-content {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 10;
    text-align: center;
    padding: 0 8px 4px;
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.6;
    border-radius: 0;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: none;
    border: none;

    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.features-owl-slider.owl-carousel .owl-item {
    padding: 0 !important;
}
.features-owl-slider.owl-carousel .owl-stage {
    display: flex;
}
.features-owl-slider.owl-carousel .owl-stage-outer {
    padding: 0 !important;
}
.features-owl-slider.owl-carousel {
    margin: 0;
}

/* Dots */
.features-owl-slider.owl-carousel .owl-dots {
    margin-top: 24px;
    text-align: center;
}

.features-owl-slider.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary-muted);
    transition: all 0.35s ease;
    margin: 4px 5px;
    display: block;
}

.features-owl-slider.owl-carousel .owl-dot.active span {
    width: 28px;
    border-radius: 4px;
    background: var(--color-primary);
}


/* Responsive */
@media (max-width: 768px) {
    .features-slider-section { padding: 60px 0 40px 0; }
    .features-owl-slider .feature-card { height: 420px; }
}

@media (max-width: 425px) {
    .features-owl-slider .feature-card { height: 370px; }
}


.unicorn-section {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.unicorn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.unicorn-content {
    position: relative;
    z-index: 2;
}

.unicorn-title {
    font-family: "Bebas Neue", serif;
    font-size: 60px;
    font-weight: 700;
}

.unicorn-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 15px;
}


@media (max-width: 992px) {
    .unicorn-section {
        height: 500px;
    }

    .unicorn-title {
        font-size: 32px;
    }

    .unicorn-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 425px) {

.unicorn-title {
        font-size: 22px;
        margin-top: 9px;
    }

    .unicorn-subtitle {
        font-size: 16px;
    }
    .unicorn-section {
        height: 239px;
    }
    .warranty-section {
        padding: 9px 26px;
    }

    .warranty-section {
        padding: 18px 20px!important;
    }
    .warranty-title {
        font-size: 17px!important;
        letter-spacing: 1px!important;
    }
    .warranty-title sup {
        font-size: 12px!important;
        top: -11px!important;
        position: relative;
    }

}

.warranty-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.warranty-section > * {
    position: relative;
    z-index: 1;
}

.warranty-badge {
    max-width: 500px;
    width: 100%;
}

.warranty-title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 20px;
}

.warranty-title sup {
    font-size: 14px;
    top: -10px;
    position: relative;
}

.warranty-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .warranty-section {
        padding: 70px 20px;
    }

    .warranty-title {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .warranty-text {
        font-size: 14px;
    }
}

/* footer start */

.main-footer {
    background: var(--color-primary);
    padding: 90px 0 0;
    color: var(--color-white);
}

.footer-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 70px;
}

.footer-brand-col {
    flex-shrink: 0;
    width: 260px;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 14px;
    display: block;
}

.footer-tagline {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 14px;
}

.footer-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-white);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-nav-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
}

.footer-nav h5 {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-nav ul li a,
.footer-nav ul li span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-nav ul li a:hover {
    color: var(--color-white);
}

.footer-contact ul li i {
    font-size: 12px;
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin: 0;
    text-align: center;
}

@media (max-width: 1199px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-brand-col {
        width: 100%;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-brand-col {
        width: 100%;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        width: 100%;
    }

    .footer-nav h5 {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .footer-nav ul li a,
    .footer-nav ul li span {
        font-size: 12px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-desc {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
        padding: 0 12px 30px;
    }

    .footer-brand-col {
        width: 100%;
        padding: 0;
    }

    .footer-logo {
        max-width: 120px;
        margin-bottom: 10px;
    }

    .footer-tagline {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .footer-desc {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 12px;
        gap: 8px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    /* Accordion Style for Mobile Footer */
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        padding: 0 12px;
    }

    .footer-nav {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        /* padding: 12px 0; */
    }

    .footer-nav:last-child {
        border-bottom: none;
    }

    .footer-nav h5 {
        font-size: 11px;
        margin: 0;
        padding: 8px 0;
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color 0.3s ease;
        position: relative;
    }

    .footer-nav h5::after {
        content: "▼";
        font-size: 10px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .footer-nav ul {
        display: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        padding: 8px 0;
    }

    .footer-nav.active ul {
        display: flex;
        max-height: 500px;
        opacity: 1;
        padding: 8px 0;
    }

    .footer-nav.active h5::after {
        transform: rotate(180deg);
    }

    .footer-nav ul li {
        gap: 8px;
        margin-bottom: 6px;
    }

    .footer-nav ul li a,
    .footer-nav ul li span {
        font-size: 11px;
        line-height: 1.4;
    }

    .footer-contact ul li i {
        font-size: 11px;
        margin-top: 2px;
    }

    .footer-bottom {
        padding: 15px 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* footer end */


.product-gallery {
    position: relative;
    padding: 60px 0;
}

.product-gallery-main-slider .product-gallery-slide {
    height: 750px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-gallery-overlay {
    position: absolute;
    top: 12%;
    left: 8%;
    color: var(--color-white);
}

.product-gallery-overlay h2 {
    font-family: 'Bebas Neue';
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-gallery-overlay p {
    font-family: 'Inter';
    font-size: 26px;
    margin-bottom: 26px;
}

.btn-know {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 18px;
    font-size: 19px;
    text-decoration: none;
    font-weight: 500;
    transition: all ease 0.35s;
}

.btn-know:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.product-gallery-thumb-slider {
    position: absolute;
    bottom: 90px;
    left: 8%;
    width: 240px;
}

.thumb-item {
    padding: 4px;
    cursor: pointer;
}

.thumb-item img {
    width: 100%;
    border-radius: 4px;
    transition: 0.3s ease;
}

.product-gallery-thumb-slider .owl-item.current .thumb-item img {
    opacity: 1;
    border: 2px solid var(--color-white);
}

.product-gallery-thumb-slider.owl-carousel .owl-item img {
    height: 75px;
}

@media (max-width:768px) {
    .product-gallery-main-slider .product-gallery-slide {
        height: 385px;
    }

    .product-gallery-overlay {
        top: 20%;
        left: 5%;
        max-width: 80%;
    }
    .product-gallery-overlay {
        top: 5%;
        left: 5%;
        max-width: 100%;
    }
}

/*about page*/
.about-hero {
    position: relative;
    height: 120vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.about-hero-media {
    position: absolute;
    inset: 0;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(47,17,5,0.55) 0%,
        rgba(47,17,5,0.15) 40%,
        rgba(47,17,5,0.0) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 0;
    width: 100%;
}

.about-hero-inner {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.about-hero-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(56px, 10vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: 1px;
}

.about-hero-sub {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 0 0 32px;
    max-width: 460px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    padding: 13px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.about-hero-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.about-section-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 14px;
}

.about-section-eyebrow.light {
    color: var(--color-accent);
}

.about-section-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.0;
    margin: 0 0 14px;
}

.about-section-title.light {
    color: var(--color-white);
}

.about-section-sub {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #888;
    margin: 0 0 24px;
    line-height: 1.6;
}

.about-section-head {
    margin-bottom: 60px;
}

.about-section-head .about-section-sub {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-lead {
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.65;
    margin: 0 0 20px;
}

.about-body {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-tags span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(181,92,42,0.08);
    border: 1px solid rgba(181,92,42,0.2);
    padding: 5px 12px;
    border-radius: 999px;
}

.about-what-we-do {
    background: var(--color-white);
    padding: 100px 0;
}

.about-two-col {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-two-col-left {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 100px;
}

.about-two-col-right {
    flex: 1;
}

.about-philosophy-dark {
    position: relative;
    background: var(--color-primary);
    padding: 110px 0;
    overflow: hidden;
}

.about-philosophy-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(181,92,42,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 100%, rgba(212,168,120,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-philosophy-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-philosophy-sub {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    margin: 0 0 40px;
}

.about-philosophy-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-philosophy-body p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin: 0;
}

.about-sound-blocks {
    background: var(--color-bg-soft);
    padding: 100px 0;
}

.about-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.about-block {
    background: var(--color-white);
    padding: 48px 36px;
    transition: background 0.3s ease;
}

.about-block:hover {
    background: var(--color-primary);
}

.about-block:hover .about-block-num,
.about-block:hover h3,
.about-block:hover p {
    color: var(--color-white);
}

.about-block-num {
    font-family: "Bebas Neue", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-soft);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.about-block h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.about-block p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.about-craftsmanship {
    background: var(--color-white);
    padding: 100px 0;
}

.about-craft-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-craft-image {
    flex-shrink: 0;
    width: 46%;
    overflow: hidden;
}

.about-craft-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-craft-image:hover img {
    transform: scale(1.03);
}

.about-craft-content {
    flex: 1;
}

.about-design-lang {
    background: var(--color-bg-soft);
    padding: 100px 0;
}

.about-design-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-design-content {
    flex: 1;
}

.about-design-image {
    flex-shrink: 0;
    width: 46%;
    overflow: hidden;
}

.about-design-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-design-image:hover img {
    transform: scale(1.03);
}

.about-vision {
    position: relative;
    background: var(--color-primary);
    padding: 120px 0;
    overflow: hidden;
}

.about-vision-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(181,92,42,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-vision-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.about-vision-sub {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin: 0 0 36px;
}

.about-vision-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-vision-body p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    margin: 0;
}

@media (max-width: 991px) {
    .about-two-col {
        flex-direction: column;
        gap: 36px;
    }
    .about-two-col-left {
        width: 100%;
        position: static;
    }
    .about-craft-wrap,
    .about-design-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .about-craft-image,
    .about-design-image {
        width: 100%;
    }
    .about-craft-image img,
    .about-design-image img {
        height: 380px;
    }
    .about-blocks-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 72px;
    }
    .about-what-we-do,
    .about-philosophy-dark,
    .about-sound-blocks,
    .about-craftsmanship,
    .about-design-lang,
    .about-vision {
        padding: 70px 0;
    }
}

@media (max-width: 425px) {
    .about-hero-title {
        font-size: 56px;
    }
    .about-hero-content {
        padding-bottom: 50px;
    }
    .about-craft-image img,
    .about-design-image img {
        height: 260px;
    }
}
/*about page css end*/


/*responsive*/
@media(max-width: 425px){
.hero-section {
    height: 100vh;
}
.hero-content {
    padding-top: 50vh;
}
.hero-title {
    font-size: 43px;
    line-height: 42px;
}
.hero-text {
    font-size: 16px;
    margin: 11px 0 14px;
    font-weight: 400;
}
.speaker-img {
    width: 224px;
}
.section-title {
    font-size: 28px;
}
.section-subtitle {
    font-size: 14px;
}
.card-top-title {
    padding-bottom: 32px;
}
.speaker-name {
    font-size: 20px;
}
.features-slider-section {
    padding: 49px 0 9px 0;
}
.product-gallery-overlay h2 {
    font-size: 25px;
    margin-bottom: 2px;
}
.product-gallery-thumb-slider {
    position: absolute;
    bottom: 90px;
    left: 8%;
    width: 160px;
}

.product-gallery-thumb-slider.owl-carousel .owl-item img {
    height: 50px;
}
.product-gallery-overlay p {
    font-size: 15px;
    margin-bottom: 16px;
}
.btn-know {
    font-size: 14px;
}
.footer-logo {
    width: 200px;
}
.main-footer {
    padding: 50px 0 13px 0;
}
.footer-nav ul li {
    margin-bottom: 17px;
}
.footer-nav h5 {
    margin-bottom: 25px;
    margin-top: 20px;
}

.features-slider-section::before {
    display: none;
}

.warranty-section::before {
    display: none;
}
}


/*cart*/
.cart-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
}

.cart-item {
    background: var(--color-white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.qty-box button {
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 18px;
}

.qty-box input {
    width: 40px;
    border: none;
    text-align: center;
    outline: none;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
}

.remove-btn:hover {
    color: var(--color-primary);
}

.cart-summary {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.checkout-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px;
    border-radius: 40px;
    font-weight: 500;
}

.checkout-btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}
.cart-count-badge.d-none { display: none !important; }

/* testimonials section start */
.testimonials-section {
    background: var(--color-primary);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% -10%, rgba(181, 92, 42, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 35% 35% at 85% 110%, rgba(212, 168, 120, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.testi-badge {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(212, 168, 120, 0.45);
    padding: 6px 22px;
    border-radius: 40px;
    background: rgba(212, 168, 120, 0.08);
}

.testi-title {
    /* font-family: "Inter", sans-serif; */
    font-size: 44px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.testi-subtext {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: rgba(235, 221, 208, 0.55);
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.6;
}

.testi-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testi-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testi-scroll 50s linear infinite;
    padding: 16px 0 24px;
}

.testi-marquee-wrap:hover .testi-marquee-track {
    animation-play-state: paused;
}

@keyframes testi-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testi-card {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-soft);
    border-radius: 18px;
    padding: 32px 28px;
    width: 360px;
    min-width: 360px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
    border-color: var(--color-secondary);
}

.testi-stars {
    color: #FFC700;
    font-size: 13px;
    letter-spacing: 3px;
}

.testi-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #4a2e1a;
    margin: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-soft);
    margin-top: auto;
}

.testi-avatar-img {
    flex-shrink: 0;
    width: 44px!important;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-soft);
}

.testi-name {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.testi-role {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 2px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .testi-title { font-size: 32px; }
    .testimonials-section { padding: 70px 0 60px; }
}

@media (max-width: 768px) {
    .testi-title { font-size: 26px; }
    .testimonials-section { padding: 60px 0 50px; }
    .testi-card {
        width: 300px;
        min-width: 300px;
        height: 280px;
    }
}

@media (max-width: 425px) {
    .testi-title { font-size: 22px; letter-spacing: 0; }
    .testi-badge { font-size: 11px; }
    .testimonials-section { padding: 50px 0 40px; }
    .testi-subtext { font-size: 13px; }
    .testi-card {
        width: 270px;
        min-width: 270px;
        height: 290px;
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testi-marquee-track { animation: none; }
}
/* testimonials end */

/* ===================================================
   INSTAGRAM FEED SECTION 
   =================================================== */

.insta-section {
    background: var(--color-bg-soft);
    padding: 90px 0 80px;
    overflow: hidden;
}

/* ── Badge ── */
.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    padding: 5px 13px 5px 10px;
    border-radius: 999px;
    margin-bottom: 28px;
    opacity: 0.85;
}

.insta-badge i {
    font-size: 14px;
}

/* ── Header ── */
.insta-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.insta-header-left {
    max-width: 560px;
}

.insta-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    margin: 0 0 12px;
}

.insta-subtext {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* ── Follow Button ── */
.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.insta-follow-btn i { font-size: 17px; }

.insta-follow-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ── Grid Wrapper ── */
.insta-grid-wrap {
    width: 100%;
    padding: 0;
    display: block;
}
.insta-grid-wrap behold-widget {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    --behold-grid-gap: 5px;
    --behold-border-radius: 0px;
    --behold-overlay-color: rgba(47, 17, 5, 0.55);
    --behold-font-family: "Inter", sans-serif;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
}

/* ── Skeleton ── */
.insta-skeleton {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #e8e0d8 25%, #f0e8e0 50%, #e8e0d8 75%);
    background-size: 200% 100%;
    animation: insta-shimmer 1.4s infinite;
}

@keyframes insta-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Grid Item ── */
.insta-item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.insta-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.06);
}

/* ── Reel Badge ── */
.insta-reel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    padding: 3px 9px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

/* ── Hover Overlay ── */
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 17, 5, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.insta-overlay i {
    color: #fff;
    font-size: 32px;
}

.insta-item:hover .insta-overlay { opacity: 1; }

/* ── View More Button ── */
.insta-more-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    padding: 12px 28px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.insta-more-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .insta-section { padding: 60px 0 50px; }

    .insta-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .insta-title { font-size: 28px; }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
}

@media (max-width: 425px) {
    .insta-section { padding: 50px 0 40px; }
    .insta-title   { font-size: 24px; }

    .insta-follow-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .insta-more-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}
/* insta feed section end */


.final-cta-section {
    background: #fff;
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(181, 92, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.final-cta-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(35px, 6vw, 60px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.0;
    margin: 0 0 22px;
    letter-spacing: 0.5px;
}

.final-cta-subtext {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #777;
    line-height: 1.7;
    margin: 0 auto 44px;
    max-width: 480px;
}

.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.final-cta-btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.final-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 1.5px solid var(--color-primary);
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.final-cta-btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0 70px;
    }
    .final-cta-title {
        font-size: 42px;
    }
    .final-cta-subtext {
        font-size: 15px;
    }
}

@media (max-width: 425px) {
    .final-cta-section {
        padding: 60px 0 55px;
    }
    .final-cta-title {
        font-size: 36px;
    }
    .final-cta-btns {
        flex-direction: column;
        gap: 12px;
    }
    .final-cta-btn-primary,
    .final-cta-btn-outline {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* support page*/
.support-hero {
    position: relative;
    background: var(--color-primary);
    padding: 120px 0 100px;
    overflow: hidden;
}

.support-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 0%, rgba(181,92,42,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 100%, rgba(212,168,120,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.support-hero-inner {
    position: relative;
    z-index: 1;
}

.support-hero-badge {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(212,168,120,0.35);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.support-hero-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.0;
    margin: 0 0 18px;
}

.support-hero-sub {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.support-quick-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-quick-btn:first-child {
    background: var(--color-white);
    color: var(--color-primary);
}

.support-quick-btn:first-child:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.support-quick-btn:last-child {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.support-quick-btn:last-child:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.06);
}

.support-info-strip {
    background: var(--color-bg-soft);
    padding: 0;
    border-bottom: 1px solid var(--color-soft);
}

.support-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.support-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 40px;
}

.support-info-item i {
    font-size: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.support-info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-info-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.support-info-item a,
.support-info-item span:not(.support-info-label) {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
}

.support-info-divider {
    width: 1px;
    height: 40px;
    background: var(--color-soft);
    flex-shrink: 0;
}

.faq-section {
    background: var(--color-white);
    padding: 100px 0 80px;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    border: 1px solid rgba(181,92,42,0.3);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.faq-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 14px;
}

.faq-subtext {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #888;
    margin: 0;
}

.faq-category-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.faq-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: var(--color-bg-soft);
    border: 1.5px solid transparent;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cat-btn i {
    font-size: 12px;
}

.faq-cat-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-soft);
}

.faq-cat-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.faq-body {
    max-width: 860px;
    margin: 0 auto;
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

.faq-panel-blur-title {
    font-family: "Bebas Neue", serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.04;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: -30px;
    pointer-events: none;
    user-select: none;
    filter: blur(2px);
    line-height: 1;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-soft);
    background: transparent;
}

.accordion-button {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    background: transparent;
    padding: 20px 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--color-secondary);
    background: transparent;
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
    background-image: none;
    width: 20px;
    height: 20px;
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: var(--color-secondary);
    transform: none;
}

.accordion-body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    padding: 0 0 20px;
}

.support-form-section {
    background: var(--color-bg-soft);
    padding: 100px 0 80px;
}

.support-form-wrap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.support-form-left {
    flex-shrink: 0;
    width: 300px;
}

.support-form-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 14px;
}

.support-form-title {
    font-family: "Bebas Neue", serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.0;
    margin: 0 0 16px;
}

.support-form-sub {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin: 0 0 36px;
}

.support-contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sci-item i {
    font-size: 16px;
    color: var(--color-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.sci-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sci-item span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
}

.sci-item a,
.sci-item p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}

.support-form-right {
    flex: 1;
}

.support-input {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background: var(--color-white);
    border: 1.5px solid var(--color-soft);
    border-radius: 0;
    padding: 13px 16px;
    color: var(--color-primary);
    transition: border-color 0.3s ease;
}

.support-input:focus {
    border-color: var(--color-secondary);
    box-shadow: none;
    outline: none;
}

.support-input::placeholder {
    color: #aaa;
}

.tile-label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.support-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.support-tiles .tile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 16px;
    background: var(--color-white);
    border: 1.5px solid var(--color-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-tiles .tile i {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.support-tiles .tile strong {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}

.support-tiles .tile span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.support-tiles .tile:hover,
.support-tiles .tile.active {
    border-color: var(--color-secondary);
    background: rgba(181,92,42,0.04);
}

.support-tiles .tile.active i {
    color: var(--color-secondary);
}

.support-submit-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.support-submit-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .support-form-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .support-form-left {
        width: 100%;
    }
    .support-info-item {
        padding: 18px 24px;
    }
}

@media (max-width: 768px) {
    .support-hero {
        padding: 80px 0 70px;
    }
    .support-info-divider {
        display: none;
    }
    .support-info-inner {
        justify-content: flex-start;
    }
    .faq-section {
        padding: 70px 0 60px;
    }
    .support-form-section {
        padding: 70px 0 60px;
    }
}

@media (max-width: 425px) {
    .support-tiles {
        grid-template-columns: 1fr;
    }
    .faq-panel-blur-title {
        font-size: 48px;
    }
    .support-quick-links {
        flex-direction: column;
        align-items: center;
    }
}

/* HERO */

.exp-hero {
    background: #000;
    color: #fff;
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.exp-hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

/* LEFT */
.exp-hero-text {
    width: 100%;
    padding-left: 0;
    text-align: center;
    max-width: 600px;
}

.exp-hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exp-hero-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 25px;
}

.exp-btn {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 12px 25px;
    display: inline-block;
}

.exp-btn:hover {
    background: transparent;
    color: #fff;
    padding: 12px 25px;
    border-color: #fff!important;
}

/* RIGHT CARDS */
.exp-hero-cards {
    width: calc(100% - 20px);
    max-width: 100%;
    display: flex;
    height: 180px;
    overflow: hidden;
    gap: 0;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* CARD */
.exp-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 6px;
    min-height: 180px;
    overflow: hidden;
}

/* TEXT */
.exp-card span {
    margin-bottom: 16px;
    font-size: 12px;
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-block;
}

/* HOVER EFFECT - works on mobile via active state */
.exp-card:hover,
.exp-card:active {
    flex: 1.5;
    z-index: 10;
}

.exp-hero-cards:hover .exp-card:not(:hover),
.exp-hero-cards:active .exp-card:not(:active) {
    flex: 0.8;
    opacity: 0.8;
}

/* TABLET */
@media (min-width: 768px) {
    .exp-hero {
        padding: 80px 0;
    }

    .exp-hero-wrap {
        flex-direction: row;
        min-height: 500px;
        gap: 0;
    }

    .exp-hero-text {
        width: 40%;
        padding-left: 60px;
        text-align: left;
        max-width: none;
    }

    .exp-hero-text h1 {
        font-size: 54px;
    }

    .exp-hero-cards {
        width: 60%;
        height: 500px;
        padding: 0;
    }

    .exp-card {
        flex: 1;
        border-radius: 0;
        min-height: auto;
    }

    .exp-card:hover,
    .exp-card:active {
        flex: 3;
    }

    .exp-hero-cards:hover .exp-card:not(:hover),
    .exp-hero-cards:active .exp-card:not(:active) {
        flex: 1;
        opacity: 1;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .exp-hero {
        padding: 40px 0;
    }

    .exp-hero-wrap {
        gap: 20px;
    }

    .exp-hero-text {
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .exp-hero-text h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .exp-hero-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .exp-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .exp-hero-cards {
        height: 140px;
        width: calc(100% - 16px);
        padding: 0 8px;
        gap: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .exp-card {
        min-height: 140px;
        border-radius: 4px;
    }

    .exp-card:hover,
    .exp-card:active {
        flex: 1.4;
    }

    .exp-card span {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
}

/* SECTION */
.exp2-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

/* HEADER */
.exp2-badge {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.exp2-title {
    font-size: 44px;
    color: var(--color-primary);
    margin-top: 10px;
}

.exp2-subtext {
    max-width: 600px;
    margin: 10px auto 0;
    color: #777;
    font-size: 15px;
}

/* CARD */
.exp2-card {
    background: #fff;
    padding: 30px 22px;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* HOVER */
.exp2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */
.exp2-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

/* TITLE */
.exp2-card h5 {
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

/* SUBTITLE */
.exp2-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.exp2-card span {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .exp2-section {
        padding: 50px 15px;
    }

    .exp2-badge {
        font-size: 11px;
    }

    .exp2-title {
        font-size: 28px;
        margin-top: 8px;
    }

    .exp2-subtext {
        font-size: 14px;
    }

    .exp2-card {
        padding: 22px 16px;
    }

    .exp2-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .exp2-card h5 {
        font-size: 16px;
    }

    .exp2-card p {
        font-size: 13px;
    }

    .exp2-card span {
        font-size: 12px;
    }
}

/* SECTION */
.exp3-section {
    padding: 100px 0;
    background: var(--color-primary-alpha);
    position: relative;
    overflow: hidden;
}

/* subtle glow */
.exp3-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -100px;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(181,92,42,0.15) 0%, transparent 70%);
    filter: blur(60px);
}

/* HEADER */
.exp3-badge {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.exp3-title {
    font-size: 44px;
    color: var(--color-primary);
    margin-top: 10px;
}

.exp3-subtext {
    max-width: 620px;
    margin: 10px auto 0;
    color: #666;
    font-size: 15px;
}

/* CARD */
.exp3-card {
    background: var(--color-white);
    padding: 26px 22px;
    border-radius: 18px;
    height: 100%;

    display: flex;
    align-items: center;
    gap: 18px;

    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

/* hover */
.exp3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* LEFT NUMBER */
.exp3-left {
    flex-shrink: 0;
}

.exp3-number {
    font-size: 38px;
    font-weight: 900;
    color: rgba(47,17,5,0.12);
    line-height: 1;
    transition: 0.3s;
}

/* hover number */
.exp3-card:hover .exp3-number {
    color: var(--color-secondary);
}

/* CONTENT */
.exp3-content {
    text-align: left;
}

/* TITLE */
.exp3-content h5 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

/* TEXT */
.exp3-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .exp3-section {
        padding: 50px 15px;
    }

    .exp3-badge {
        font-size: 11px;
    }

    .exp3-title {
        font-size: 28px;
        margin-top: 8px;
    }

    .exp3-subtext {
        font-size: 14px;
    }

    .exp3-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .exp3-number {
        font-size: 26px;
    }

    .exp3-content h5 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .exp3-content p {
        font-size: 13px;
    }
}


/* SECTION */
.exp4-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle center glow */
.exp4-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,120,0.15) 0%, transparent 70%);
    filter: blur(60px);
}

/* HEADER */
.exp4-badge {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.exp4-title {
    font-size: 44px;
    color: var(--color-primary);
    margin-top: 10px;
}

.exp4-subtext {
    max-width: 600px;
    margin: 10px auto 0;
    color: #777;
    font-size: 16px;
}

/* CARD */
.exp4-card {
    background: var(--color-bg-soft);
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

/* hover */
.exp4-card:hover {
    transform: translateY(-8px);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.exp4-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

/* icon invert on hover */
.exp4-card:hover .exp4-icon {
    background: rgba(255,255,255,0.15);
}

/* TITLE */
.exp4-card h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

/* TEXT */
.exp4-card p {
    font-size: 16px;
    color: #666;
}

/* hover text */
.exp4-card:hover p {
    color: rgba(255,255,255,0.7);
}

/* MOBILE */
@media (max-width: 768px) {
    .exp4-section {
        padding: 50px 15px;
    }

    .exp4-badge {
        font-size: 11px;
    }

    .exp4-title {
        font-size: 28px;
        margin-top: 8px;
    }

    .exp4-subtext {
        font-size: 14px;
    }

    .exp4-card {
        padding: 25px 16px;
    }

    .exp4-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .exp4-card h5 {
        font-size: 18px;
    }

    .exp4-card p {
        font-size: 14px;
    }
}

/* SECTION */
.exp5-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

/* HEADER */
.exp5-badge {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.exp5-title {
    font-size: 44px;
    color: var(--color-primary);
    margin-top: 10px;
}

.exp5-subtext {
    max-width: 600px;
    margin: 10px auto 0;
    color: #777;
    font-size: 15px;
}

/* TABLE WRAP */
.exp5-table-wrap {
    display: flex;
    justify-content: center;
}

/* TABLE */
.exp5-table {
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
}

/* ROW */
.exp5-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 16px 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

/* HEADER */
.exp5-head {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

/* HIGHLIGHT COLUMN */
.exp5-row .highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

/* MUTED COLUMN */
.exp5-row .muted {
    color: #777;
}

/* ICONS */
.exp5-row i {
    font-size: 16px;
}

/* hover */
.exp5-row:not(.exp5-head):hover {
    background: rgba(0,0,0,0.02);
}

/* MOBILE */
 @media (max-width: 768px) {
    .exp5-row {
     padding: 11px 8px;
     font-size: 12px;
    }
    /*.exp5-section {
        padding: 50px 15px;
    }

    .exp5-badge {
        font-size: 11px;
    }

    .exp5-title {
        font-size: 28px;
        margin-top: 8px;
    }

    .exp5-subtext {
        font-size: 14px;
    }

    .exp5-table {
        max-width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .exp5-row {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 8px;
        padding: 14px 16px;
        font-size: 14px;
    }

    .exp5-head {
        display: none;
    }

    .exp5-row .highlight,
    .exp5-row .muted {
        display: inline;
        margin-left: 8px;
    }*/
} 

/* SECTION */
.exp6-section {
    padding: 120px 0;
    background: linear-gradient(
        to bottom,
        var(--color-primary) 0%,
        #3a1406 70%,
        #2F1105 100%
    );
    color: #fff;
    position: relative;
}

/* glow effect */
.exp6-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(181,92,42,0.25) 0%, transparent 70%);
    filter: blur(80px);
}

/* HEADER */
.exp6-badge {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 20px;
}

/* TITLE */
.exp6-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 16px;
}

/* SUBTEXT */
.exp6-subtext {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

/* BUTTON */
.exp6-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f7c6b8, #e7a2d6);
    color: #000;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* hover */
.exp6-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
    .exp6-section {
        padding: 50px 20px;
    }

    .exp6-badge {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .exp6-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .exp6-subtext {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .exp6-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}



@media (max-width: 768px) {
    .inner-page {
        margin-top: 50px;
    }
}