:root {
    --ink: #0a0f1e;
    --ink2: #1c2333;
    --ink3: #364152;
    --muted: #64748b;
    --subtle: #94a3b8;
    --line: #e2e8f0;
    --line2: #f1f5f9;
    --bg: #fafafa;
    --white: #fff;
    --g: #0f766e;
    --g1: #14b8a6;
    --g2: #0d9488;
    --gl: #f0fdfa;
    --p: #c2185b;
    --p1: #d81b60;
    --pl: #fce4ec;
    --acc: #14b8a6;

    --pink: #e5487f;
    --pink-light: #f2839e;
    --pink-soft: #fde8f0;
    --green: #115e59;
    --green-light: #2dd4bf;
    --green-dark: #134e4a;
    --coral: #c93a6c;
    --coral-light: #f2839e;
    --purple: #6366f1;
    --purple-light: #eef2ff;
    --dark: #0f172a;
    --dark2: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-bg: #f3f6f9;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .1);
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --max-w: 1200px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

body.home-guest-white-bg {
    background: #fff;
}

body.home-guest-white-bg .page-body {
    background: #fafafa;
}

body.home-guest-white-bg .cta-nav {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.home-guest-white-bg .cta-nav:not(.cta-nav--scrolled) {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.home-guest-white-bg .cta-nav .container-xl {
    border-bottom: 0 !important;
}

body.home-guest-white-bg .cta-nav .brand-logo {
    display: none !important;
}

body.home-guest-white-bg .cta-nav .brand-logo--theme-dark {
    display: block !important;
}

body.home-guest-white-bg .cta-nav__menu {
    gap: 0.45rem;
}

body.home-guest-white-bg .cta-nav__menu .dropdown {
    position: relative;
}

body.home-guest-white-bg .cta-nav__link {
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent !important;
    border-radius: 0.55rem !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.76) !important;
    box-shadow: none !important;
}

body.home-guest-white-bg .cta-nav__link:hover,
body.home-guest-white-bg .cta-nav__link:focus-visible,
body.home-guest-white-bg .cta-nav__link.is-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.home-guest-white-bg .cta-nav__utilities .nav-link,
body.home-guest-white-bg .cta-nav__theme-mobile .btn {
    color: rgba(255, 255, 255, 0.82);
}

body.home-guest-white-bg .cta-nav__theme-mobile .cta-nav__lang-btn {
    min-width: 2.5rem;
}

body.home-guest-white-bg .cta-nav__theme-mobile .cta-nav__lang-btn.active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 0 !important;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .brand-logo--theme-dark {
    display: none !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .brand-logo--theme-light {
    display: block !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__link {
    color: #334155 !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__link:hover,
body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__link:focus-visible,
body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__link.is-active {
    color: #0f172a !important;
    background: rgba(15, 23, 42, 0.07) !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__utilities .nav-link,
body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__theme-mobile .btn {
    color: #334155 !important;
}

body.home-guest-white-bg .cta-nav.cta-nav--scrolled .cta-nav__theme-mobile .cta-nav__lang-btn.active {
    background: rgba(15, 23, 42, 0.09) !important;
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
}

/* NAV */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    /* height: 64px; */
    display: flex;
    align-items: center;
    padding: 0 48px;
    transition: background .3s, box-shadow .3s;
}

header.at-top {
    /* background: #ffffff05; */
    border-bottom: 1px solid #ffffff0a;
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(255, 255, 255, .85);
    /* box-shadow: 0 1px 0 var(--line); */
    backdrop-filter: blur(10px);
}

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-wrap img {
    height: 42px;
    display: block
}

.logo-light {
    display: block
}

.logo-dark {
    display: none !important;
}

header.scrolled .logo-light {
    display: none
}

header.scrolled .logo-dark {
    display: block !important
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    color: var(--gray-light);
    transition: var(--transition);
}

#hdr nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0px;
    width: 0px;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

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

#hdr nav a:hover::after {
    width: 100%;
}

header.scrolled nav a {
    color: var(--ink3)
}

header.scrolled nav a:hover {
    color: var(--pink)
}

#hdr nav.scrolled a::after {
    background: var(--pink);
}

nav {
    display: flex;
    gap: 32px
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn-login {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s
}

.btn-login:hover {
    color: #fff
}

header.scrolled .btn-login {
    color: var(--muted)
}

header.scrolled .btn-login:hover {
    color: var(--ink)
}

.btn-start {
    font-size: 13px;
    font-weight: 600;
    background: var(--g);
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .01em;
}

.btn-start:hover {
    background: var(--g1);
    transform: translateY(-1px)
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--ink);
}

.hero--full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 148, 136, .13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(194, 24, 91, .09) 0%, transparent 55%),
        linear-gradient(160deg, #060d18 0%, #0a1628 40%, #091520 70%, #0d0a1a 100%);
}

/* subtle grid */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    padding: 120px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-left {}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--acc);
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: var(--acc)
}

.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.6rem, 4.2vw, 4rem);
    font-weight: 300;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.hero h1 strong {
    font-weight: 600;
    font-style: italic;
    color: var(--acc)
}

.hero h1 span.pk {
    font-style: italic;
    color: #f48fb1
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .52);
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 56px
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    background: var(--g2);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .01em;
}

.btn-hero-primary:hover {
    background: var(--g1);
    transform: translateY(-1px)
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, .35);
    color: #fff
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1
}

.trust-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
    letter-spacing: .03em
}

.trust-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .1)
}

/* Hero right — dashboard mockup */
.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end
}

.dash-wrap {
    width: 100%;
    max-width: 440px;
    position: relative;
}

.dash-main {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(24px);
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-dots {
    display: flex;
    gap: 5px
}

.dash-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.dd1 {
    background: #ff5f57
}

.dd2 {
    background: #febc2e
}

.dd3 {
    background: #28c840
}

.dash-tag-top {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .06em;
    text-transform: uppercase
}

.dash-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px
}

.kpi {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 12px 14px;
}

.kpi-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.kpi-val {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 1
}

.kpi-delta {
    font-size: 10px;
    margin-top: 3px
}

.kpi-delta.up {
    color: #5eead4
}

.kpi-delta.down {
    color: #f87171
}

.dash-chart {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}

.dash-chart-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px
}

.b {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(255, 255, 255, .1);
    transition: height .6s ease
}

.b.hi {
    background: linear-gradient(180deg, #2dd4bf, #0d9488)
}

.b.mid {
    background: rgba(45, 212, 191, .35)
}

.dash-list {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.dl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 9px 12px;
}

.dl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.dot-g {
    background: #2dd4bf
}

.dot-p {
    background: #f48fb1
}

.dot-y {
    background: #fbbf24
}

.dl-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    flex: 1
}

.dl-val {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9)
}

/* floating pills */
.float-pill {
    position: absolute;
    background: rgba(10, 15, 30, .9);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 14px;
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    z-index: 1;
}

.fp1 {
    top: 60px;
    right: 60px;
    animation: bob 4s ease-in-out infinite;
    z-index: 2;
    background-color: #00000050;
    border: 0;
}

.fp2 {
    bottom: 60px;
    right: 90px;
    animation: bob 5s ease-in-out infinite;
    animation-delay: 1.2s;
    z-index: 2;
    background-color: #00000050;
    border: 0;
}

.fp3 {
    top: 190px;
    left: -50px;
    animation: bob 6s ease-in-out infinite;
    animation-delay: 1.2s;
    z-index: 2;
    background-color: #00000050;
    border: 0;
}

.fp4 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* animation: bob 5s ease-in-out infinite; */
    /* animation-delay: 1.2s; */
    background-color: transparent;
    backdrop-filter: blur(4px);
    border-radius: 50%;
    z-index: 1;
    /* border: 0; */
    padding: 10px 20px;
    overflow: auto;
}

.fp4 img {
    width: 200px;
}

.fp4 .fp-sub {
    font-size: 16px;
    font-family: 'Fraunces', Georgia, serif;
    text-align: center;
}

.fp-icon {
    font-size: 14px
}

.fp-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    margin-top: 1px
}

@keyframes bob {

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

    50% {
        transform: translateY(-10px)
    }
}

/* LOGO STRIP */
.logo-strip {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.strip-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .04em;
    white-space: nowrap
}

.strip-sep {
    width: 1px;
    height: 40px;
    background: var(--muted);
    flex-shrink: 0
}

.strip-items {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center
}

.strip-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: -.01em;
    opacity: .65
}

/* SECTIONS */
.section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 96px 48px
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 16px;
}

.section-eyebrow-line {
    width: 20px;
    height: 1.5px;
    background: var(--g)
}

h2.section-title,
h3.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h2.section-title em,
h3.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--g);
}

.section-lead {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px
}

/* Features block — tek ortak SVG arka plan */
#features {
    position: relative;
    overflow: hidden;
}

#features .section {
    position: relative;
    z-index: 1;
}

/* FEATURES BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 56px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow .25s, border-color .25s;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    border-color: rgba(26, 110, 64, .2)
}

.bc-a {
    grid-column: span 5
}

.bc-b {
    grid-column: span 7
}

.bc-c {
    grid-column: span 4
}

.bc-d {
    grid-column: span 3
}

.bc-e {
    grid-column: span 3
}

.bc-f {
    grid-column: span 6
}

.bc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.bc-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ic-green {
    background: var(--gl);
    color: var(--g);
}

.ic-pink {
    background: var(--pl)
}

.ic-amber {
    background: #fffbeb
}

.ic-blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.ic-teal {
    background: #f0fdfa;
    color: #0f766e;
}

.ic-slate {
    background: #f8fafc;
    color: var(--ink3);
}

.bc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.tag-g {
    background: var(--gl);
    color: var(--g)
}

.tag-p {
    background: var(--pl);
    color: var(--p)
}

.tag-a {
    background: #fffbeb;
    color: #92400e
}

.tag-b {
    background: #eff6ff;
    color: #1d4ed8
}

.tag-t {
    background: #f0fdfa;
    color: #0f766e
}

.bc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px
}

.bc-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

/* bc-b wide card: mini visual */
.bc-b-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.bc-b-visual {
    flex: 1;
    min-width: 0;
    background: var(--line2);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 8px 10px;
}

.mini-row-label {
    font-size: 11px;
    color: var(--ink3);
    flex: 1;
    font-weight: 500
}

.mini-row-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--g)
}

.mini-row-badge {
    font-size: 10px;
    font-weight: 600;
    background: var(--gl);
    color: var(--g);
    padding: 2px 7px;
    border-radius: 4px
}

/* bc-f wide bar */
.bc-f-inner {
    display: flex;
    gap: 32px;
    align-items: center
}

.bc-f-text {
    max-width: 500px
}

.bc-f-tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
    margin-top: 16px
}

.f-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink3);
    background: var(--line2);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--line);
    flex: 1;
    text-align: center;
}

.bc-f-visual {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    min-width: 0
}

.sparkbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1
}

.sparkbar-b {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: var(--gl)
}

.sparkbar-b.active {
    background: var(--g2)
}

.sparkbar-label {
    font-size: 10px;
    color: var(--subtle)
}

/*
 * Misafir ana sayfa — #showcase (satır vitrin, üç blok)
 */
#showcase.guest-showcases {
    background: var(--bg);
}

#showcase .guest-showcases__inner {
    padding-top: 72px;
    padding-bottom: 88px;
}

/* Bloklar arası: mevcut ritim + 100px ek dikey boşluk */
#showcase .showcase-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    margin-bottom: calc(100px + clamp(2.25rem, 4vw, 3rem));
}

#showcase .showcase-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 901px) {
    #showcase .showcase-block {
        flex-direction: row;
        align-items: center;
        gap: 56px;
    }

    #showcase .showcase-block--reverse {
        flex-direction: row-reverse;
    }

    #showcase .showcase-visual,
    #showcase .showcase-copy {
        flex: 1;
    }
}

#showcase .showcase-visual {
    flex: 1;
    min-width: 0;
}

#showcase .showcase-copy {
    flex: 1;
    min-width: 0;
    max-width: 520px;
}

#showcase .showcase-mock {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
    overflow: hidden;
    font-size: 11px;
    box-shadow: rgba(15, 23, 42, 0.06) 0 1px 0, rgba(15, 23, 42, 0.08) 0 12px 36px;
}

#showcase .showcase-mock--dash {
    padding: 12px 12px 10px;
}

#showcase .showcase-mock--inv {
    padding: 14px;
}

#showcase .showcase-mock--shop {
    padding: 12px;
}

#showcase .showcase-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

#showcase .showcase-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

#showcase .showcase-badge--pink {
    background: var(--pl);
    color: var(--p);
}

#showcase .showcase-badge--teal {
    background: var(--g);
    color: var(--gl);
}

#showcase .showcase-lead {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 22px;
}

#showcase .showcase-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

#showcase .showcase-feat-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.45;
}

#showcase .showcase-check {
    color: var(--g2);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

#showcase .sm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--subtle);
    font-weight: 600;
    font-size: 10px;
}

#showcase .sm-tag {
    color: var(--ink3);
}

#showcase .sm-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

#showcase .sm-kpi {
    background: var(--line2);
    border-radius: 8px;
    padding: 8px 8px 6px;
    border: 1px solid var(--line);
}

#showcase .sm-kpi-l {
    display: block;
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

#showcase .sm-kpi-v {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

#showcase .sm-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
    margin-bottom: 12px;
    padding: 0 2px;
}

#showcase .sm-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: #b7e7dc;
    min-height: 8px;
}

#showcase .sm-bars .sm-bar-hi {
    background: linear-gradient(180deg, var(--g1), var(--g2));
}

#showcase .sm-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#showcase .sm-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    background: var(--line2);
    border-radius: 7px;
    border: 1px solid var(--line);
}

#showcase .sm-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

#showcase .sm-dot--g {
    background: var(--g2);
}

#showcase .sm-dot--p {
    background: var(--pink);
}

#showcase .sm-dot--y {
    background: #f59e0b;
}

#showcase .sm-row-t {
    flex: 1;
    font-size: 10px;
    color: var(--ink3);
    font-weight: 500;
}

#showcase .sm-row-s {
    font-size: 9px;
    color: var(--muted);
}

#showcase .sm-inv-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
}

#showcase .sm-inv-type {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--gl);
    color: var(--g);
    padding: 3px 8px;
    border-radius: 4px;
}

#showcase .sm-inv-no {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}

#showcase .sm-inv-party {
    margin-bottom: 12px;
    font-size: 10px;
    color: var(--ink3);
    line-height: 1.55;
}

#showcase .sm-inv-party strong {
    color: var(--muted);
    font-weight: 600;
    margin-right: 6px;
}

#showcase .sm-inv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    margin-bottom: 10px;
}

#showcase .sm-inv-table td {
    padding: 7px 0;
    border-bottom: 1px solid var(--line2);
    color: var(--ink3);
}

#showcase .sm-inv-table td.sm-inv-num {
    text-align: right;
    color: var(--ink);
    font-weight: 600;
    width: 22%;
}

#showcase .sm-inv-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    font-size: 11px;
    color: var(--muted);
}

#showcase .sm-inv-foot strong {
    font-size: 14px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

#showcase .sm-inv-pills {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

#showcase .sm-pill {
    font-size: 9px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 5px;
    background: var(--line2);
    color: var(--ink3);
    border: 1px solid var(--line);
}

#showcase .sm-pill--acc {
    background: var(--pl);
    color: var(--p);
    border-color: rgba(194, 24, 91, .2);
}

#showcase .sm-shop-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}

#showcase .sm-shop-brand {
    color: var(--g2);
}

#showcase .sm-shop-cart {
    color: var(--ink3);
}

#showcase .sm-shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

#showcase .sm-card {
    background: var(--line2);
    border-radius: 9px;
    border: 1px solid var(--line);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

#showcase .sm-card-emoji-wrap {
    position: relative;
    border-radius: 7px;
    aspect-ratio: 4 / 3;
    box-shadow:
        inset 0 0px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 0px rgba(15, 23, 42, 0.15);
    display: grid;
    place-items: center;
    overflow: hidden;
}

#showcase .sm-card-emoji {
    font-size: 4.375rem;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.45));
}

#showcase .sm-card-emoji-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#showcase .sm-card-t {
    font-size: 10px;
    font-weight: 600;
    color: var(--ink);
}

#showcase .sm-card-p {
    font-size: 16px;
    font-weight: 700;
    color: var(--g);
    font-variant-numeric: tabular-nums;
}

#showcase .sm-shop-cta {
    text-align: center;
}

#showcase .sm-shop-btn {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}


.guest-community-cta {
    padding: 2.5rem 0 3.5rem;
}

.guest-community-cta__wrap {
    max-width: 1160px;
    margin: 0px auto;
    padding: 0 48px;
}

.guest-community-cta__panel.cta-component {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
    background-color: rgb(18, 22, 37);
    background-image: url(/assets/images/652e506cd901d37cd5e12781_Cta%20bg%20Image.png), url(/assets/images/6534b2237ecc65ca6b48cf75_BG%20shape%20color022.png);
    background-repeat: repeat, no-repeat;
    background-size: auto, auto;
    border-radius: 0.625rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(40, 45, 69);
    border-image: initial;
    background-position: 50% 100%, 50% center;
    overflow: hidden;
}

.guest-community-cta__content.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 30.3125rem;
    padding-inline: 1rem;
}

.guest-community-cta__title.heading-style-h4 {
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.625rem, 4.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgb(255, 255, 255);
    margin: 0px 0px 1rem;
}

.guest-community-cta__lead.text-style-regular {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgb(143, 155, 183);
    margin: 0px 0px 1.5rem;
}

.guest-community-cta__lead-strong {
    color: rgba(226, 232, 240, 0.95);
    font-weight: 600;
}

.guest-community-cta__btn.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    color: rgb(255, 255, 255);
    background-color: rgb(20, 184, 166);
    box-shadow: rgba(20, 184, 166, 0.35) 0px 4px 14px;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    white-space: nowrap;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 36px;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.guest-community-cta__btn.cta-button:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(13, 148, 136);
    transform: translateY(-1px);
}




/* HOW IT WORKS */
.how-section {
    background: var(--ink);
    padding: 96px 0
}

.how-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px
}

.how-section .section-eyebrow {
    color: var(--acc)
}

.how-section .section-eyebrow-line {
    background: var(--acc)
}

.how-section h2.section-title {
    color: #fff
}

.how-section h2.section-title em {
    color: var(--acc)
}

.how-section .section-lead {
    color: rgba(255, 255, 255, .45)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px
}

.step {
    background: var(--ink);
    padding: 32px 28px
}

.step-num {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, .12);
    line-height: 1;
    margin-bottom: 16px
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px
}

.step-body {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7
}

.step-icon {
    font-size: 22px;
    margin-bottom: 12px
}

/* PRICING */
.pricing-section {
    /* background: var(--line2); */
    padding: 96px 0
}

.pricing-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px
}

.plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
    max-width: 800px;
}

.plans--billing {
    align-items: stretch;
}

.plans--billing .plan-card.best {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

.plan-micro {
    font-size: 12px;
    line-height: 1.55;
    color: var(--subtle);
    margin: 0 0 20px;
    flex-grow: 1;
}

.pricing-shared {
    margin-top: 40px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
}

.pricing-shared-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 18px;
    text-align: center;
}

.pricing-shared-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
}

.pricing-shared-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink3);
}

.pricing-shared-list .feat-check {
    color: var(--acc);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08)
}

.plan-card.best {
    background: var(--ink);
    border-color: var(--ink);
}

.best-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--acc);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.plan-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 12px
}

.plan-card.best .plan-tier {
    color: rgba(255, 255, 255, .4)
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px
}

.plan-price {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1
}

.plan-card.best .plan-price {
    color: #fff
}

.plan-curr {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink3);
    align-self: flex-start;
    margin-top: 8px
}

.plan-card.best .plan-curr {
    color: rgba(255, 255, 255, .7)
}

.plan-period {
    font-size: 12px;
    color: var(--subtle);
    margin-bottom: 24px
}

.plan-card.best .plan-period {
    color: rgba(255, 255, 255, .35)
}

.plan-card.best .plan-micro {
    color: rgba(255, 255, 255, .42);
}

.plan-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 24px
}

.plan-card.best .plan-divider {
    background: rgba(255, 255, 255, .1)
}

.plan-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.plan-feat-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink3)
}

.plan-card.best .plan-feat-list li {
    color: rgba(255, 255, 255, .75)
}

.feat-check {
    color: var(--acc);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid var(--line);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.plan-btn:hover {
    border-color: var(--g);
    color: var(--g)
}

.plan-card.best .plan-btn {
    background: var(--acc);
    border-color: var(--acc);
    color: #fff
}

.plan-card.best .plan-btn:hover {
    background: #0ea572;
    border-color: #0ea572
}

/* TESTIMONIALS */
.testi-section {
    padding: 96px 0;
    /* background: var(--white) */
}

.testi-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px
}

.testi-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    background: var(--white);
    transition: box-shadow .25s;
}

.testi-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07)
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px
}

.star-icon {
    color: #f59e0b;
    font-size: 13px
}

.testi-quote {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #115e59, #14b8a6)
}

.av2 {
    background: linear-gradient(135deg, #c2185b, #d81b60)
}

.av3 {
    background: linear-gradient(135deg, #0f766e, #14b8a6)
}

.testi-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.testi-biz {
    font-size: 11px;
    color: var(--subtle);
    margin-top: 1px
}

/* CTA — impact card */
.cta-impact {
    padding: 2rem 0 3.5rem;
}

.cta-impact__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(165deg, #072a29 0%, #0c3d3a 38%, #115e59 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(15, 80, 77, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-impact__shader {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-impact__veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(20, 184, 166, 0.14) 0%, transparent 45%),
        linear-gradient(225deg, rgba(229, 72, 127, 0.1) 0%, transparent 40%),
        linear-gradient(165deg, rgba(7, 42, 40, 0.78) 0%, rgba(12, 61, 58, 0.55) 42%, rgba(8, 50, 48, 0.82) 100%);
}

.cta-impact__shine {
    position: absolute;
    z-index: 1;
    inset: -40%;
    background: radial-gradient(ellipse 55% 40% at 85% 15%, rgba(255, 255, 255, 0.09), transparent 55%),
        radial-gradient(ellipse 40% 35% at 10% 80%, rgba(45, 212, 191, 0.16), transparent 50%);
    pointer-events: none;
}

.cta-impact__body {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 38rem;
}

.cta-impact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(153, 246, 228, 0.95);
    margin: 0 0 1rem;
}

.cta-impact__eyebrow-line {
    width: 1.5rem;
    height: 2px;
    background: rgba(153, 246, 228, 0.85);
    border-radius: 1px;
}

.cta-impact__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 350;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1rem;
}

.cta-impact__title em {
    font-style: italic;
    font-weight: 500;
    color: #99f6e4;
}

.cta-impact__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.35rem;
}

.cta-impact__pills {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.cta-impact__pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.85rem 0.35rem 0.65rem;
}

.cta-impact__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.28);
    flex-shrink: 0;
}

.cta-impact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cta-impact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.85rem 1.35rem;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-impact__btn--primary {
    background: #fff;
    color: #115e59;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-impact__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    color: #134e4a;
}

.cta-impact__btn-arrow {
    font-weight: 400;
    opacity: 0.9;
}

.cta-impact__btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-impact__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.cta-impact__aside {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    padding-right: 0.5rem;
}

.cta-impact__stat {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 8.5rem;
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(15, 80, 77, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(45, 212, 191, 0.2) inset,
        0 0 60px rgba(20, 184, 166, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cta-impact__stat::before {
    content: '';
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at 50% 32%, rgba(45, 212, 191, 0.36) 0%, rgba(20, 184, 166, 0.1) 38%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.cta-impact__stat-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #134e4a;
    background: linear-gradient(180deg, #f0fdfa 0%, #99f6e4 100%);
    padding: 0.3rem 0.55rem 0.28rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.cta-impact__stat-num {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.28rem;
}

.cta-impact__stat-val {
    display: inline;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3.15rem, 7vw, 4.35rem);
    font-weight: 350;
    line-height: 0.92;
    color: #fff;
    letter-spacing: -0.04em;
    text-shadow:
        0 0 42px rgba(45, 212, 191, 0.48),
        0 2px 16px rgba(0, 0, 0, 0.35);
}

.cta-impact__stat-unit {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ccfbf1;
    line-height: 1;
    text-shadow: 0 0 20px rgba(153, 246, 228, 0.5);
}

.cta-impact__stat-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.cta-impact__rings {
    position: absolute;
    right: 0.25rem;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.02),
        0 0 0 28px rgba(255, 255, 255, 0.02);
    opacity: 0.75;
    pointer-events: none;
}

@media (max-width: 820px) {
    .cta-impact__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-impact__body {
        text-align: center;
        max-width: none;
    }

    .cta-impact__pills {
        justify-content: center;
    }

    .cta-impact__actions {
        justify-content: center;
    }

    .cta-impact__aside {
        min-width: unset;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .cta-impact__rings {
        display: none;
    }
}

/* RESPONSIVE */
@media(max-width:1040px) {
    header {
        padding: 0 24px
    }

    nav {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px
    }

    .hero-right {
        justify-content: center
    }

    .section {
        padding: 72px 24px
    }

    .guest-community-cta__wrap {
        padding: 0 24px;
    }

    #showcase .guest-showcases__inner {
        gap: 64px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .bento .bc-a,
    .bento .bc-b,
    .bento .bc-c,
    .bento .bc-d,
    .bento .bc-e,
    .bento .bc-f {
        grid-column: span 12
    }

    .bc-b-inner {
        flex-direction: column
    }

    .bc-f-inner {
        flex-direction: column;
        gap: 20px
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-inner,
    .how-inner,
    .testi-inner {
        padding: 0 24px
    }

    .plans,
    .testi-grid {
        grid-template-columns: 1fr
    }

    .pricing-shared-list {
        grid-template-columns: 1fr
    }

    .plan-card.best {
        transform: none
    }

    .float-pill {
        display: none
    }

    /* Misafir ana sayfa: mobil + dar masaüstünde floating pill + logo görünsün */
    .page--guest-home .float-pill {
        display: flex;
    }

    .logo-strip {
        padding: 20px 24px
    }
}

/* Tablet — misafir ana sayfa (~768–1199px): vitrin, hero sıkılığı, fiyat/yorum ızgarası */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .page--guest-home .plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    .page--guest-home .testi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .page--guest-home .testi-grid .testi-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 640px;
        width: 100%;
        justify-self: center;
    }

    /* iPad/tablet: tam ekran yüksekliği zorlanmasın; boşluk üst/alt padding ile */
    .page--guest-home .hero {
        min-height: auto;
        justify-content: flex-start;
    }

    .page--guest-home .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: clamp(32px, 4vw, 48px);
        padding-top: clamp(72px, 11vw, 108px);
        padding-bottom: clamp(48px, 7vw, 72px);
        padding-left: clamp(28px, 4vw, 40px);
        padding-right: clamp(28px, 4vw, 40px);
    }

    .page--guest-home .hero-right {
        justify-content: flex-end;
    }

    /* Dar iki kolonlu hero’da dashboard kutusu taşmasın */
    .page--guest-home .dash-wrap {
        max-width: min(440px, 100%);
        margin-inline: auto;
    }

    .page--guest-home .fp1 {
        top: clamp(28px, 6vw, 56px);
        right: clamp(8px, 3vw, 48px);
    }

    .page--guest-home .fp2 {
        bottom: clamp(28px, 6vw, 56px);
        right: clamp(12px, 4vw, 72px);
    }

    .page--guest-home .fp3 {
        top: clamp(140px, 24vw, 190px);
        left: clamp(-32px, -5vw, -12px);
    }

    .page--guest-home .fp4 {
        padding: clamp(6px, 1.5vw, 14px) clamp(12px, 3vw, 20px);
    }

    .page--guest-home .fp4 img {
        width: clamp(96px, 22vw, 160px);
    }

    /* Bento: dar masaüstü/tablet yatayda okunabilir tek kolon */
    .page--guest-home .bento .bc-a,
    .page--guest-home .bento .bc-b,
    .page--guest-home .bento .bc-c,
    .page--guest-home .bento .bc-d,
    .page--guest-home .bento .bc-e,
    .page--guest-home .bento .bc-f {
        grid-column: span 12;
    }

    .page--guest-home .bc-b-inner {
        flex-direction: column;
    }

    .page--guest-home .bc-f-inner {
        flex-direction: column;
        gap: 20px;
    }

    @media (min-width: 901px) {
        #showcase .showcase-block {
            gap: clamp(28px, 3.5vw, 44px);
        }

        #showcase .guest-showcases__inner {
            padding-left: clamp(28px, 4vw, 40px);
            padding-right: clamp(28px, 4vw, 40px);
        }

        #showcase .showcase-heading {
            font-size: clamp(1.45rem, 2.35vw, 1.95rem);
        }
    }
}

/* Mobil (≤768px): hero sol metin ortalı; misafir ana sayfa dashboard pill’leri */
@media (max-width: 767.98px) {
    .hero-left {
        text-align: center;
    }

    .hero-left .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-left .hero-actions {
        justify-content: center;
    }

    .hero-left .hero-trust {
        justify-content: center;
    }

    .hero-left .trust-item {
        align-items: center;
    }

    .page--guest-home .dash-wrap {
        max-width: min(340px, 100%);
        margin-inline: auto;
    }

    .page--guest-home .float-pill:not(.fp4) {
        font-size: 11px;
        padding: 8px 10px;
        gap: 6px;
        white-space: normal;
        max-width: min(220px, calc(100vw - 48px));
    }

    .page--guest-home .fp1 {
        top: clamp(14px, 4vw, 28px);
        right: clamp(2px, 1vw, 14px);
    }

    .page--guest-home .fp2 {
        bottom: clamp(14px, 5vw, 32px);
        right: clamp(4px, 2vw, 18px);
    }

    .page--guest-home .fp3 {
        top: clamp(96px, 30vw, 140px);
        left: clamp(-10px, -1vw, 6px);
    }

    .page--guest-home .fp4 {
        padding: 6px 12px;
    }

    .page--guest-home .fp4 img {
        width: clamp(72px, 46vw, 128px);
    }

    .page--guest-home .fp4 .fp-sub {
        font-size: clamp(12px, 3.5vw, 15px);
    }

    .page--guest-home .fp-sub {
        font-size: 9px;
    }

    .page--guest-home .fp-icon {
        font-size: 12px;
    }
}

@media(max-width:600px) {
    .steps-grid {
        grid-template-columns: 1fr
    }

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

    .cta-impact {
        padding: 1.25rem 0 2.5rem;
    }

    .cta-impact__card {
        border-radius: 18px;
    }
}

/* Guest home: one-page style footer (scoped) */
.guest-home-footer {
    --ghf-border: rgba(255, 255, 255, 0.1);
    --ghf-muted: rgba(226, 232, 240, 0.72);
    --ghf-text: #f8fafc;
    background: #090d14;
    border-top: 1px solid var(--ghf-border);
    padding: 3.75rem 0 2rem;
    margin-top: 0;
}

.guest-home-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.guest-home-footer__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.875rem;
    text-decoration: none;
}

.guest-home-footer__logo {
    height: auto;
    max-height: 3rem;
    width: auto;
    display: block;
}

.guest-home-footer__lead {
    font-size: 0.875rem;
    color: var(--ghf-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 28rem;
}

.guest-home-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.guest-home-footer__soc {
    /* width: 2rem; */
    height: 2rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ghf-border);
    display: grid;
    place-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--ghf-muted);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.guest-home-footer__soc:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ghf-text);
}

.guest-home-footer__langs .btn-dark.active {
    box-shadow: 0 0 0 2px rgba(32, 107, 196, 0.55);
}

.guest-home-footer__col-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ghf-muted);
    margin: 0 0 1rem;
}

.guest-home-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.guest-home-footer__links a {
    font-size: 0.875rem;
    color: var(--ghf-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.guest-home-footer__links a:hover {
    color: var(--ghf-text);
}

.guest-home-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--ghf-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.guest-home-footer__bottom-left,
.guest-home-footer__bottom-right {
    font-size: 0.8125rem;
    color: var(--ghf-muted);
}

.guest-home-footer__bottom-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.guest-home-footer__bottom-right a {
    color: var(--ghf-muted);
    text-decoration: none;
}

.guest-home-footer__bottom-right a:hover {
    color: var(--ghf-text);
}

body.home-guest-white-bg .guest-home-btt {
    bottom: 5.75rem;
}

.guest-home-btt {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(32, 107, 196, 0.9);
    border: 1px solid rgba(32, 107, 196, 0.45);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1040;
    box-shadow: 0 4px 16px rgba(32, 107, 196, 0.35);
}

.guest-home-btt.is-visible {
    opacity: 1;
    transform: none;
}

.guest-home-btt:hover {
    background: rgba(32, 107, 196, 1);
    color: #fff;
}

@media (max-width: 991.98px) {
    .guest-home-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .guest-home-footer__grid {
        grid-template-columns: 1fr;
    }
}