:root {
    --gold: #C9A96E;
    --gold-light: #e0c490;
    --gold-pale: rgba(201, 169, 110, 0.08);
    --gold-border: rgba(201, 169, 110, 0.2);
    --gold-glow: rgba(201, 169, 110, 0.15);
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray-soft: #f7f7f5;
    --gray-mid: #e8e8e4;
    --gray-text: #6b6b6b;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'IBM Plex Sans Thai', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    font-weight: 300;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes floatYSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes morphBlob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    66% {
        border-radius: 50% 50% 40% 60% / 40% 70% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes staggerFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes goldPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.3);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(201, 169, 110, 0.15);
    }
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.navbar-nav .nav-link:hover {
    color: var(--gold);
    background: var(--gold-pale);
}

.navbar-nav .nav-link.active {
    color: var(--gold);
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: goldPulse 3s infinite;
}

.navbar-toggler {
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ─── HERO ───────────────────────────────────────────── */
#hero {
    background: var(--white);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative background shapes */
.hero-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-blob-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 12s ease-in-out infinite;
}

.shape-blob-2 {
    width: 320px;
    height: 320px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    border-radius: 40% 60% 60% 30% / 40% 50% 60% 50%;
    animation: morphBlob 15s ease-in-out infinite reverse;
}

.shape-ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    border: 2px solid rgba(201, 169, 110, 0.08);
    border-radius: 50%;
    animation: rotateSlow 40s linear infinite;
}

.shape-ring-2 {
    width: 360px;
    height: 360px;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    animation: rotateSlow 25s linear infinite reverse;
}

.shape-dot-grid {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(201, 169, 110, 0.25) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.shape-line-h {
    position: absolute;
    bottom: 120px;
    right: 10%;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

/* Hero content */
.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-right {
    animation: slideInRight 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    animation: fadeIn 0.8s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.hero-h1 .accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    max-width: 480px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    cursor: default;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 169, 110, 0.4);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gold-border);
    color: var(--dark);
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    cursor: default;
    transition: var(--transition);
}

.hero-cta-secondary:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    animation: fadeUp 0.8s ease both;
}

.hero-stat:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-stat:nth-child(2) {
    animation-delay: 0.75s;
}

.hero-stat:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-stat-num {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num span {
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--gray-text);
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    background: var(--gray-mid);
    align-self: stretch;
}

/* ─── SVG ILLUSTRATION ───────────────────────────────── */
.hero-illustration-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.illus-card-float {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    font-family: 'Prompt', sans-serif;
    animation: floatY 4s ease-in-out infinite;
    z-index: 10;
}

.illus-card-float.card-price {
    top: 6%;
    right: -4%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.illus-card-float.card-loc {
    bottom: 12%;
    left: -2%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.illus-card-float.card-stat {
    top: 30%;
    left: -8%;
    animation-delay: 0.8s;
    animation-duration: 6s;
}

.float-card-label {
    font-size: 0.65rem;
    color: var(--gray-text);
    font-weight: 400;
    margin-bottom: 2px;
}

.float-card-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.float-card-value .gold {
    color: var(--gold);
}

.float-card-icon {
    width: 28px;
    height: 28px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.main-svg-wrap {
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(201, 169, 110, 0.15));
    animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.main-svg-wrap svg {
    animation: floatYSlow 7s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

.svg-path-animated {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease forwards 0.8s;
}

/* ─── SECTION COMMONS ────────────────────────────────── */
section {
    padding: 100px 0;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-desc {
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--gray-text);
    font-weight: 300;
}

.gold-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* ─── CONDO SECTION ──────────────────────────────────── */
#condo {
    background: var(--gray-soft);
}

.prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-mid);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.prop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.prop-card:hover::before {
    opacity: 1;
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
}

.prop-card-thumb {
    height: 200px;
    background: linear-gradient(135deg, #f0ece4 0%, #e8e0d0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-card-thumb svg {
    opacity: 0.7;
}

.prop-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.prop-card-body {
    padding: 1.5rem;
}

.prop-card-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-text);
    margin-bottom: 0.4rem;
}

.prop-card-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.prop-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prop-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-text);
}

.prop-card-meta-item i {
    color: var(--gold);
}

.prop-card-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
}

.prop-card-price span {
    color: var(--gold);
}

.prop-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.tag {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--gray-mid);
    color: var(--gray-text);
    font-weight: 400;
}

/* ─── HOUSE SECTION ──────────────────────────────────── */
#house {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-border);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--black);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ─── INVESTMENT SECTION ─────────────────────────────── */
#invest {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#invest::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#invest .section-eyebrow {
    color: var(--gold-light);
}

#invest .section-eyebrow::after {
    background: var(--gold-light);
}

#invest .section-title {
    color: var(--white);
}

.invest-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.invest-card:hover {
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-6px);
}

.invest-card-num {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.invest-card-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.invest-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
}

.invest-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.invest-reasons li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.invest-reasons li:last-child {
    border-bottom: none;
}

.invest-reasons li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ─── SERVICES SECTION ───────────────────────────────── */
#services {
    background: var(--gray-soft);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
    }
}

.service-big-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-big-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gold-pale);
    transition: var(--transition);
}

.service-big-card:hover::before {
    width: 280px;
    height: 280px;
}

.service-big-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-border);
}

.service-big-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-big-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.service-big-desc {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray-text);
    padding: 6px 0;
    position: relative;
    z-index: 1;
}

.service-list li i {
    color: var(--gold);
}

/* ─── AGENT SECTION ──────────────────────────────────── */
#agent {
    background: var(--white);
}

.agent-hero-card {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.agent-hero-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.agent-hero-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(201, 169, 110, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.launch-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

.agent-hero-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.agent-hero-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-hero-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.agent-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.agent-benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
}

.agent-benefit-item:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateY(-4px);
}

.agent-benefit-icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.agent-benefit-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.agent-benefit-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.agent-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.agent-cta-text strong {
    color: var(--gold-light);
}

/* ─── SCARCITY STRIP ─────────────────────────────────── */
.scarcity-strip {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 1.5rem 0;
}

.scarcity-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scarcity-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.scarcity-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* ─── COVERAGE SECTION ───────────────────────────────── */
#coverage {
    background: var(--gray-soft);
}

.city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.city-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.82rem;
    color: var(--dark);
    font-weight: 400;
    transition: var(--transition);
}

.city-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
    transform: translateY(-2px);
}

.city-chip i {
    color: var(--gold);
    font-size: 0.75rem;
}

.coverage-map-placeholder {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-mid);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coverage-map-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ─── FAQ SECTION ────────────────────────────────────── */
#faq {
    background: var(--white);
}

.faq-item {
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-border);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}

.faq-question i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.8;
}

details[open] .faq-question i {
    transform: rotate(180deg);
}

details[open] {
    border-color: var(--gold-border);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
    /* filter: brightness(0) invert(1); opacity: 0.85;  */
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-keywords span {
    margin: 0 0.3rem;
}

/* ─── UTILITY ────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.keyword-span {
    display: inline;
}

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    section {
        padding: 70px 0;
    }

    #hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-right {
        margin-top: 3rem;
    }

    .shape-ring-1,
    .shape-ring-2 {
        display: none;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .illus-card-float.card-stat {
        display: none;
    }

    .agent-hero-card {
        padding: 2rem 1.5rem;
    }

    .agent-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-h1 {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .agent-benefits {
        grid-template-columns: 1fr;
    }

    .illus-card-float {
        display: none;
    }

    .main-svg-wrap {
        padding: 0;
    }

    .hero-illustration-wrap {
        padding: 0.5rem;
    }
}

/* ─────────────────── ARTICLES SECTION ───────────────────────*/

#articles {
    background: var(--white);
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-mid);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.article-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.article-card:hover::before {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.09);
    color: inherit;
    text-decoration: none;
}

.article-card-thumb {
    height: 200px;
    background: linear-gradient(135deg, #f5f1ea 0%, #ede7d8 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.25, .46, .45, .94);
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.06);
}

.article-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f1ea 0%, #ede7d8 100%);
}

.article-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(201, 169, 110, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.article-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--gray-text);
    font-weight: 300;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-mid);
    font-size: 0.72rem;
    color: var(--gray-text);
}

.article-card-meta-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card-meta-left i {
    color: var(--gold);
    font-size: 0.7rem;
}

.article-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.article-card:hover .article-card-readmore {
    gap: 10px;
}

/* Featured article card */
.article-card-featured {
    border: 1px solid var(--gold-border);
    background: linear-gradient(135deg, #fffdf8 0%, #fff 100%);
}

.article-card-featured .article-card-thumb {
    height: 260px;
}

/* Category filter pills */
.article-filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.article-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.article-pill:hover,
.article-pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

/* Articles CTA */
.articles-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gold-border);
    color: var(--dark);
    background: transparent;
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.articles-cta-link:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    color: var(--gold);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Skeleton loader */
@keyframes skeleton-shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0ece4 25%, #e8e3d8 50%, #f0ece4 75%);
    background-size: 400px 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
    border-radius: 6px;
}

.skeleton-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
}