* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #004d43;
    --accent: #b5a169;
    --light: #f9f8f6;
    --gray: #6b6b6b;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
    line-height: 1.7;
}

section,
footer,
nav {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4vw;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: relative;
}

.nav-links>li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-item-dropdown>a::after {
    content: '';
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.nav-item-dropdown:hover>a::after {
    transform: rotate(-135deg);
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-nav li {
    padding: 0;
}

.sub-nav li a {
    padding: 12px 20px;
    display: block;
    color: #444;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 400;
}

.sub-nav li a:hover {
    background: #f5f5f5;
    color: var(--primary);
    padding-left: 26px;
}

.nav-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

/* HERO */
/* Hero Section */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 120px 0;
}

/* Video */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    margin: auto;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    color: #d4b06a;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero h1 em {
    color: #d4b06a;
    font-style: italic;
}

.hero-sub {
    max-width: 760px;
    margin: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    line-height: 1.9;
}

/* Buttons */

.hero-btns {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.sales-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover;
    min-height: 60vh;
    padding: 180px 0 100px;
}

.sales-hero .hero-content {
    text-align: left;
    margin: 0;
    max-width: 860px;
}

.sales-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.sales-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sales-breadcrumb a:hover {
    color: #d4b06a;
}

.sales-breadcrumb span[aria-current="page"] {
    color: #d4b06a;
    font-weight: 700;
}

.sales-hero .hero-sub {
    margin: 0;
}

.sales-pill-row {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sales-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.sales-pill i {
    margin-right: 8px;
    color: #d4b06a;
}

.sales-spotlight {
    background: #fff;
}

.sales-opportunity-layout {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 64px;
    align-items: center;
}

.sales-opportunity-content .section-title {
    margin-bottom: 34px;
}

.sales-opportunity-content .section-title h2 {
    color: #061b44;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    line-height: 1.12;
}

.sales-copy {
    display: grid;
    gap: 22px;
    max-width: 660px;
    margin-bottom: 36px;
}

.sales-copy p {
    margin: 0;
    color: #26364d;
    font-size: 1.05rem;
    line-height: 1.85;
}

.sales-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-bottom: 34px;
}

.sales-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sales-benefit span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: #f3ebdc;
    color: #c8a258;
    font-size: 15px;
}

.sales-benefit h3 {
    color: #111111;
    font-size: 18px;
    margin-bottom: 10px;
}

.sales-benefit p {
    color: #667085;
    line-height: 1.65;
    margin: 0;
}

.sales-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 17px 28px;
    border-radius: 999px;
    background: #d2ae62;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.sales-open-btn:hover {
    transform: translateY(-3px);
    background: #c49b49;
}

.sales-photo-card {
    position: relative;
    min-height: 600px;
    border-radius: 28px;
}

.sales-photo-card img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.08);
}

.sales-overlap-card {
    position: absolute;
    right: -32px;
    bottom: -32px;
    background: #0c0c0f;
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    width: 260px;
}

.sales-overlap-card strong {
    display: block;
    color: #d2ae62;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 12px;
}

.sales-overlap-card p {
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
}

.sales-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sales-kpi {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.sales-kpi strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sales-kpi span {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.btn-primary {
    background: #d4b06a;
    color: #111;
    border: none;
    padding: 18px 34px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 34px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

/* Responsive */

@media(max-width:991px) {

    .sales-opportunity-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sales-photo-card {
        min-height: 460px;
    }

    .sales-photo-card img {
        height: 460px;
    }

    .sales-overlap-card {
        right: 20px;
        bottom: 20px;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-sub {
        font-size: 18px;
    }
}

@media(max-width:576px) {

    .sales-benefits {
        grid-template-columns: 1fr;
    }

    .sales-photo-card,
    .sales-photo-card img {
        min-height: 380px;
        height: 380px;
    }

    .sales-overlap-card {
        left: 20px;
        right: 20px;
        width: auto;
        padding: 24px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

/* SECTION */

.section {
    padding: 120px 0;
}

.section-title span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 700;
}

.section-title h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    max-width: 900px;
}

.section-title p {
    margin-top: 20px;
    max-width: 750px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* FEATURES */

.features-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 28px;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 26px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    margin-bottom: 10px;
}

.feature-link {
    text-decoration: none;
    color: #c8a96b;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.feature-link span {
    margin-left: 8px;
}

/* CATEGORIES */

.categories {
    background: #faf8f4;
}

.categories-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 3rem;
    border-radius: 28px;
    transition: 0.4s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.category-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.category-card p {
    color: #666;
    margin-bottom: 10px;
}

/* JOBS */
.jobs-section {
    background: #ffff;
}

.jobs-section .section-title {
    margin-bottom: 50px;
}

.jobs-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 13px 24px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background: #b9975b;
    color: #111;
}

.jobs-section .section-title span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b9975b;
    margin-bottom: 18px;
    font-weight: 600;
}

.jobs-section .section-title h2 {
    font-size: 58px;
    color: #111;
    font-weight: 600;
    line-height: 1.1;
}

/* Layout */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Card */
.job-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 28px;
    padding: 35px;
    transition: 0.35s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: #d8c2a2;
}

/* Top */
.job-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.job-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #f4eee3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-icon i {
    color: #b9975b;
    font-size: 22px;
}

/* Badge */
.job-category {
    padding: 8px 16px;
    border-radius: 30px;
    background: #f5efe5;
    color: #7b6440;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Title */
.job-card h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Description */
.job-card p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Meta */
.job-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.job-meta span {
    color: #777;
    font-size: 15px;
}

.job-meta i {
    color: #b9975b;
    margin-right: 10px;
}

/* Bottom */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #f1ece5;
}

.job-type {
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
}

.apply-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background: #b9975b;
    color: #111;
}

/* Responsive */
@media(max-width:991px) {

    .jobs-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .jobs-section .section-title h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .jobs-section .section-title h2 {
        font-size: 34px;
    }

    .job-card {
        padding: 28px;
    }

    .job-card h3 {
        font-size: 25px;
    }
}

/* AARP */
/* =========================
   AARP SECTION
========================= */

.aarp-section{
    padding:100px 0;
    background:#f5f3ef;
    overflow:hidden;
}

.aarp-wrapper{
    background:#fff;
    border-radius:32px;
    padding:60px;
    display:flex;
    align-items:center;
    gap:70px;
    border:1px solid #ece7df;
    position:relative;
    transition:0.4s ease;
}

.aarp-wrapper:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

/* Left */

.aarp-logo{
    flex:0 0 280px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.aarp-logo::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:#f7f1e8;
    border-radius:50%;
    z-index:0;
}

.aarp-logo img{
    width:220px;
    position:relative;
    z-index:1;
}

/* Right */

.aarp-content{
    flex:1;
}

.aarp-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b9975b;
    margin-bottom:20px;
    font-weight:700;
}

.aarp-content h2{
    font-size:56px;
    line-height:1.1;
    margin-bottom:24px;
    color:#111;
    font-weight:600;
    max-width:900px;
}

.aarp-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    max-width:1000px;
    margin-bottom:35px;
}

/* Button */

.aarp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 30px;
    border-radius:60px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
}

.aarp-btn i{
    transition:0.3s ease;
}

.aarp-btn:hover{
    background:#b9975b;
    color:#111;
}

.aarp-btn:hover i{
    transform:translateX(4px);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

    .aarp-wrapper{
        flex-direction:column;
        text-align:center;
        padding:50px 35px;
        gap:40px;
    }

    .aarp-content h2{
        font-size:42px;
        margin:auto auto 24px;
    }

    .aarp-content p{
        margin:auto auto 30px;
    }
}

@media(max-width:576px){

    .aarp-section{
        padding:70px 0;
    }

    .aarp-wrapper{
        padding:35px 25px;
        border-radius:24px;
    }

    .aarp-logo{
        flex:unset;
    }

    .aarp-logo::before{
        width:200px;
        height:200px;
    }

    .aarp-logo img{
        width:170px;
    }

    .aarp-content h2{
        font-size:32px;
    }

    .aarp-content p{
        font-size:16px;
        line-height:1.8;
    }

    .aarp-btn{
        width:100%;
        justify-content:center;
    }
}

/* TRUST */
.trust-section {
    background: #faf8f4;
    padding: 120px 0;
}

.trust-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.trust-left {
    flex: 1;
}

.trust-right {
    flex: 1;
    max-width: 520px;
}

.trust-subtitle {
    display: block;
    color: #c6a76a;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
}

.trust-left h2 {
    font-size: 64px;
    line-height: 1.1;
    color: #111;
    font-weight: 600;
}

.trust-left h2 span {
    color: #c6a76a;
}

.trust-right p {
    color: #777;
    line-height: 2;
    font-size: 17px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.trust-card {
    background: #fff;
    border: 1px solid #ece6dd;
    border-radius: 26px;
    padding: 40px 32px;
    transition: 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: #d7b06e;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-size: 52px;
    color: #c6a76a;
    margin-bottom: 14px;
    font-weight: 700;
}

.trust-card span {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    font-weight: 600;
    margin-bottom: 22px;
}

.trust-card p {
    color: #777;
    line-height: 1.9;
    font-size: 15px;
}

.trust-quote {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid #ece6dd;
}

.quote-line {
    width: 4px;
    height: 160px;
    background: #c6a76a;
    border-radius: 10px;
}

.quote-content i {
    font-size: 42px;
    color: #c6a76a;
    margin-bottom: 24px;
}

.quote-content p {
    font-size: 34px;
    line-height: 1.6;
    color: #111;
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 20px;
}

.quote-content span {
    color: #c6a76a;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

@media(max-width:991px) {

    .trust-header {
        flex-direction: column;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-left h2 {
        font-size: 48px;
    }

    .trust-quote {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-line {
        width: 100%;
        height: 4px;
    }

    .quote-content p {
        font-size: 28px;
    }
}

@media(max-width:576px) {

    .trust-section {
        padding: 80px 0;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .trust-left h2 {
        font-size: 36px;
    }

    .quote-content p {
        font-size: 22px;
    }

    .trust-quote {
        padding: 35px 25px;
    }
}

/* BRANDS */
.brands-section {
    background: var(--primary);
    padding: 100px 0;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.sub-title {
    color: #c9a96b;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.brands-header h2 {
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
}

.brands-header h2 span {
    color: #c9a96b;
}


.right-content p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
}

.growth-learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.growth-learning-card {
    background: #f7f7f7;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    min-height: 350px;
    padding: 42px 38px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.growth-learning-card:hover {
    transform: translateY(-8px);
    border-color: #c9a96b;
}

.growth-learning-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eee7d8;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 28px;
}

.growth-learning-card h3 {
    color: #111111;
    font-size: 25px;
    line-height: 1.25;
    max-width: 320px;
    margin-bottom: 22px;
}

.growth-learning-card p {
    color: #8f98aa;
    font-size: 17px;
    line-height: 1.65;
    max-width: 330px;
    margin: 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
}

.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.brand-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: #c9a96b;
}

.brand-image {
    position: relative;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

.brand-card:hover img {
    transform: scale(1.08);
}

.large-card .brand-image img {
    height: 500px;
}

.brand-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c9a96b;
    color: #111;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-content {
    padding: 35px;
}

.brand-subtitle {
    color: #c9a96b;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.brand-content h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 18px;
    font-weight: 600;
}

.brand-content p {
    color: #b8b8b8;
    line-height: 1.9;
    margin-bottom: 25px;
}

.brand-content a {
    text-decoration: none;
    color: #c9a96b;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-content a span {
    margin-left: 8px;
}

@media(max-width:991px) {

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .growth-learning-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .right-grid {
        grid-template-columns: 1fr;
    }

    .brands-header {
        flex-direction: column;
    }

    .brands-header h2 {
        font-size: 46px;
    }
}

@media(max-width:576px) {

    .brands-section {
        padding: 70px 0;
    }

    .brands-header h2 {
        font-size: 36px;
    }

    .brand-content {
        padding: 25px;
    }

    .brand-content h3 {
        font-size: 28px;
    }

    .growth-learning-card {
        min-height: auto;
        padding: 34px 24px;
    }

    .large-card .brand-image img {
        height: 320px;
    }
}

/* TESTIMONIALS */

.testimonials {
    background: #faf8f4;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonials-title-row>div {
    flex: 0 1 55%;
}

.testimonials .section-title span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a46d;
    margin-bottom: 18px;
    font-weight: 600;
}

.testimonials .section-title h2 {
    font-size: 58px;
    color: #111;
    font-weight: 600;
    line-height: 1.1;
}

.testimonials .section-title p {
    flex: 0 1 45%;
    max-width: 620px;
    margin: 0;
    font-size: 18px;
    color: #777;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: #d8b072;
}

.quote-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #f8f1e4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.quote-box i {
    font-size: 24px;
    color: #c5a46d;
}

.stars {
    color: #d8b072;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 4px;
    font-weight: 600;
}

.user-info span {
    font-size: 14px;
    color: #888;
}

@media(max-width:991px) {

    .testimonials .section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonials-title-row>div,
    .testimonials .section-title p {
        flex: none;
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials .section-title h2 {
        font-size: 42px;
    }
}




/* CTA Section */

.cta {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.cta-wrapper {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    position: relative;
}

.cta-content {
    flex: 1;
    max-width: 900px;
}

.cta-subtitle {
    display: inline-block;
    color: #c8a96b;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}

.cta h2 {
    color: #fff;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c8a96b;
    color: #111;
    border: none;
    padding: 18px 34px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 34px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

/* Stats */

.cta-stats {
    width: 420px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #c8a96b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #c8a96b;
}

.stat-box h3 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive */

@media(max-width:991px) {

    .cta-wrapper {
        flex-direction: column;
        padding: 50px 35px;
    }

    .cta h2 {
        font-size: 52px;
    }

    .cta-stats {
        width: 100%;
    }
}

@media(max-width:576px) {

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 38px;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 28px;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

/* FOOTER */

footer {
    background: #002f2a;
    padding: 90px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    color: #fff;
    font-size: 30px;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .hero-inner,
    .features-grid,
    .categories-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        height: 600px;
        min-height: auto;
    }

}

@media(max-width:768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .sub-nav {
        display: none;
    }

    .features-grid,
    .categories-grid,
    .testimonials-grid,
    .footer-grid,
    .sales-split-gallery,
    .sales-kpi-strip {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        height: 450px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .sales-hero {
        min-height: 20vh;
        padding: 160px 0 40px;
    }

    .sales-hero .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .sales-overlap-card {
        max-width: calc(100% - 48px);
        left: 24px;
        right: 24px;
    }

}

.section-1 {
    position: relative;
    z-index: 1;
}

.section-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #b5a169;
    opacity: 0.3;
    z-index: -1;
}
