@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-body: #44414d;
    --color-title: #1e1b26;
    --color-cta: #383cfc;
    --color-dark: #120535;
    --color-gradient-start: #171bef;
    --color-gradient-end: #cd5df9;
    --color-white: #ffffff;
    --color-light-bg: #f7f7fb;
    --font-family: 'Montserrat', sans-serif;
    --container-max: 1440px;
    --container-px: 64px;
    --container-px-tablet: 32px;
    --container-px-mobile: 20px;
    --radius-pill: 999px;
    --radius-card: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 170%;
    color: var(--color-body);
    background: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-cta);
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

.btn-primary:hover {
    background: #2a2edf;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 60, 252, 0.4);
}

.btn-primary .arrow {
    transition: transform var(--transition);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-primary.navbar-btn {
    padding: 12px 24px !important;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(18, 5, 53, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img {
    height: 64px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    letter-spacing: -0.16px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 2px;
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--color-white);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta .btn-primary {
    padding: 12px 24px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    background: var(--color-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}

.section-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.section-curve svg {
    display: block;
    width: 100%;
    height: 40px;
    /* Subtle height as requested */
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 60, 252, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-border-tl,
.hero-border-tr,
.hero-border-bl,
.hero-border-br {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.hero-border-tl {
    top: 80px;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-border-tr {
    top: 80px;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-border-bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-border-br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 104%;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 28px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: var(--color-white);
    padding: 4px 12px 4px 4px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition);
    letter-spacing: -0.16px;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 135%;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.16px;
}

.hero-description strong {
    font-weight: 700;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 36px;
}

/* EXPERT CARDS */
.expert-cards-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.expert-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #2A1E49;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 8px 32px 8px 8px;
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
    transition: all var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.expert-card:hover {
    background: rgba(24, 16, 56, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.03);
}

.expert-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: none;
}

.expert-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.expert-card-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.16px;
    line-height: 100%;
}

.platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    ;
    flex-shrink: 0;
}

.platform-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.expert-card-stat {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.14px;
    line-height: 100%;
    margin-top: 8px;
}

.expert-card--tl {
    top: 18%;
    left: 3%;
    animation-delay: 0s;
}

.expert-card--tr {
    top: 18%;
    right: 3%;
    animation-delay: 1.5s;
}

.expert-card--bl {
    bottom: 12%;
    left: 3%;
    animation-delay: 3s;
}

.expert-card--br {
    bottom: 12%;
    right: 3%;
    animation-delay: 4.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--color-dark));
    z-index: 3;
    pointer-events: none;
}

/* MOBILE NAV */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(18, 5, 53, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    transition: color var(--transition);
}


/* SECTION SHARED */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--color-title);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-body);
    letter-spacing: -0.16px;
}

.section-subtitle strong {
    font-weight: 700;
}

/* WHAT YOU GET */
.what-you-get {
    padding: 100px 0 80px;
    background: var(--color-white);
    overflow: hidden;
}

/* Marquee wrapper */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

/* Edge fades */
.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.marquee-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

/* Marquee track — pure CSS infinite scroll */
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.wyg-card {
    flex-shrink: 0;
    width: 310px;
    background: var(--color-white);
    border: 1.5px solid rgba(56, 60, 252, 0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.wyg-card:hover {
    border-color: var(--color-cta);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(56, 60, 252, 0.12);
}

.wyg-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(56, 60, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.wyg-card:hover .wyg-card-icon {
    border-color: var(--color-cta);
    background: rgba(56, 60, 252, 0.04);
}

.wyg-card-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: var(--color-title);
    letter-spacing: -0.6px;
}

.wyg-card-text .highlight {
    background: var(--color-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* WHY NAZA AGENCY */
.why-naza {
    padding: 100px 0;
    background: var(--color-white);
}

.why-naza-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-naza-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--color-title);
    margin-bottom: 16px;
}

.why-naza-subtitle {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-body);
    letter-spacing: -0.16px;
    margin-bottom: 24px;
}

.why-naza-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-naza-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-title);
    line-height: 150%;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-naza-image {
    display: flex;
    justify-content: center;
}

.why-naza-image img {
    width: 100%;
    max-width: 598px;
    border-radius: 24px;
    object-fit: cover;
}

/* OUR CORE SERVICES */
.core-services {
    position: relative;
    padding: 100px 0 140px;
    /* Extra bottom padding for the curve */
    background: var(--color-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* Service cards */
.svc-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    grid-column: span 2;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Top row large cards: span 3 columns each */
.svc-card--large {
    grid-column: span 3;
}

/* Card header */
.svc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.svc-card-platform {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-icon--tiktok {
    background: #000;
}

.svc-icon--facebook {
    background: #1877F2;
}

.svc-icon--google {
    background: var(--color-white);
    box-shadow: 0 1.556px 4.667px 0 rgba(0, 0, 0, 0.10), 0 1.556px 3.111px -1.556px rgba(0, 0, 0, 0.10);
}

.svc-icon--native {
    background: #F4F4FF;
}

.svc-platform-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: #99A1AF;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.svc-card-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-title);
    line-height: 100%;
}

/* Badges */
.svc-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.svc-badge--green {
    background: #D0FAE5;
    color: #007A55;
}

.svc-badge--purple {
    background: #E0E7FF;
    color: var(--color-cta);
}

.svc-badge--light-orange {
    background: #FFEDD4;
    color: #CA3500;
}

/* Card description */
.svc-card-desc {
    font-size: 13px;
    line-height: 21px;
    color: var(--color-body);
    margin-bottom: 8px;
}

/* Stat area */
.svc-card-stat {
    margin-top: auto;
    padding-top: 16px;
}

.svc-stat-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
}

.svc-stat-label {
    display: block;
    font-size: 11px;
    color: #99A1AF;
    margin-bottom: 2px;
}

.svc-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

.svc-stat-change {
    font-size: 13px;
    font-weight: 600;
}

.svc-stat-change--up {
    color: #16a34a;
}

.svc-stat-change--teal {
    color: #14b8a6;
}

/* Bar chart */
.svc-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    justify-content: space-around;
}

.svc-bar-chart span {
    /* flex: 1; */
    background: rgba(56, 60, 252, 0.15);
    border-radius: 3px 3px 0 0;
    min-width: 5px;
    transition: background var(--transition);
}

.svc-card:hover .svc-bar-chart span {
    background: rgba(56, 60, 252, 0.25);
}

.svc-bar-chart--teal span {
    background: rgba(20, 184, 166, 0.2);
}

.svc-card:hover .svc-bar-chart--teal span {
    background: rgba(20, 184, 166, 0.35);
}

/* Cashback overview box */
.svc-cashback-box {
    margin-top: auto;
    background: #FAFAFC;
    border: 1px solid #EDEDF0;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 28px;
}

.svc-cashback-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-cta);
    padding: 12px 16px 0;
}

.svc-cashback-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px 16px;
}

.svc-cashback-ring {
    flex-shrink: 0;
}

.svc-cashback-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-cashback-label {
    display: block;
    font-size: 10px;
    color: #99A1AF;
    line-height: 15px;
}

.svc-cashback-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
}

.svc-cashback-value--sm {
    font-size: 14px;
    font-weight: 600;
}

/* Compliance box */
.svc-compliance-box {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ECFDF5;
    border-radius: 14px;
    padding: 14px 18px;

}

.svc-compliance-icon {
    flex-shrink: 0;
}

.svc-compliance-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #007A55;
    line-height: 150%;
}

.svc-compliance-sub {
    display: block;
    font-size: 10PX;
    color: #009966;
    line-height: 150%;
}

/* WHO THIS IS FOR */
.who-for {
    padding: 100px 0 80px;
    background: var(--color-white);
    overflow: hidden;
}

.who-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.who-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: who-scroll 30s linear infinite;
}

.who-marquee-wrapper:hover .who-marquee-track {
    animation-play-state: paused;
}

@keyframes who-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.who-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-dark);
    border-radius: 999px;
    padding: 8px 24px 8px 8px;
    transition: all var(--transition);
    cursor: default;
}

.who-pill:hover {
    border-color: var(--color-cta);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(56, 60, 252, 0.2);
}

.who-pill-img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.who-pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-pill-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 130%;
    white-space: nowrap;
    letter-spacing: -0.03em;
}

/* TESTIMONIALS */
.testimonials {
    position: relative;
    padding: 100px 0 140px;
    /* Extra padding for bottom curve */
    background: var(--color-dark);
}

.testimonials-title {
    color: var(--color-white) !important;
}

.testimonials-swiper {
    padding-bottom: 16px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    font-size: 20px;
    color: #F98C3D;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-title);
    line-height: 142%;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-body);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-title);
    line-height: 120%;
}

.testimonial-role {
    display: block;
    font-size: 16px;
    color: var(--color-body);
}

/* NOT SURE WHAT YOU NEED */
.not-sure {
    padding: 100px 0;
    background: #EEEDF5;
}

.not-sure-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: center;
}

.not-sure-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: var(--color-title);
    margin-bottom: 16px;
}

.not-sure-subtitle {
    font-size: 15px;
    line-height: 160%;
    color: var(--color-body);
    margin-bottom: 4px;
}

.not-sure-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.not-sure-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid #E0DFE8;
    border-radius: var(--radius-pill);
    padding: 4px 16px 4px 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-title);
    transition: all var(--transition);
}

.not-sure-tag:hover {
    border-color: var(--color-cta);
    box-shadow: 0 4px 16px rgba(56, 60, 252, 0.1);
}

.not-sure-tag svg {
    flex-shrink: 0;
}

.not-sure-cta-card {
    background: linear-gradient(145deg, #1a0940, #120535);
    border: 1px solid rgba(56, 60, 252, 0.25);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 564px;
}

.not-sure-cta-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-white);
    letter-spacing: -0.03em;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 24px;
}

.faq-item {
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-title);
    text-align: left;
    line-height: 120%;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-cta);
}

/* Plus / Minus icon */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-cta);
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-white);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 28px 0px;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-body);
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 100px 0 140px;
    /* Extra space for the footer curve */
    background: var(--color-cta);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.cta-shape--1 {
    width: 140px;
    height: 100px;
    top: 10%;
    left: 5%;
    transform: rotate(-5deg);
}

.cta-shape--2 {
    width: 180px;
    height: 120px;
    top: 5%;
    left: 28%;
    transform: rotate(3deg);
}

.cta-shape--3 {
    width: 120px;
    height: 90px;
    top: 15%;
    right: 20%;
    transform: rotate(-8deg);
}

.cta-shape--4 {
    width: 160px;
    height: 110px;
    top: 8%;
    right: 5%;
    transform: rotate(6deg);
}

.cta-shape--5 {
    width: 100px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    transform: rotate(10deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.cta-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
}

.btn-cta-dark .arrow {
    transition: transform var(--transition);
}

.btn-cta-dark:hover .arrow {
    transform: translateX(4px);
}

.btn-cta-dark:hover {
    background: #1E1B26;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
    background: var(--color-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 96px;
    width: auto;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 150%;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-cta);
}

.footer-desc {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-email:hover {
    color: var(--color-cta);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left span {
    font-size: 14px;
    color: var(--color-white);
}

.footer-bottom-left a {
    font-size: 14px;
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.footer-bottom-left a:hover {
    color: var(--color-white);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
    display: flex;
}

.footer-socials a:hover {
    color: var(--color-white);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .expert-card--tl {
        left: 1%;
    }

    .expert-card--tr {
        right: 1%;
    }

    .expert-card--bl {
        left: 1%;
    }

    .expert-card--br {
        right: 1%;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: var(--container-px-tablet);
        padding-right: var(--container-px-tablet);
    }

    .hero-title {
        font-size: 44px;
    }

    .expert-card {
        display: none;
    }

    .section-title {
        font-size: 40px;
    }

    .what-you-get {
        padding: 80px 0 60px;
    }

    .why-naza {
        padding: 80px 0;
    }

    .why-naza-title {
        font-size: 40px;
    }

    .core-services {
        padding: 80px 0;
    }

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

    .svc-card,
    .svc-card--large {
        grid-column: span 1;
    }

    .who-for {
        padding: 80px 0 60px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .not-sure {
        padding: 80px 0;
    }

    .not-sure-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--container-px-mobile);
        padding-right: var(--container-px-mobile);
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-description,
    .hero-tagline {
        font-size: 14px;
    }

    .platform-badges {
        gap: 8px;
    }

    .badge {
        padding: 4px 14px 4px 4px;
        font-size: 15px;
        border-radius: 10px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }

    .badge-icon img {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .what-you-get {
        padding: 60px 0 48px;
    }

    .wyg-card {
        width: 190px;
        padding: 24px 18px 22px;
    }

    .marquee-fade {
        width: 60px;
    }

    .why-naza {
        padding: 60px 0;
    }

    .why-naza-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-naza-title {
        font-size: 32px;
    }

    .why-naza-image {
        order: -1;
    }

    .why-naza-image img {
        max-width: 100%;
    }

    .core-services {
        padding: 60px 0;
    }

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

    .svc-card,
    .svc-card--large {
        grid-column: span 1;
    }

    .who-for {
        padding: 60px 0 48px;
    }

    .who-pill {
        padding: 8px 24px 8px 8px;
        gap: 12px;
    }

    .who-pill-img {
        width: 52px;
        height: 52px;
    }

    .who-pill-text {
        font-size: 13px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .not-sure {
        padding: 60px 0;
    }

    .not-sure-grid {
        flex-direction: column;
        gap: 32px;
    }

    .not-sure-title {
        font-size: 28px;
    }

    .not-sure-cta-card {
        padding: 36px 28px;
    }

    .not-sure-cta-heading {
        font-size: 24px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-list {
        padding: 0px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-shape {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-left {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-content {
        padding: 40px 0 20px;
    }

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