/* ============================================
   SeVENDE.com - Navbar Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Mohave:wght@500;600;700;800&family=Onest:wght@400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Onest', 'Inter', sans-serif;
    background: #fff;
}

.container{
    max-width: 1170px;
}
/* ===== NAVBAR ===== */
.sevende-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    min-height: 68px;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}
.dropdown-toggle::after{
    display: none;
}
/* ===== LOGO ===== */
.navbar-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-logo-link:hover .navbar-logo {
    opacity: 0.85;
    transform: scale(1.02);
}

/* ===== RIGHT SIDE ===== */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== SHARE SECTION ===== */
.share-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* ===== SOCIAL ICONS ===== */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.social-icon-link:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon-link:active {
    transform: translateY(0) scale(0.97);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown-wrapper {
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 7px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    /* Remove default Bootstrap arrow */
    background-image: none !important;
}

.lang-btn:hover {
    border-color: #aaa;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lang-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.lang-btn.show,
.lang-btn[aria-expanded="true"] {
    border-color: #888;
    background: #f5f5f5;
}

.lang-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown menu */
.lang-dropdown-menu {
    min-width: 130px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 6px;
    margin-top: 4px !important;
    background: #ffffff;
}

.lang-option {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.lang-option:hover {
    background: #f5f5f5;
    color: #111;
}

.lang-option.active {
    background: #f0f0f0;
    color: #111;
    font-weight: 500;
}

/* ===== COPY LINK TOAST ===== */
.copy-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    white-space: nowrap;
    backdrop-filter: blur(6px);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar-inner {
        padding: 8px 16px;
        min-height: 60px;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-right {
        gap: 10px;
    }

    .share-label {
        font-size: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .lang-btn {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .navbar-inner {
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
    }

    .share-label {
        display: none;
    }
}

@media (max-width: 400px) {
    .navbar-logo {
        height: auto;
        width: 160px;
    }


}


/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: #ffffff;
    overflow: hidden;
    padding: 50px 10px 0px;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 520px;
    max-width: 1170px;
    margin: 0 auto;
}

/* ===== LEFT: IMAGE COLUMN ===== */
.hero-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 560px;
}

/* ===== RIGHT: TEXT COLUMN ===== */
.hero-text-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 48px 48px 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

/* "A NEW WAY TO" */
.hero-eyebrow {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.7px;
    color: #222222;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1;
}

/* "SELL ONLINE AND OFFLINE" */
.hero-headline {
    font-family: 'Mohave', sans-serif;
    font-size: clamp(50px, 5.5vw, 61px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -5px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    /* Gradient text */
    background: linear-gradient(181deg, #848484 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0px;
}

/* "Launching Soon 🚀" */
.hero-launching {
    font-family: 'Brush Script MT', 'Brush Script Std', cursive;
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 400;
    color: #e8002d;
    line-height: 1.15;
    margin: 0 0 0px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Rocket icon inside "Launching Soon" */
.hero-rocket-icon {
    width: 46px;
    height: 46px;
    display: inline-block;
    vertical-align: middle;
    /* Give rocket a dark background circle to be visible */
    background: #222;
    border-radius: 50%;
    padding: 8px;
    flex-shrink: 0;
}

/* Body description paragraphs */
.hero-desc,
.hero-desc-2 {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #141414;
    line-height: 1.65;
    margin: 0;
}

.hero-desc {
    margin-bottom: 0px;
}

.hero-desc-2 {
    margin-bottom: 0;
}

/* Red bold "SEVENDE" */
.brand-red {
    color: #e8002d;
    font-weight: 700;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .share-label {
        display: none;
    }

    .hero-image-col,
    .hero-text-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-image-col {
        justify-content: center;
    }

    .hero-banner-img {
        max-height: 420px;
        width: auto;
        max-width: 100%;
    }

    .hero-text-col {
        padding: 32px 32px 40px 32px;
        text-align: center;
        align-items: center;
    }

    .hero-launching {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .share-section {
        display: none !important;
    }

    .hero-section {
        padding: 10px 10px 40px;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 576px) {
    .hero-banner-img {
        max-height: 320px;
    }

    .hero-text-col {
        padding: 24px 20px 36px 20px;
    }

    .hero-eyebrow {
        font-size: 16px;
    }

    .hero-desc,
    .hero-desc-2 {
        font-size: 15px;
    }

    .hero-rocket-icon {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
}

/* ============================================
   FEATURES + EARLY ACCESS SECTION
   ============================================ */

.features-section {
    background: #ffffff;
    padding: 80px 10px 60px;
    
}


.features-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 14px;
}

/* ===== LEFT COLUMN ===== */
.features-left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ===== FEATURE CARDS ROW ===== */
.feature-cards-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.feature-card {
    flex: 1 1 0;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

/* Icon wrap — transparent since PNG already has circle background */
.feature-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: transparent;
}

.feature-icon-ai,
.feature-icon-print,
.feature-icon-sell {
    /* No background needed - PNGs already have colored circle */
    background: transparent;
}

.feature-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.feature-card-label {
    font-family: 'Onest', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.45;
    margin: 0;
}

/* ===== TAGLINE ===== */
.features-tagline {
    font-family: 'Onest', sans-serif;
    font-size: clamp(18px, 2.2vw, 27px);
    font-weight: 700;
    color: #111111;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.tag-red {
    color: #e8002d;
    font-weight: 700;
}

/* ===== SHARE BANNER ===== */
.share-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px 22px;
}

.share-banner-icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.share-banner-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

.share-banner-text {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.share-brand {
    color: #e8002d;
    font-weight: 700;
}

/* ===== RIGHT COLUMN: EARLY ACCESS PANEL ===== */
.early-access-panel {
    flex: 0 0 415px;
    max-width: 415px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: sticky;
    top: 88px;
}

.ea-panel-inner {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Heading */
.ea-heading {
    font-family: 'Mohave', sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 4px 0;
    text-align: center;
}

.ea-red {
    color: #e8002d;
}

/* Subtext */
.ea-subtext {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 8px 0;
    text-align: center;
}

/* ===== FORM ===== */
.ea-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ea-field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ea-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333333;
    text-transform: uppercase;
}

.ea-input,
.ea-select {
    width: 100%;
    background: #f4f4f4;
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Onest', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ea-input::placeholder {
    color: #aaaaaa;
    font-weight: 400;
}

.ea-input:focus,
.ea-select:focus {
    background: #ffffff;
    border-color: #e8002d;
    box-shadow: 0 0 0 3px rgba(232, 0, 45, 0.10);
}

/* Select wrapper — custom arrow */
.ea-select-wrap {
    position: relative;
}

.ea-select {
    cursor: pointer;
    padding-right: 42px;
    color: #aaaaaa;
}

.ea-select:focus {
    color: #1a1a1a;
}

.ea-select option:not([value=""]) {
    color: #1a1a1a;
}

.ea-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button */
.ea-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #e8002d;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-family: 'Onest', sans-serif;
    font-size: 19px;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}

.ea-submit-btn:hover {
    background: #c50027;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 0, 45, 0.35);
}

.ea-submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
    background: #b0002a;
}

.ea-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ea-rocket-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Privacy note */
.ea-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #888888;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
    .features-inner {
        gap: 24px;
    }

    .early-access-panel {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

@media (max-width: 860px) {
    .features-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .early-access-panel {
        flex: none;
        max-width: 100%;
        position: static;
    }

    .ea-panel-inner {
        padding: 28px 24px 24px;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 600px) {
    .features-section {
        padding-bottom: 48px;
    }

    .feature-cards-row {
        gap: 10px;
        flex-direction: column;
    }

    .feature-card {
        padding: 18px 10px 16px;
        gap: 12px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .feature-icon-wrap {
        width: 75px;
        height: 75px;
    }

    .feature-icon-img {
        width: 60px;
        height: 60px;
    }

    .feature-card-label {
        font-size: 16px;
        text-align: left;
    }

    .share-banner {
        gap: 14px;
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
    }

    .share-banner-icon-wrap {
        width: 46px;
        height: 46px;
    }

    .share-banner-text {
        font-size: 13px;
    }

    .ea-panel-inner {
        padding: 24px 18px 20px;
    }

    .ea-heading {
        font-size: 20px;
    }
}

/* ============================================
   POWERFUL TOOLS / BETTER RESULTS SECTION
   ============================================ */

.tools-section {
    background: #ffffff;
    padding: 50px 10px 10px;
}

.tools-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ===== TOP HEADER ROW ===== */
.tools-header {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

/* Left: Headline block */
.tools-headline-col {
    flex: 0 0 auto;
    min-width: 0;
}

.tools-headline {
    font-family: 'Mohave', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.tools-headline-line1 {
    color: #111111;
    display: block;
}

.tools-headline-line2 {
    color: #e8002d;
    display: block;
}

/* Right: Description block */
.tools-desc-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 6px;
    justify-content: flex-end;
}

.tools-desc {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

/* ===== DIVIDER ===== */
.tools-divider {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin: 0;
}

/* ===== 3 CARDS ROW ===== */
.tools-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

/* Individual card */
.tools-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: transform 0.22s ease;
    padding: 20px;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    min-height: 100%;
}

.tools-card:hover {
    transform: translateY(-3px);
}

/* Image wrapper — subtle border + shadow like reference */
.tools-card-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #0a0a0a;
    transition: box-shadow 0.22s ease;
}

.tools-card:hover .tools-card-img-wrap {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.tools-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* Caption text below card image */
.tools-card-caption {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    line-height: 1.55;
    margin: 0;
    max-width: 320px;
    text-align: center;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
    .tools-header {
        gap: 32px;
    }

    .tools-headline {
        font-size: clamp(28px, 3.5vw, 44px);
    }

    .tools-cards-row {
        gap: 20px;
    }

    .tools-card-caption {
        font-size: 15px;
    }
}

@media (max-width: 860px) {
    .tools-header {
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        align-items: center;
        text-align:center;
    }
    .tools-section{
        padding-top:0px;
    }


    .tools-headline {
        white-space: normal;
    }

    .tools-desc-col {
        padding-top: 0;
    }

    .tools-desc {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .tools-section {
        text-align: center;
        padding: 0px 10px 56px;
    }

    .tools-card {
        min-height: inherit;
    }

    .tools-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto;
    }

    .tools-card-caption {
        font-size: 16px;
        max-width: 100%;
    }

    .tools-inner {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .tools-inner {
        padding: 0 16px;
    }

    .tools-headline {
        font-size: 30px;
    }

    .tools-desc {
        font-size: 15px;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.hiw-section {
    background: #ffffff;
    padding: 52px 10px 60px;
}

.hiw-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

/* ===== HEADING ROW ===== */
.hiw-heading-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Decorative gradient lines flanking the heading */
.hiw-line {
    flex: 1 1 0;
    height: 2px;
    display: block;
    border-radius: 2px;
}

.hiw-line-left {
    background: linear-gradient(to left, #e8002d 0%, rgba(232, 0, 45, 0.0) 100%);
}

.hiw-line-right {
    background: linear-gradient(to right, #e8002d 0%, rgba(232, 0, 45, 0.0) 100%);
}

.hiw-heading {
    font-family: 'Mohave', sans-serif;
    font-size: clamp(22px, 3vw, 43px);
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -1px;
}

/* ===== STEPS ROW ===== */
.hiw-steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

/* Each step: icon block + text side-by-side */
.hiw-step {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

/* Icon + badge wrapper */
.hiw-step-icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
}

/* Red numbered badge — top-left, overlapping icon circle */
.hiw-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 2;
    background: #e8002d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(232, 0, 45, 0.35);
}

/* Grey circle containing the icon */
.hiw-icon-circle {
    position: absolute;
    inset: 0;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hiw-step:hover .hiw-icon-circle {
    background: #ebebeb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hiw-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* Step text label */
.hiw-step-text {
    font-family: 'Onest', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    line-height: 1.5;
    margin: 0;
    max-width: 120px;
}

/* Connector dots between steps */
.hiw-connector {
    flex: 1 1 0;
    height: 2px;
    min-width: 24px;
    max-width: 60px;
    background-image: repeating-linear-gradient(to right,
            #c8c8c8 0,
            #c8c8c8 5px,
            transparent 5px,
            transparent 12px);
    margin: 0 8px;
    align-self: center;
    margin-bottom: 18px;
    /* align with icon vertical center */
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 860px) {
    .hiw-inner {
        gap: 36px;
    }

    .hiw-steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .hiw-connector {
        display: none;
    }

    .hiw-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        flex: 0 0 calc(50% - 16px);
        max-width: 200px;
    }

    .hiw-step-text {
        max-width: 100%;
        text-align: center;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 500px) {
    .hiw-section {
        padding: 0px 10px 52px;
    }

    .hiw-heading {
        font-size: 20px;
        letter-spacing: 0.04em;
    }

    .hiw-steps-row {
        gap: 24px;
    }

    .hiw-step {
        flex: 0 0 calc(50% - 12px);
    }

    .hiw-step-icon-wrap,
    .hiw-icon-circle {
        width: 58px;
        height: 58px;
    }

    .hiw-icon-img {
        width: 26px;
        height: 26px;
    }

    .hiw-step-text {
        font-size: 13px;
    }
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */

.cta-banner {
    margin-bottom: 50px;
    padding: 0px 20px;
    overflow: hidden;
    position: relative;
}

.cta-banner-inner {
    max-width: 1170px;
    background: #12131a;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 165px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

/* ===== ROCKET IMAGE ===== */
.cta-rocket-wrap {
    flex-shrink: 0;
    width: 190px;
    height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Slight negative margin so rocket bleeds into the banner bottom */
    margin-bottom: -4px;
    margin-left: -16px;
}

.cta-rocket-img {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ===== TEXT COLUMN ===== */
.cta-text-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-headline {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.5vw, 30px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.cta-headline strong {
    font-weight: 800;
    color: #ffffff;
}

.cta-subline {
    font-family: 'Onest', sans-serif;
    font-size: clamp(14px, 1.3vw, 27px);
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

/* ===== ACTION COLUMN ===== */
.cta-action-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-right: 44px;
}

/* Red CTA button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8002d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 45px;
    font-family: 'Onest', sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    background: #c50027;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 0, 45, 0.4);
    color: #ffffff;
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: none;
    background: #b0002a;
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Small note below button */
.cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffff;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1200px) {
    .share-banner-text {
    font-size: 16px;
    }
    .hiw-step{
        gap:0px;
    }
}
@media (max-width: 992px) {
    .hiw-connector{
        display:none;
    }
    .cta-rocket-img{
        display:none;
    }
    .cta-action-col{
        padding-right:0px;
    }
}
@media (max-width: 900px) {
    .cta-banner-inner {
        padding: 24px 32px;
        gap: 24px;
        min-height: auto;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction:column;
    }
    .cta-headline{
            font-size: clamp(24px, 1.5vw, 30px);
    }

    .cta-rocket-wrap {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: left;
    }

    .cta-rocket-wrap {
        justify-content: flex-start;
    }

    .cta-text-col {
        text-align: center;
        align-items: center;
    }

    .cta-note {
        white-space: normal;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 520px) {
    .cta-banner {
        padding: 0px 20px;
    }

    .cta-banner-inner {
        padding: 28px 20px;
        gap: 20px;
        flex-direction: column;
        padding-bottom: 250px;
    }

    .cta-rocket-img {
        width: 60%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .cta-btn {
        font-size: 15px;
        padding: 13px 22px;
    }

    .cta-headline {
        font-size: 21px;
    }

    .cta-subline {
        font-size: 19px;
    }

    .cta-action-col {
        padding-right: 0px;
        width:100%;
    }
}


/*Coupan Code*/

.hiw-steps-row.gray-work {
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
}
.hiw-steps-row.gray-work  .hiw-icon-circle{
    background-color: #fff;
}
.hiw-custom {
    gap: 13px;
}

.innermailbox {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #e2e2e2;
}
.innermailbox h2{

}
.coupon-sec{
    padding: 50px 10px;
}
.launching-soon {
    background: linear-gradient(#ec1c25, #b90008);
    display: flex;
    gap: 7px;
    color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    max-width: 249px;
    margin-bottom: 10px;
}
.launching-soon h2{
    margin-bottom: 0px;
    font-family: 'Mohave', sans-serif;
    text-transform: uppercase;
    font-size: 26px;
}

h4 span {
    color: #ec1c25;
}
p span{
    color: #ec1c25;
}
.featureboxs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.coupon-card {
     background: linear-gradient(#ec1c25, #b90008);
     border-radius: 20px;
     padding: 20px 40px 60px;
     color:#fff;
         text-align: center;
         position: relative;
             padding-top: 100px;
                 padding-top: 100px;
    border: 2px dotted #fff;
}
.uptobox {
    position: relative;
}
.divder-line {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.uptobox h5 {
    background-color: #db121c;
    color: #fff;
    display: inline-block;
    padding: 7px 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.tag {
    color: #EC1C24;
    background-color: #fff;
    display: inline-block;
    padding: 4px 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    position: absolute;
    left: 0px;
    right: 0px;
    width: 233px;
    margin: 0 auto;
    top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
}
h2.coupon-title {
    font-size: 60px;
    margin-bottom: 18px;
    font-weight: 700;
}
span.promo-tag {
    background-color: #fff;
    padding: 7px 25px;
    color: #cb0b12;
    font-weight: 600;
    border-radius: 56px;
}
.coupon-code h2 {
    font-size: 43px;
}

.coupon-code {
    border: 1px dotted #fff;
    border-radius: 20px;
    padding: 45px 10px;
    margin-top: -14px;
}
p.coupon-description {
    text-transform: uppercase;
    margin-top: 10px;
}
.featuresinner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 48%;
    border: 1px solid #DFDFDF;
    padding: 15px;
    border-radius: 10px;
}
.featuresinner img {
    width: 39px;
}
.featuresinner .textbox h5 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Mohave', sans-serif;
    letter-spacing: -1px;
    margin-bottom: 1px;
        font-size: 15px;
}
.featuresinner .textbox p{
    color: #141414;
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
}

section.mailbox .innermailbox h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Mohave', sans-serif;
     letter-spacing: -1px;
}
section.mailbox .innermailbox h2 span{
    color:#EC1C24;
}
section.mailbox .innermailbox .ea-privacy{
        text-align: left;
}
section.mailbox .innermailbox p{
    margin-bottom: 11px;
    font-size: 14px;
    color:#565656;
}
section.mailbox  .form-control{
    height: 60px;
    text-align: center;
    background-color: #f4f4f4;
    margin-bottom: 20px;
}
section.mailbox  .btn-primary{
    background-color: #EC1C24;
    padding: 15px 20px;
    width: 100%;
    border: 0px;
    font-size: 21px;
}
.mailbox{
    padding-bottom: 50px;
    padding-left:20px;
    padding-right:20px;
}
.coupon-how{
    padding: 20px 20px;
}
.coupon-how .hiw-custom{
    padding: 0px;
}

@media screen and (max-width: 992px) {
    .coupon-card{
            margin-top: 30px;
    }
        .coupon-sec .row {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 992px) {
  .coupon-sec{
        text-align: center;
    }
     .featuresinner .textbox h5{
        text-align: left;
    }
     .launching-soon{
        margin: 0 auto 10px;
    }
}



@media screen and (max-width: 767px) {

    .coupon-sec{
        text-align: center;
    }

    .coupon-sec .row{
        flex-direction: column-reverse;
    }
   
    .featureboxs{
        flex-direction: column;
                margin-bottom: 30px;
    }
    .featuresinner .textbox h5{
        text-align: left;
    }
    .launching-soon h2{
            font-size: 22px;
    }
    .hero-headline{
        letter-spacing: -3px;
    }
    h2.coupon-title {
    font-size: 44px;
    }
    .coupon-code h2 {
    font-size: 29px;
}
.coupon-code {
    padding: 35px 10px 20px;
}
.coupon-card{
        padding: 90px 20px 40px;
}
section.mailbox .innermailbox h2{
    text-align: center;
}
section.mailbox .innermailbox p{
    text-align: center;
}
section.mailbox .innermailbox .ea-privacy{
    display: none;
}
section.mailbox .btn-primary {
    font-size: 18px;
    border-radius: 10px;
}
.coupon-how {
    padding: 20px 20px;
}
.mailbox{
    padding: 0px 20px;
    margin-bottom: 50px;
}
.features-section {
    padding: 0px 10px 60px;
}
}
@media screen and (max-width: 550px) {
    #hero-launching img {
        width: 31px;
        margin-bottom: 9px;
    }
}

@media screen and (max-width: 400px) {
    .hiw-steps-row.gray-work{
        flex-direction:column;
    }
    .innermailbox {
    padding: 30px 10px;
    }
}

