@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --body-font: "Inter", sans-serif;
    --heading-font: "Bebas Neue", sans-serif;
    --mono-font: "IBM Plex Mono", monospace;
    --primary-color: #e8720c;
}

html,
body {
    height: auto;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: #ef7a22;
    color: #ffffff;
}

::-moz-selection {
    background: #ef7a22;
    color: #ffffff;
}

a {
    text-decoration: none;
    transition: .3s ease;
}

body {
    font-family: var(--body-font);
    background: #f7f4ec;
}

.top-header {
    background: #171712;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    text-decoration: none;
    line-height: 1;
    font-family: var(--heading-font);
}

.logo span {
    color: #ef7f22;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bebebe;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
    font-family: var(--mono-font);
}

.header-contact a:hover {
    color: #ef7f22;
}

.header-contact i {
    font-size: 15px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 19px;
}

.shop-btn {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 11px 21px;
    font-size: 15px;
    letter-spacing: 1px;
    transition: .3s;
    font-family: var(--heading-font);
    border-radius: 6px;
}

.shop-btn:hover {
    background: #d76e18;
    color: #fff;
}

.icon {
    color: white;
}

.login-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    font-family: var(--heading-font);
}

.login-link {
    font-size: 15px;
    letter-spacing: 0.4px;
}

.login-link i {
    font-size: 22px;

}

.icon-link:hover,
.login-link:hover {
    color: #ef7f22;
}

.navbar-toggler {
    background: none;
    border: 0;
    color: #fff;
    font-size: 30px;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    padding-bottom: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(transparent,
            transparent 2px,
            rgba(0, 0, 0, .08) 3px),
        repeating-radial-gradient(circle at 20% 30%,
            rgba(236, 229, 211, .03) 0,
            transparent 45%),
        repeating-radial-gradient(circle at 80% 70%,
            rgba(236, 229, 211, .025) 0,
            transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 18, 14, .82),
            rgba(18, 18, 14, .9));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(220, 170, 70, .35);
    border-radius: 30px;
    color: #c89a47;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.hero-topo {
    height: 100%;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.hero-badge svg {
    width: 13px;
}

.hero-logo {
    font-family: var(--heading-font);
    font-weight: 500;
    align-items: baseline;
    display: flex;
    font-size: clamp(72px, 11vw, 148px);
    gap: 6px;
    justify-content: center;
    letter-spacing: .04em;
    line-height: .9;
    margin-bottom: 8px;
    color: white;
}

.hero-logo svg {
    width: 70px;
}

.hero-logo svg,
.hero-logo span {
    color: #df7a2a;
}

.hero-tag {
    color: #b08b48;
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 35px;
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 60px);
    letter-spacing: .01em;
    line-height: 1.02;
    margin: 0 auto 22px;
    font-family: var(--heading-font);
    color: white;
    font-weight: bold;
}

.hero h1 span {
    color: #df7a2a;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #d7d2c5;
    font-size: 18px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.theme-btn {
    padding: 0 36px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 21px;
    transition: .3s;
    place-content: center;
    padding: 10px 21px;
    border-radius: 6px;
    display: block;
    text-align: center;
}

.theme-btn:hover {
    background: #c86920;
    color: #fff;
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.video-btn i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split {
    margin: 0 auto;
    max-width: 980px;
    text-align: left;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
    height: 100%;
}

.hero-image img {
    width: 100%;
    display: block;
    height: 100%;
}

.hero-card {
    background: #1c1b16;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 40px;
    color: #ece5d3;
}

.hero-rating {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 6px;
}



.hero-rating span {
    color: #ece5d3;
    margin-left: 10px;
}

.hero-card h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #fff;
    margin-bottom: 5px;
}

.hero-card p {
    color: #cfc9bc;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.hero-card ul li {
    color: #e6dfcb;
    display: flex;
    font-size: 14px;
    gap: 10px;
}

.hero-card ul i {
    color: #df7a2a;
    font-size: 18px;
    margin-top: 2px;
}

.price-wrap {
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 30px;
}

.price-wrap h2 {
    color: #fff;
    font-size: 32px;
    margin: 0;
    font-family: var(--heading-font);
}

.price-wrap span {
    color: #cfc9bc;
    margin-bottom: 10px;
}

.hero-card .theme-btn {
    background: #e87523;
    color: #fff;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 22px;
    transition: .3s;
    display: block;
    text-align: center;
}

.theme-btn:hover {
    background: #cf661a;
    color: #fff;
}

.hero-note {
    margin-top: 14px;
    align-items: center;
    display: flex;
    font-size: 12px;
    gap: 8px;
    justify-content: center;
    color: #a8823c;
}

.hero-note i {
    margin-right: 8px;
}

.trust-bar {
    background: #171712;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ece5d3;
    font-size: 15px;
    text-align: center;
}

.trust-item i {
    font-size: 18px;
    color: #d97a28;
}

.trust-item strong {
    color: #fff;
    font-family: var(--mono-font);
    font-weight: 600;
}

.stars {
    color: #d9a441;
    font-size: 16px;
    letter-spacing: 2px;
}

.trust-bar .container {
    padding: 0;
}

.marquee {
    background: #1a1a16;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 200s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 35px;
    color: #ece5d3;
    font-size: 15px;
    white-space: nowrap;
    font-family: var(--heading-font);
    font-size: 24px;
}

.marquee-item .reticle {
    color: #e8720c !important;
    color: var(--rust);
    height: 14px;
    width: 14px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.product-sec {
    padding: 100px 0;
    background: #f6f3ec;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.product-main-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.thumb {
    width: 78px;
    height: 78px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active,
.thumb:hover {
    border-color: #eb7421;
}

.product-card {
    background: #fff;
    border: 1px solid #e5d7bf;
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.product-label {
    display: block;
    color: #bb7d35;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--mono-font);
}

.product-card h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 30px;
    color: #111;
}

.product-sec {
    padding: 100px 0;
    background: #f6f2e8;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.product-main-image img {
    width: 100%;
    display: block;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.thumb {
    width: 84px;
    height: 84px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active,
.thumb:hover {
    border-color: #df7a2a;
}

.buy-box {
    background: #fff;
    border: 1px solid #e6ddcf;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
}

.product-tag {
    display: inline-block;
    color: #b8893d;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--mono-font);
}

.buy-box h2 {
    font-family: var(--heading-font);
    font-size: 54px;
    line-height: 1;
    margin-bottom: 30px;
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.bundle-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.bundle-option input {
    accent-color: #df7a2a;
}

.bundle-name {
    flex: 1;
    color: #222;
    font-size: 16px;
}

.bundle-price {
    font-family: var(--mono-font);
    font-weight: 600;
}

.bundle-option.active,
.bundle-option:hover {
    border-color: #df7a2a;
    background: #fff9f4;
}

.price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 28px;
}

.price-wrap h3 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-family: var(--heading-font);
}

.price-wrap span {
    color: #777;
    margin-bottom: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
    color: #444;
    font-size: 14px;
}

.feature-list li:last-child {
    border-bottom: 0;
}

.feature-list i {
    color: #df7a2a;
    font-size: 18px;
    margin-top: 3px;
}

.guarantee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin: 22px 0;
}

.guarantee i {
    color: #df7a2a;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.payment-icons span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    font-size: 11px;
    font-weight: 600;
    color: #555;
}

.reports-sec {
    padding: 60px 0;
    background: #f5f1e8;
}

.title-wrapper {
    max-width: 720px;
    margin: 0 auto 60px;
}

.sub-title {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    color: #b08b50;
    margin-bottom: 8px;
    font-family: var(--mono-font);
}

.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cf7d32;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--mono-font);
}

.mini-title i {
    font-size: 8px;
}

.title-wrapper h2 {
    font-family: var(--heading-font);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 18px;
}

.title-wrapper p {
    font-size: 18px;
    color: #666;
}

.report-card {
    background: #1b1c18;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
}

.report-card:hover {
    transform: translateY(-8px);
}

.report-img {
    position: relative;
    overflow: hidden;
}

.report-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
}

.report-card:hover img {
    transform: scale(1.05);
}

.report-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(32, 32, 32, .92);
    color: #fff;
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono-font);
}

.report-tag i {
    font-size: 8px;
}

.report-content {
    padding: 28px;
}

.report-content p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 17px;
}

.report-content h5 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-family: var(--heading-font);
}

.report-content span {
    display: block;
    margin-top: 6px;
    color: #c8903d;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: var(--mono-font);
}

.features-sec {
    padding: 60px 0;
    background: #25241d;
}

.features-sec .title-wrapper {
    margin-bottom: 60px;
}

.features-sec .sub-title {
    display: block;
    color: #b88d43;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 8px;
    font-family: var(--mono-font);
}

.features-sec .mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d07b2a;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: var(--mono-font);
}

.features-sec h2 {
    color: #fff;
    font-size: 64px;
    font-family: var(--heading-font);
    margin: 0;
}

.feature-grid {
    margin: auto;
    border: 1px solid rgba(0, 0, 0, .35);
    border-radius: 18px;
    overflow: hidden;
    background: #f3efe7;
}

.feature-card {
    padding: 38px 28px;
    min-height: 220px;
    border-right: 1px solid rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--heading-font);
    font-size: 28px;
}

.feature-grid .col-lg-4:nth-child(3n) .feature-card {
    border-right: 0;
}

.feature-grid .col-lg-4:nth-last-child(-n+3) .feature-card {
    border-bottom: 0;
}

.feature-card:hover {
    background: #ebe4d7;
}

.feature-icon {
    font-size: 34px;
    color: #eb7421;
    margin-bottom: 45px;
}

.feature-card p {
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
}

.steps-sec {
    padding: 60px 0;
    background: #25241d;
}

.steps-sec .title-wrapper {
    margin-bottom: 80px;
}

.steps-sec .sub-title {
    display: block;
    color: #b88d43;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 8px;
    font-family: var(--mono-font);
}

.steps-sec .mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d77d2c;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-family: var(--mono-font);
}

.steps-sec h2 {
    color: #f5f3ee;
    font-family: var(--heading-font);
    font-size: 52px;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}

.step-card {
    max-width: 340px;
    margin: auto;
    text-align: center;
}

.step-no {
    display: block;
    color: #b88d43;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-family: var(--heading-font);
}

.step-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 28px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    color: #eb7421;
}


.step-card:hover .step-icon {
    transform: translateY(-6px);
}

.step-card h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 25px;
    font-family: var(--heading-font);
}

.step-card p {
    color: #d4d2cc;
    font-size: 14px;
    margin: 0 auto;
}

.video-sec {
    padding: 60px 0;
    background: #f5f2e9;
}

.video-wrapper {
    margin: auto;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
    height: 600px;
    max-width: 1200px;
}

.video-wrapper video {
    width: 100%;
    display: block;
    cursor: pointer;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.play-btn:hover {
    background: #eb7421;
    border-color: #eb7421;
}

.compare-sec {
    padding: 60px 0;
    background: #e6dfcb;
}

.compare-table {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    font-family: var(--heading-font);
    font-weight: 500;
}

.compare-table th,
.compare-table td {
    padding: 22px 24px;
    border-bottom: 1px solid #e5dfd2;
    text-align: center;
    font-size: 16px;
    color: #474747;

}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table th:first-child,
.compare-table td:first-child {
    width: 40%;
    text-align: left;
}


.compare-table td:first-child {
    color: #555;
}

.compare-table i {
    font-size: 18px;
    color: #4d422c;
}

.dash {
    color: #bdb5a3;
    font-size: 20px;
}

.limited {
    color: #c5b38b;
}

.gunstix-col {
    background: #ece8da9e;
}

.compare-table th.gunstix-col {
    color: #444120;
}

.compare-table thead tr th:first-child {
    border-top-left-radius: 18px;
}

.compare-table thead tr th:last-child {
    border-top-right-radius: 18px;
}

.compare-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

.compare-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

.gallery-sec {
    padding: 100px 0;
    background: #25241d;
}

.gallery-sec .title-wrapper {
    margin-bottom: 60px;
}

.gallery-sec h2 {
    color: #fff;
    font-size: 64px;
    font-family: var(--heading-font);
    margin: 0;
}

.gallery-grid {
    max-width: 980px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 4px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Layout */

.item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 3;
    grid-row: 1;
}

.item-3 {
    grid-column: 4;
    grid-row: 1;
}

.item-4 {
    grid-column: 3;
    grid-row: 2 / 4;
}

.item-5 {
    grid-column: 4;
    grid-row: 2;
}

.item-6 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.item-7 {
    grid-column: 4;
    grid-row: 3;
}

.benefits-sec {
    padding: 60px 0;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: .35s;
}

.benefit-item:hover .benefit-icon i {
    transform: translateY(-6px);
}

.benefit-item h4 {
    margin: 0;
    color: #161515;
    font-size: 21px;
    line-height: 0.7;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.benefit-item h4 span {
    display: block;
    margin-top: 10px;
}

.faq-sec {
    padding: 60px 0;
    background: #e6dfcb;
}

.faq-accordion {
    max-width: 650px;
    margin: 60px auto 0;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd4c2;
    border-radius: 0;
}

.faq-accordion .accordion-button {
    background: none;
    box-shadow: none;
    padding: 22px 0;
    color: #111;
    font-size: 18px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: none;
    color: #111;
}

.faq-accordion .accordion-button::after {
    content: "+";
    background: none;
    width: auto;
    height: auto;
    font-size: 26px;
    color: #eb7421;
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "×";
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 0 0 10px;
    color: #666;
    font-size: 15px;
}

.cta-sec {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #1f2818;
}

.cta-sec::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 116, 33, .18) 0%, rgba(235, 116, 33, .08) 35%, transparent 70%);
    pointer-events: none;
}

.cta-sec::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom center, rgba(66, 97, 43, .28), transparent 60%);
    pointer-events: none;
}

.cta-sec .container {
    position: relative;
    z-index: 2;
}

.cta-sec .title-wrapper {
    max-width: 900px;
    margin: auto;
}

.cta-sec .title-wrapper h2 {
    color: #fff;
    font-size: 60px;
    line-height: .95;
    margin: 12px 0 25px;
    font-family: var(--heading-font);
}

.cta-sec .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    height: 54px;
    padding: 0 35px;
    border-radius: 6px;
    background: #eb7421;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    transition: .35s;
}

.cta-sec .theme-btn:hover {
    background: #cf6518;
    color: #fff;
}

.cta-feature-wrap {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5f5f5;
    font-size: 15px;
}

.cta-feature i {
    color: #d8d2be;
    font-size: 18px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #b58a43;
    font-size: 13px;
}

.site-footer {
    padding: 40px 0 32px;
    background: #1d1d18;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #eb7421;
}

.site-footer p {
    margin: 0;
    color: #f1efe8;
    font-size: 13px;
    line-height: 1.6;
}

.site-footer p a {
    color: #eb7421;
    text-decoration: none;
}

.site-footer p a:hover {
    text-decoration: underline;
}


/* Start */

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: all .3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #000 !important;
    outline: none !important;
}

.woocommerce-checkout button,
.woocommerce-checkout button[type="submit"],
.woocommerce-checkout input[type="submit"] {
    border-radius: 10px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    transition: .3s;
}

.woocommerce-checkout button:hover,
.woocommerce-checkout button[type="submit"]:hover,
.woocommerce-checkout input[type="submit"]:hover {
    background: #222 !important;
}
