:root {
    --gold: #C2185C;
    --gold-light: #F06AA6;
    --gold-dark: #6E0F3C;
    --dark: #FDF0F5;
    --darker: #FFFFFF;
    --card: #FFFFFF;
    --card-hover: #FFF5F9;
    --text: #2B1420;
    --text-muted: #8A6E78;
    --border: rgba(194, 24, 92, 0.22);
    --success: #2ECC71;
    --danger: #E74C3C;
    --info: #3498DB;
    --whatsapp: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

 body {
      margin: 0;
      font-family: Manrope, system-ui, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased
    }

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar .brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar .brand h1 {
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 1px;
}

.navbar .brand span {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .btn-nav {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 92, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-links-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 24px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
}

.nav-links-mobile.open {
    display: flex;
}

.nav-links-mobile a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.25s;
}

.nav-links-mobile a:hover {
    background: rgba(194, 24, 92, 0.1);
    color: var(--gold);
}

.nav-links-mobile .btn-nav {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

/* ===================== HERO + FOUNDER STRIP ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 45%, #FBDCE8 100%);
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Soft ambient floating glow */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 24, 92, 0.13) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 106, 166, 0.10) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 20px) scale(1.08);
    }
}

/* ===== FOUNDER STRIP (Premium Glass) ===== */
.founder-strip {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 56px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 44px 52px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 25px 60px -15px rgba(43, 20, 32, 0.12),
        0 0 0 1px rgba(194, 24, 92, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-strip:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 70px -15px rgba(194, 24, 92, 0.18),
        0 0 0 1px rgba(194, 24, 92, 0.12);
}

/* Avatar with soft glow */
.founder-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(145deg, #9B1C56, #5C1030);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 4px solid rgba(240, 106, 166, 0.6);
    box-shadow:
        0 12px 30px rgba(194, 24, 92, 0.35),
        0 0 40px rgba(194, 24, 92, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-strip:hover .founder-avatar {
    transform: scale(1.06);
    box-shadow:
        0 16px 40px rgba(194, 24, 92, 0.45),
        0 0 50px rgba(194, 24, 92, 0.35);
}

.founder-info {
    margin-right: auto;
    min-width: 240px;
}

.founder-info .f-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text);
}

.founder-info .f-name .verified {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(194, 24, 92, 0.5);
}

.founder-info .f-title {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 6px;
}

.founder-info .f-bio {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-top: 12px;
    max-width: 520px;
}

/* Quote */
.partner-quote {
    border-left: 3px solid var(--gold);
    padding: 6px 0 6px 20px;
    margin: 24px 0 0;
    max-width: 731px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.9;
}

/* Social icons */
.founder-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.founder-socials a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(194, 24, 92, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: 1px solid rgba(194, 24, 92, 0.12);
}

.founder-socials a svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.founder-socials a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 25px rgba(194, 24, 92, 0.35);
}

/* Hero content */
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-content h2 span {
    color: var(--gold);
    position: relative;
}

.hero-content .subtitle {
    /* font-size: 18px; */
    color: var(--text-muted);
    margin-bottom: 40px;
    /* max-width: 540px; */
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(194, 24, 92, 0.4);
}

.btn-outline {
    padding: 15px 34px;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(194, 24, 92, 0.1);
    transform: translateY(-2px);
}

/* Centered hero variant */
.hero-inner--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-inner--centered .hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-inner--centered .hero-btns {
    justify-content: center;
}

/* Stats cards */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(43, 20, 32, 0.08);
    width: 100%;
}

.hero-stat {
    flex: 1 1 160px;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(43, 20, 32, 0.07);
    transition: all 0.35s ease;
}

.hero-stat:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(194, 24, 92, 0.15);
    background: rgba(255, 255, 255, 0.92);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-lbl {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.2px;
}

/* Responsive for founder + hero */
@media (max-width: 900px) {
    .wyg-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px;
}
    .works-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .wyg-head {
   
    display: grid !important;
  
    gap: 28px;
   
}
.wyg-strip {
   
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
   
}
#partners{
    overflow-x: hidden;
}
    .founder-strip {
        padding: 34px 28px;
        gap: 28px;
    }

    .founder-avatar {
        width: 108px;
        height: 108px;
        font-size: 36px;
    }

    .founder-info .f-name {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .founder-strip {
        padding: 26px 22px;
        margin-bottom: 36px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .founder-avatar {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .founder-info {
        margin-right: 0;
        flex-basis: 100%;
    }

    .founder-info .f-name {
        font-size: 22px;
        justify-content: center;
    }

    .founder-info .f-bio,
    .partner-quote {
        max-width: 100%;
    }

    .partner-quote {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding: 16px 0 0;
        margin-top: 16px;
    }

    .founder-socials {
        flex-basis: 100%;
        justify-content: center;
    }

    .founder-socials a {
        width: 48px;
        height: 48px;
    }

    .hero-stats {
        gap: 12px;
        margin-top: 40px;
        padding-top: 28px;
    }

    .hero-stat {
        flex: 1 1 45%;
        padding: 16px 10px;
    }

    .hero-stat-num {
        font-size: 22px;
    }
}

/* ===================== REST OF YOUR STYLES (cleaned & consistent) ===================== */

.hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(43, 20, 32, 0.10);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 24px;
}

.hero-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(43, 20, 32, 0.08);
}

.hero-card .info-row:last-child {
    border-bottom: none;
}

.hero-card .info-row .label {
    color: var(--text-muted);
    font-size: 13px;
}

.hero-card .info-row .value {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.hero-card .highlight-box {
    background: rgba(194, 24, 92, 0.08);
    border: 1px solid rgba(194, 24, 92, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hero-card .highlight-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Sections */
.section {
    padding: 19px 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 27px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--text);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
     max-width: 878px;
    margin: 0 auto;
}

.section-header .gold-line {
    width: 90px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, #c7922e, transparent);
    position: relative;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 24, 92, 0.3);
    box-shadow: 0 16px 40px rgba(43, 20, 32, 0.10);
}

.benefit-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(194, 24, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* How it works */
.tag-highlight {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(194, 24, 92, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.how-it-works {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.works-content h3 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 24px;
}

.works-content h3 span {
    color: var(--gold);
}

.works-content p {
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.works-list {
    list-style: none;
}

.works-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(43, 20, 32, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.works-list li .num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(194, 24, 92, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.works-list li div strong {
    color: var(--text);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}

.works-list li div span {
    color: var(--text-muted);
    font-size: 16px;
}

/* Platform */
.platform-section {
    background: var(--dark);
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.platform-tab {
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: var(--card);
    color: var(--text-muted);
    transition: all 0.3s;
}

.platform-tab.active {
    background: rgba(194, 24, 92, 0.15);
    color: var(--gold);
}

.platform-tab:hover:not(.active) {
    color: var(--text);
}

.platform-content {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
}

.platform-content.active {
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: rgba(194, 24, 92, 0.3);
    background: var(--card-hover);
}

.feature-item .f-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item div strong {
    color: var(--text);
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.feature-item div p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(43, 20, 32, 0.06);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 24, 92, 0.3);
    box-shadow: 0 20px 50px rgba(43, 20, 32, 0.10);
}

.partner-banner {
    height: 68px;
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    position: relative;
}

.partner-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9B1C56, #5C1030);
    border: 4px solid var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    left: 24px;
    bottom: -32px;
    box-shadow: 0 6px 16px rgba(43, 20, 32, 0.15);
}

.partner-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.partner-body {
    padding: 42px 24px 26px;
}

.partner-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 3px;
}

.partner-name .verified {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.partner-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.partner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.partner-stats .stat-chip {
    background: rgba(194, 24, 92, 0.1);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.partner-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    padding-top: 14px;
    border-top: 1px solid rgba(43, 20, 32, 0.08);
}

.partner-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.partner-link:hover {
    text-decoration: underline;
}

.partners-cta {
    text-align: center;
    margin-top: 44px;
}

.partners-cta p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

/* Commercial */
.commercial-section {
    background: var(--darker);
}

.commercial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.slab-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.slab-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.slab-card:hover {
    transform: translateY(-4px);
}

.slab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.slab-card.highlight {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(194, 24, 92, 0.1);
}

.slab-card .slab-tier {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.slab-card .slab-amt {
    color: var(--gold);
    font-size: 44px;
    font-weight: 800;
    margin: 16px 0;
    font-family: 'Playfair Display', serif;
}

.slab-card .slab-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.slab-card .slab-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    background: rgba(194, 24, 92, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.terms-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
}

.terms-box h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 24px;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}

.terms-table th {
    background: rgba(194, 24, 92, 0.08);
    color: var(--gold);
    padding: 14px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(43, 20, 32, 0.06);
    font-size: 14px;
}

.terms-table tr:last-child td {
    border-bottom: none;
}

.terms-table .amt {
    color: var(--gold);
    font-weight: 700;
}

.terms-note {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.terms-note strong {
    color: var(--text);
}

/* Registration */
.registration-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.reg-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.reg-header {
    background: linear-gradient(135deg, rgba(194, 24, 92, 0.1), rgba(194, 24, 92, 0.02));
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.reg-header h3 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 8px;
}

.reg-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.reg-form {
    padding: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(194, 24, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
}

.checkbox-group label {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.checkbox-group label a {
    color: var(--gold);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.reg-submit {
    margin-top: 32px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.reg-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(194, 24, 92, 0.3);
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.login-modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 440px;
    max-width: 90%;
    padding: 48px;
    position: relative;
    box-shadow: 0 20px 60px rgba(43, 20, 32, 0.14);
}

.login-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.login-modal .lm-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-modal .lm-logo h2 {
    color: var(--gold);
    font-size: 26px;
}

.login-modal .lm-logo p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.login-modal .lm-logo .badge {
    display: inline-block;
    background: rgba(194, 24, 92, 0.1);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    margin-top: 8px;
    border: 1px solid rgba(194, 24, 92, 0.2);
}

.login-modal .form-group {
    margin-bottom: 20px;
}

.login-modal .form-group label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.login-modal .form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.login-modal .form-group input:focus {
    border-color: var(--gold);
}

.login-modal .forgot {
    text-align: right;
    margin-bottom: 20px;
}

.login-modal .forgot a {
    color: var(--gold);
    font-size: 12px;
    text-decoration: none;
}

.login-modal .forgot a:hover {
    text-decoration: underline;
}

.login-modal .btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-modal .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 92, 0.3);
}

.login-modal .register-link {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

.login-modal .register-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Contact */
.contact-section {
    background: var(--dark);
   padding: 27px 54px;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.contact-item .c-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(194, 24, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-item h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
   padding: 7px 60px;
    text-align: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer .footer-brand {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--card);
    color: var(--text);
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(43, 20, 32, 0.14);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Partner Login Page */
.login-section {
    min-height: 100vh;
    padding: 120px 60px 80px;
    background:
        radial-gradient(circle at 85% 20%, rgba(194, 24, 92, 0.10), transparent 35%),
        linear-gradient(135deg, var(--darker) 0%, var(--dark) 55%, #FBDCE8 100%);
    display: flex;
    align-items: center;
}

.login-section .wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.login-section .section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.login-section .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.login-section .seal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 24, 92, 0.12);
    border: 1px solid rgba(194, 24, 92, 0.3);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
}

.login-section .section-head h2 {
    color: var(--text);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.login-section .section-head p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.login-panel {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 20, 32, 0.10);
}

.login-info {
    padding: 55px 50px;
    background: linear-gradient(145deg, rgba(194, 24, 92, 0.10), rgba(194, 24, 92, 0.02));
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-info .eyebrow {
    justify-content: flex-start;
    margin-bottom: 12px !important;
}

.login-info h2 {
    color: var(--text);
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.login-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.login-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.login-benefits li {
    position: relative;
    color: var(--text-muted);
    font-size: 18px;
    padding: 13px 0 13px 30px;
    border-bottom: 1px solid rgba(43, 20, 32, 0.08);
}

.login-benefits li:last-child {
    border-bottom: none;
}

.login-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 11px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(194, 24, 92, 0.12);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
}

.login-form-side {
    padding: 55px 50px;
}

.login-form-side h3 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 30px;
}

.login-form .field {
    margin-bottom: 20px;
}

.login-form .field label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.login-form .field input {
    width: 100%;
    height: 50px;
    padding: 13px 16px;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.login-form .field input::placeholder {
    color: #B08B98;
}

.login-form .field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(194, 24, 92, 0.10);
}

.login-form .field input:read-only {
    background: rgba(43, 20, 32, 0.04);
    color: #888;
    cursor: not-allowed;
}

#otp_section {
    animation: otpSlideDown 0.3s ease;
}

@keyframes otpSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#otp {
    letter-spacing: 6px;
    text-align: center;
    font-size: 18px !important;
    font-weight: 700;
}

#resend_section {
    margin-top: -8px !important;
    margin-bottom: 15px;
}

.resend-btn {
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    transition: all 0.3s ease;
}

.resend-btn:not(:disabled):hover {
    color: var(--gold) !important;
    text-decoration: underline;
}

.resend-btn:disabled {
    opacity: 0.7;
}

.row-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0 22px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
}

.remember input {
    width: 17px;
    height: 17px;
    accent-color: var(--gold);
    cursor: pointer;
}

.btn-full {
    width: 100%;
}

.login-form .btn-primary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-family: 'Inter', sans-serif;
}

.login-form .btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 12px;
    margin: 28px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(43, 20, 32, 0.09);
}

.login-alt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.login-alt a {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-alt a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.login-note {
    color: #9C7E88;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    margin-top: 25px;
}

/* Brand logo override */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 150px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.logo-icon img {
    width: 140px !important;
    height: auto !important;
    max-width: none !important;
    max-height: 55px !important;
    object-fit: contain;
    display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 900px) {
    .login-section {
        padding: 110px 25px 60px;
    }

    .login-panel {
        grid-template-columns: 1fr;
    }

    .login-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 40px 35px;
    }

    .login-form-side {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .section {
        padding: 60px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .slab-cards {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .login-section {
        padding: 95px 16px 40px;
    }

    .login-section .section-head {
        margin-bottom: 30px;
    }

    .login-section .section-head h2 {
        font-size: 32px;
    }

    .login-section .section-head p {
        font-size: 14px;
    }

    .login-panel {
        border-radius: 18px;
    }

    .login-info {
        padding: 30px 24px;
    }

    .login-form-side {
        padding: 30px 24px;
    }

    .login-info h2 {
        font-size: 26px;
    }

    .login-form-side h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .login-form .field input {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .login-info,
    .login-form-side {
        padding: 25px 18px;
    }

    .login-section .section-head h2 {
        font-size: 28px;
    }
}

.quote-author {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(194, 24, 91, 0.15);
    text-align: right;
}

.quote-author strong {
    display: block;
    font-size: 16px;
    color: #c2185b;
    font-weight: 700;
    margin-bottom: 3px;
}

.quote-author span {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* =========================================================
   PARTNERSHIP BENEFITS SECTION
========================================================= */

#benefits {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(214, 51, 132, 0.06), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08), transparent 30%),
        #fffafc;
    overflow: hidden;
}

/* Subtle background decoration */
#benefits::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    top: -250px;
    left: -180px;
}

#benefits::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(207, 43, 108, 0.08);
    border-radius: 50%;
    bottom: -300px;
    right: -180px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

#benefits .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

#benefits .section-header h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #18213d;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: #c7922e;
}

#benefits .section-header p {
    margin: 0 auto;
    max-width: 800px;
    color: #697386;
    font-size: 16px;
    line-height: 1.7;
}


/* Gold line */
#benefits .gold-line {
    width: 90px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg,
            transparent,
            #c7922e,
            transparent);
    position: relative;
}

#benefits .gold-line::after {
    content: "◆";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    color: #c7922e;
    background: #fffafc;
    padding: 0 7px;
}


/* =========================================================
   FIVE CARDS - ONE LINE
========================================================= */

#benefits .benefits-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

#benefits .benefit-card {
    position: relative;

    min-width: 0;
    min-height: 390px;

    padding: 30px 24px 28px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(214, 43, 108, 0.10);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(28, 34, 55, 0.06);

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    display: flex;
    flex-direction: column;
}


/* Top gold line */
#benefits .benefit-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: linear-gradient(90deg,
            #c7922e,
            #e9c46a,
            #d62b70);

    transition: width 0.45s ease;
}


/* Shine effect */
#benefits .benefit-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 300px;

    top: -80px;
    left: -150px;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);

    transform: rotate(20deg);

    transition: left 0.7s ease;

    pointer-events: none;
}


/* =========================================================
   HOVER
========================================================= */

#benefits .benefit-card:hover {
    transform: translateY(-12px);

    border-color: rgba(199, 146, 46, 0.45);

    box-shadow:
        0 22px 55px rgba(28, 34, 55, 0.13),
        0 5px 20px rgba(199, 146, 46, 0.10);
}

#benefits .benefit-card:hover::before {
    width: 100%;
}

#benefits .benefit-card:hover::after {
    left: 120%;
}


/* =========================================================
   ICON
========================================================= */

#benefits .benefit-card .icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-bottom: 24px;

    border-radius: 16px;

    background: linear-gradient(145deg,
            #fff1f7,
            #fde3ed);

    font-size: 27px;

    box-shadow:
        inset 0 0 0 1px rgba(214, 43, 108, 0.08);

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}

#benefits .benefit-card:hover .icon {
    transform: translateY(-4px) rotate(-5deg) scale(1.08);

    background: linear-gradient(145deg,
            #fff5dc,
            #f8e3a9);

    box-shadow:
        0 8px 20px rgba(199, 146, 46, 0.18);
}


/* =========================================================
   TITLE
========================================================= */

#benefits .benefit-card h4 {
    position: relative;

    margin: 0 0 16px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;

    color: #17203c;

    transition: color 0.35s ease;
}

#benefits .benefit-card:hover h4 {
    color: #c7922e;
}


/* Small title underline */
#benefits .benefit-card h4::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 12px;

    background: #c7922e;

    transition: width 0.4s ease;
}

#benefits .benefit-card:hover h4::after {
    width: 55px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

#benefits .benefit-card p {
    margin: 0;

    color: #667085;

    font-size: 14.5px;
    line-height: 1.7;

    flex-grow: 1;
}

#benefits .benefit-card strong {
    color: #26304c;
}


/* =========================================================
   ARROW
========================================================= */

#benefits .card-arrow {
    width: 38px;
    height: 38px;

    margin-top: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d5a43c;

    border-radius: 50%;

    color: #c7922e;

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
}

#benefits .benefit-card:hover .card-arrow {
    transform: translateX(6px);

    background: #c7922e;

    color: #fff;

    box-shadow:
        0 6px 18px rgba(199, 146, 46, 0.25);
}


/* =========================================================
   FIFTH / FEATURED CARD
========================================================= */

#benefits .benefit-card.featured {
    background:
        radial-gradient(circle at 100% 0%,
            rgba(210, 155, 49, 0.30),
            transparent 35%),
        linear-gradient(145deg,
            #20294c,
            #252043 60%,
            #3d1838);

    border-color: rgba(212, 164, 65, 0.5);

    box-shadow:
        0 18px 45px rgba(31, 27, 63, 0.22);
}

#benefits .benefit-card.featured h4 {
    color: #fff;
}

#benefits .benefit-card.featured h4::after {
    background: #e3b44e;
}

#benefits .benefit-card.featured p {
    color: rgba(255, 255, 255, 0.78);
}

#benefits .benefit-card.featured strong {
    color: #fff;
}

#benefits .benefit-card.featured .icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

#benefits .benefit-card.featured .card-arrow {
    background: #e1b24c;
    color: #20294c;
    border-color: #e1b24c;
}

#benefits .benefit-card.featured:hover {
    transform: translateY(-14px) scale(1.015);

    box-shadow:
        0 28px 65px rgba(31, 27, 63, 0.30),
        0 0 30px rgba(212, 164, 65, 0.15);
}

#benefits .benefit-card.featured:hover .card-arrow {
    transform: translateX(6px) rotate(-5deg);
}


/* =========================================================
   DESKTOP - FORCE ONE LINE
========================================================= */

@media (min-width: 1200px) {

    #benefits .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    #benefits .benefit-card {
        min-height: 400px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    #benefits .benefits-grid {
        grid-template-columns: repeat(5, minmax(170px, 1fr));
        gap: 12px;
    }

    #benefits .benefit-card {
        padding: 24px 18px;
        min-height: 420px;
    }

    #benefits .benefit-card h4 {
        font-size: 18px;
    }

    #benefits .benefit-card p {
        font-size: 13px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    #benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #benefits .benefit-card.featured {
        grid-column: span 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #benefits {
        padding: 65px 15px;
    }

    #benefits .section-header h2 {
        font-size: 32px;
    }

    #benefits .section-header p {
        font-size: 14px;
    }

    #benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #benefits .benefit-card {
        min-height: auto;
        padding: 26px 22px;
    }

    #benefits .benefit-card.featured {
        grid-column: auto;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    #benefits .benefit-card,
    #benefits .benefit-card::before,
    #benefits .benefit-card::after,
    #benefits .icon,
    #benefits .card-arrow {
        transition: none;
    }
}

/* ==========================================
   PARTNERS SLICK SLIDER
========================================== */

.partners-slider {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 45px 50px;
    box-sizing: border-box;
}

.partner-slide {
    padding: 0 7px;
    box-sizing: border-box;
}


/* ==========================================
   PARTNER CARD
========================================== */

.partner-card {
    position: relative;
    min-height: 305px;
    background: #fff;

    /* Rounded corners */
    border-radius: 18px;

    /* IMPORTANT:
       Keep border on entire card */
    border: 1px solid #f2b8d0;

    /* Prevent banner from overflowing border */
    overflow: hidden;

    box-shadow: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.partner-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(190, 25, 100, 0.12);
}


/* ==========================================
   PINK / MAGENTA BANNER
========================================== */

.partner-banner {
    position: relative;

    height: 68px;

    background: linear-gradient(90deg,
            #c81761 0%,
            #d72b78 45%,
            #ed5b9b 100%);

    display: flex;
    align-items: center;
    justify-content: flex-start;

    /* Only top corners */
    border-radius: 17px 17px 0 0;

    /* Prevent any strange border showing */
    border: none;
}


/* ==========================================
   VERIFIED BADGE
========================================== */

.partner-badge {
    position: absolute;

    top: 9px;
    right: 15px;

    padding: 7px 13px;

    border-radius: 30px;

    background: #fff;
    border: none;

    color: #8e174c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;

    text-transform: uppercase;

    z-index: 5;
}


/* ==========================================
   AVATAR
========================================== */

.partner-avatar {
    position: absolute;

    left: 25px;
    bottom: -34px;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #86103f,
            #64102f);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;

    /* White ring */
    border: 4px solid #fff;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.18);

    z-index: 10;

    box-sizing: border-box;
}


/* ==========================================
   CARD BODY
========================================== */

.partner-body {
    padding: 46px 24px 20px;

    text-align: left;

    background: #fff;
}


/* ==========================================
   PARTNER NAME
========================================== */

.partner-name {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 500;

    color: #333;

    margin: 0 0 7px;
}


/* ==========================================
   VERIFIED ICON
========================================== */

.verified {
    display: inline-flex;

    width: 16px;
    height: 16px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c81761;
    color: #fff;

    font-size: 9px;

    vertical-align: middle;
}


/* ==========================================
   PARTNER TITLE
========================================== */

.partner-title {
    color: #888;

    font-size: 13px;

    margin: 0 0 10px;
}


/* ==========================================
   LOCATION
========================================== */

.partner-location {
    color: #777;

    font-size: 13px;

    margin: 0 0 14px;
}


/* ==========================================
   STATS
========================================== */

.partner-stats {
    display: flex;

    justify-content: flex-start;
    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin: 0 0 15px;
}

.stat-chip {
    background: #fce8f1;

    color: #d01864;

    border-radius: 20px;

    padding: 7px 12px;

    font-size: 10px;
    font-weight: 600;
}


/* ==========================================
   BIO
========================================== */

.partner-bio {
    margin: 0;

    padding-top: 15px;

    border-top: 1px solid #eeeeee;

    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================
   SLICK ARROWS
========================================== */

.partners-slider .slick-prev,
.partners-slider .slick-next {
    width: 40px;
    height: 40px;

    z-index: 20;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #f0d2df;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.10);
}

.partners-slider .slick-prev {
    left: 0;
}

.partners-slider .slick-next {
    right: 0;
}

.partners-slider .slick-prev:hover,
.partners-slider .slick-next:hover {
    background: #fff;

    border-color: #c81761;
}

.partners-slider .slick-prev:before,
.partners-slider .slick-next:before {
    color: #c81761;

    font-size: 19px;

    opacity: 1;
}


/* ==========================================
   SLICK DOTS
========================================== */

.partners-slider .slick-dots {
    bottom: 0;
}

.partners-slider .slick-dots li {
    margin: 0 3px;
}

.partners-slider .slick-dots li button:before {
    color: #d7d7d7;

    font-size: 8px;

    opacity: 1;
}

.partners-slider .slick-dots li.slick-active button:before {
    color: #c81761;

    font-size: 9px;
}


/* ==========================================
   RESPONSIVE - 1200px
========================================== */

@media (max-width: 1200px) {

    .partners-slider {
        padding-left: 35px;
        padding-right: 35px;
    }

}


/* ==========================================
   RESPONSIVE - 768px
========================================== */

@media (max-width: 768px) {

    .partners-slider {
        padding-left: 25px;
        padding-right: 25px;
    }

    .partner-slide {
        padding: 0 7px;
    }

    .partner-body {
        padding: 45px 20px 20px;
    }

}


/* ==========================================
   RESPONSIVE - 576px
========================================== */

@media (max-width: 576px) {

    .partners-slider {
        padding-left: 20px;
        padding-right: 20px;
    }

    .partner-card {
        min-height: 300px;
    }

    .partner-avatar {
        left: 20px;

        width: 64px;
        height: 64px;

        font-size: 22px;
    }

    .partner-body {
        padding: 42px 18px 18px;
    }

    .partner-name {
        font-size: 17px;
    }

}


/* ==========================================
   IMPORTANT BORDER FIX
========================================== */

/*
   The border belongs to the CARD, not the banner.

   This prevents the top border from appearing
   incorrectly or creating a double/uneven line.
*/

.partner-card {
    border: 1px solid #f2b8d0;
    border-radius: 18px;
    overflow: hidden;
}

.partner-banner {
    border: 0;
    border-radius: 17px 17px 0 0;
}


/* ==========================================
   SLICK STRUCTURE FIX
========================================== */

.partners-slider .slick-list {
    overflow: hidden;
}

.partners-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.partners-slider .slick-slide {
    height: auto;
}

.partners-slider .slick-slide>div {
    height: 100%;
}

.partner-slide {
    height: 100%;
}

.partner-card {
    height: 100%;
    box-sizing: border-box;
}

/* =========================
   Referral Earnings Calculator
   ========================= */

* {
    box-sizing: border-box;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #a66a00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}


section>p {
    max-width: 680px;
    margin: 0 0 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.65;
}

/* Calculator card */
.calc {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #e8e1d5;
    border-radius: 24px;
    background:
        linear-gradient(145deg, #fffdf9 0%, #fff 55%, #faf6ee 100%);
    box-shadow:
        0 20px 50px rgba(40, 30, 10, 0.08),
        0 2px 8px rgba(40, 30, 10, 0.04);
}

.calc::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(220, 172, 72, 0.1);
    pointer-events: none;
}

/* Question */
.q {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: #777;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Earnings output */
.out {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.v {
    color: #111;
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
}

.lab {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

/* Slider */
.slwrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

#sl {
    width: 100%;
    height: 8px;
    margin: 0;
    border-radius: 99px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background:
        linear-gradient(135deg, #c2185c, var(--gold-light));
}

/* Chrome / Safari */
#sl::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #b67b12;
    box-shadow:
        0 2px 8px rgba(80, 50, 0, 0.25),
        0 0 0 1px rgba(100, 70, 20, 0.15);
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.15s ease;
}

#sl::-webkit-slider-thumb:hover {
    transform: scale(1.12);
}

/* Firefox */
#sl::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #b67b12;
    box-shadow: 0 2px 8px rgba(80, 50, 0, 0.25);
    cursor: pointer;
}

#sl:focus-visible {
    box-shadow: 0 0 0 4px rgba(182, 123, 18, 0.18);
}

/* Number input */
#cnt {
    width: 100px;
    height: 46px;
    flex: 0 0 100px;
    padding: 0 12px;
    border: 1px solid #dcd5c9;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #171717;
    font-size: 16px;
    font-weight: 750;
    text-align: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#cnt:focus {
    border-color: #b9821b;
    box-shadow: 0 0 0 4px rgba(185, 130, 27, 0.12);
}

/* Preset buttons */
.presets {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.presets button {
    min-width: 58px;
    padding: 10px 15px;
    border: 1px solid #ded7cb;
    border-radius: 999px;
    outline: none;
    background: #fff;
    color: #555;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.presets button:hover {
    border-color: #c4953b;
    color: #9a670d;
    transform: translateY(-1px);
}

.presets button:focus-visible {
    box-shadow: 0 0 0 4px rgba(185, 130, 27, 0.12);
}

.presets button.active,
.presets button.selected {
    border-color: #b67b12;
    background: #b67b12;
    color: #fff;
}

/* Tier message */
.tierbar {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    padding: 16px 18px;
    border: 1px solid #ead7aa;
    border-radius: 14px;
    background: #fff8e8;
    color: #75500d;
    font-size: 14px;
    line-height: 1.55;
}

.tierbar b {
    color: #5d3e06;
}

/* Calculation note */
.calcnote {
    position: relative;
    z-index: 1;
    margin: 18px 0 0 !important;
    max-width: none !important;
    color: #888 !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 640px) {
    section {
        padding: 32px 16px;
    }

    .calc {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .out {
        display: block;
        margin-bottom: 28px;
    }

    .v {
        display: block;
        margin-bottom: 8px;
        font-size: 42px;
    }

    .lab {
        display: block;
        text-align: left;
    }

    .slwrap {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    #cnt {
        width: 100%;
        flex-basis: 46px;
    }

    .presets {
        gap: 7px;
    }

    .presets button {
        flex: 1 0 calc(25% - 7px);
        min-width: 0;
        padding: 9px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


/* =========================
   Design Sales Calculator
   ========================= */



.section .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #c2185c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section h2 {
    margin: 0 0 10px;
    color: #111;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
    font-size-adjust: cap-height 0.5;
}

.section>p {
    max-width: 720px;
    margin: 0 0 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.65;
}

.section>p strong {
    color: #333;
    font-weight: 750;
}

/* Calculator */
.calc {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #e8e1d5;
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            #fffdf9 0%,
            #ffffff 55%,
            #faf6ee 100%);
    box-shadow:
        0 20px 50px rgba(40, 30, 10, 0.08),
        0 2px 8px rgba(40, 30, 10, 0.04);
}

.calc::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(220, 172, 72, 0.10);
    pointer-events: none;
}

/* "You earn" */
.q {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: #777;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Main earnings */
.out {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.v {
    color: #111;
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
}

.lab {
    color: #777;
    font-size: 14px;
    font-weight: 650;
    text-align: right;
    white-space: nowrap;
}

/* Slider + number input */
.slwrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

#dsl {
    width: 100%;
    height: 8px;
    margin: 0;
    border-radius: 99px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;

    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

/* Chrome / Safari slider */
#dsl::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #b67b12;
    box-shadow:
        0 2px 8px rgba(80, 50, 0, 0.25),
        0 0 0 1px rgba(100, 70, 20, 0.15);
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.15s ease;
}

#dsl::-webkit-slider-thumb:hover {
    transform: scale(1.12);
}

/* Firefox slider */
#dsl::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #b67b12;
    box-shadow: 0 2px 8px rgba(80, 50, 0, 0.25);
    cursor: pointer;
}

#dsl:focus-visible {
    box-shadow: 0 0 0 4px rgba(185, 130, 27, 0.14);
}

/* Number field */
#dcnt {
    width: 110px;
    height: 46px;
    flex: 0 0 110px;
    padding: 0 12px;
    border: 1px solid #dcd5c9;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 16px;
    font-weight: 750;
    text-align: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#dcnt:focus {
    border-color: #b9821b;
    box-shadow: 0 0 0 4px rgba(185, 130, 27, 0.12);
}

/* Preset buttons */
.presets {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.presets button {
    min-width: 62px;
    padding: 10px 15px;
    border: 1px solid #ded7cb;
    border-radius: 999px;
    outline: none;
    background: #fff;
    color: #555;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.presets button:hover {
    border-color: #c4953b;
    background: #fffaf0;
    color: #98670f;
    transform: translateY(-1px);
}

.presets button:focus-visible {
    box-shadow: 0 0 0 4px rgba(185, 130, 27, 0.12);
}

/* Supports both .on and .active */
.presets button.on,
.presets button.active,
.presets button.selected {
    border-color: #b67b12;
    background: #b67b12;
    color: #fff;
    box-shadow: 0 4px 10px rgba(182, 123, 18, 0.18);
}

/* =========================
   Breakdown
   ========================= */

.breakdown {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 6px;
    border: 1px solid #e8e1d5;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
}

.breakdown>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 54px;
    padding: 13px 18px;
    border-bottom: 1px solid #eee9e1;
}

.breakdown>div:last-child {
    border-bottom: 0;
}

/* Labels */
.bk {
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

/* Values */
.bv {
    color: #222;
    font-size: 15px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

/* Highlight commission */
.bv.hi {
    color: #a66a00;
    font-size: 17px;
}

/* Highlight entire commission row */
.breakdown>div:last-child {
    background: #fff9ec;
}

/* Calculation note */
.calcnote {
    position: relative;
    z-index: 1;
    max-width: none !important;
    margin: 18px 0 0 !important;
    color: #888 !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 640px) {
    .section {
        padding: 32px 16px;
    }

    .calc {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .out {
        display: block;
        margin-bottom: 28px;
    }

    .v {
        display: block;
        margin-bottom: 8px;
        font-size: 42px;
    }

    .lab {
        display: block;
        text-align: left;
    }

    .slwrap {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    #dcnt {
        width: 100%;
        flex-basis: 46px;
    }

    .presets {
        gap: 7px;
    }

    .presets button {
        flex: 1 0 calc(25% - 7px);
        min-width: 0;
        padding: 9px 8px;
    }

    .breakdown>div {
        min-height: 52px;
        padding: 12px 14px;
    }

    .bk,
    .bv {
        font-size: 13px;
    }

    .bv.hi {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .v {
        font-size: 36px;
    }

    .presets button {
        flex-basis: calc(33.333% - 7px);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

 .wyg-section {
      background: linear-gradient(180deg, #fffaf7 0%, #fff 100%); 
      position: relative;
      overflow: hidden;
    }

    .wyg-section:before {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      right: -225px;
      top: -185px;
      border-radius: 50%;
      border: 1px solid rgba(199, 162, 106, .22);
      box-shadow: 0 0 0 55px rgba(199, 162, 106, .045), 0 0 0 110px rgba(199, 162, 106, .022);
    }

    .wyg-section:after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      left: -170px;
      bottom: -180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(195, 45, 114, .08), transparent 68%);
    }

    .wyg-head {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 34px;
    }

    .wyg-head h2 {
      margin-bottom: 9px
    }

    .wyg-copy {
      max-width: 720px;
      color: var(--muted);
      font-size: 15px;
    }

    .wyg-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      white-space: nowrap;
      background: var(--ink);
     
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .7px;
      text-transform: uppercase;
      box-shadow: 0 12px 28px rgba(23, 11, 18, .12);
    }

    .wyg-strip-icon {
    font-size: 18px;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 6px;
}

    .wyg-badge i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 0 4px rgba(231, 201, 149, .12);
    }

    .wyg-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .wyg-card {
      background: rgba(255, 255, 255, .96);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 21px 19px;
      min-height: 178px;
      box-shadow: 0 9px 27px rgba(50, 10, 32, .04);
      position: relative;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .wyg-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 17px 38px rgba(50, 10, 32, .08);
      border-color: #e3c0ce;
    }

    .wyg-card:after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -35px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(195, 45, 114, .04);
    }

    .wyg-card.wyg-dark {
      background: linear-gradient(145deg, #210a16, #5a1031);
      border-color: rgba(231, 201, 149, .4);
      color: #fff;
    }

    .wyg-card.wyg-dark:after {
      background: rgba(231, 201, 149, .08)
    }

    .wyg-icon {
      width: 45px;
      height: 45px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, #fff5f9, #f8e6ef);
      border: 1px solid #efdce5;
      color: var(--wine);
      margin-bottom: 14px;
    }

    .wyg-icon svg {
      width: 22px;
      height: 22px
    }

    .wyg-dark .wyg-icon {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .12);
      color: #ffd99b;
    }

    .wyg-card h3 {
      margin: 0 0 5px;
      font-size: 18px;
      line-height: 1.25;
    }

    .wyg-card p {
    
margin: 0;
    
color: var(--muted);
    
font-size: 15px;
    
line-height: 25px;
    }

    .wyg-dark p {
      color: #d9c7cf
    }

    .wyg-strip {
      position: relative;
      z-index: 2;
      margin-top: 19px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(50, 10, 32, .035);
    }

    .wyg-strip-item {
      text-align: center;
      padding: 15px 10px;
      background: #fff;
    }

    .wyg-strip-icon {
      font-size: 18px;
      color: var(--rose);
      line-height: 1;
      margin-bottom: 6px
    }

    .wyg-strip-item b {
      display: block;
      font-size: 18px;
      line-height: 1.25
    }

    .wyg-strip-item span {
      display: block;
      font-size: 15px;
      color: var(--muted);
      margin-top: 3px
    }

    .wyg-bottom {
      position: relative;
      z-index: 2;
      margin-top: 21px;
      padding: 19px 22px;
      background: linear-gradient(90deg, #fff, #fff4f8, #fff);
      border: 1px solid #ead9e2;
      border-radius: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .wyg-bottom strong {
      display: block;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 22px;
      line-height: 1.2;
      color: var(--wine);
    padding-bottom: 10px;
    }

    .wyg-bottom span {
      color: var(--muted);
      font-size: 15px;
    }

    .wyg-bottom .btn {
      flex: 0 0 auto
    }
