/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-warm);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-ghost) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 23, 41, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem 0.5rem 0.5rem;
    background: #fff;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-badge-dot {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-dot i {
    color: #fff;
    font-size: 0.7rem;
}

.hero-badge span {
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--secondary);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-title-line {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s var(--ease-out) 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 1.4rem 1.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid var(--border-light);
}

.hero-floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-ghost), var(--primary-glow));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-floating-card .card-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-floating-card .card-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-floating-card-2 {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #fff;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatCard 3s ease-in-out 1.5s infinite;
    border: 1px solid var(--border-light);
}

.hero-floating-card-2 .stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.hero-floating-card-2 span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== Section Styling ===== */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.78rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-size: 3rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.8;
}

/* ===== About / Agent Section ===== */
.agent-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.agent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.agent-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 6rem;
    align-items: center;
}

.agent-image {
    position: relative;
}

.agent-image-inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.agent-image-inner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.agent-image-inner:hover img {
    transform: scale(1.04);
}

.agent-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--border-warm);
    border-radius: var(--radius-xl);
    z-index: -1;
    transition: var(--transition);
}

.agent-image:hover .agent-image-accent {
    top: -20px;
    left: -20px;
}

.agent-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
    z-index: 3;
}

.agent-experience-badge h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.agent-experience-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.9;
}

.agent-content .section-tag {
    justify-content: flex-start;
}

.agent-content .section-tag::before {
    display: none;
}

.agent-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.agent-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.agent-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.agent-feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-body);
}

.agent-feature-item i {
    width: 24px;
    height: 24px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary-ghost);
    transform: translateY(-3px);
}

.stat-item h4 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1;
}

.stat-item span {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== Expertise Section ===== */
.expertise-section {
    background: var(--bg-warm);
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.expertise-card {
    background: #fff;
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    group: true;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-warm);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.expertise-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.expertise-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-light);
    line-height: 1;
    transition: var(--transition);
}

.expertise-card:hover .expertise-card-number {
    color: var(--primary-ghost);
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.cta-wrapper {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 5rem 4rem;
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-content .btn-primary {
    font-size: 0.9rem;
    padding: 1rem 3rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .hero-title { font-size: 3.5rem; }
    .agent-grid { gap: 4rem; }
}

@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual { order: -1; }

    .hero-image-main img { height: 400px; }

    .hero-title { font-size: 3.2rem; }

    .hero-scroll-hint { display: none; }

    .agent-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .agent-image-accent { display: none; }

    .agent-experience-badge {
        bottom: 16px;
        right: 16px;
    }

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

    .cta-wrapper {
        padding: 4rem 2.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }

    .hero { padding: 100px 0 60px; min-height: auto; }

    .hero-title { font-size: 2.6rem; }

    .hero-floating-card,
    .hero-floating-card-2 { display: none; }

    .hero-image-main img { height: 320px; }

    .section-title { font-size: 2.2rem; }

    .agent-content h2 { font-size: 2.2rem; }

    .agent-features { grid-template-columns: 1fr; }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .stat-item { padding: 1rem 0.5rem; }
    .stat-item h4 { font-size: 1.8rem; }

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

    .expertise-card-number { display: none; }

    .cta-wrapper {
        padding: 3rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 { font-size: 2rem; }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
}