/* ========================================
   김짠부 Landing Page Styles
   Modern & Professional Design
   ======================================== */

/* ========== Root Variables ========== */
:root {
    /* Color Palette - Sophisticated & Trustworthy */
    --primary: #1a5f7a;
    --primary-dark: #0f4259;
    --primary-light: #2d7d9a;
    --secondary: #c27664;
    --accent: #f4a261;
    --gold: #d4af37;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a1e28;
    
    --border-light: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/bgc.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--gold);
}

.hero-avatar {
    width: 150px;
    height: 150px;
    margin: 2rem auto 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.hero-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    display: none;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-avatar .avatar-placeholder i {
    font-size: 4rem;
    color: white;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Section Styles ========== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== About Section ========== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-badge span {
    font-weight: 600;
    color: var(--text-primary);
}

.about-text h3 {
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-description {
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.philosophy {
    position: relative;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.philosophy i {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.philosophy p {
    margin-left: 2rem;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========== Benefits Section ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== Content Showcase ========== */
.content-showcase {
    padding: 5rem 0;
}

.content-showcase:nth-of-type(even) {
    background: var(--bg-light);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-img {
    aspect-ratio: 4/3;
}

.showcase-img i {
    font-size: 5rem;
}

.showcase-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(26, 95, 122, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.showcase-text h2 {
    margin-bottom: 1.5rem;
}

.showcase-text p {
    margin-bottom: 2rem;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.showcase-list i {
    color: var(--primary);
    font-size: 1rem;
}

.content-showcase.reverse .showcase-content {
    direction: rtl;
}

.content-showcase.reverse .showcase-content > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-showcase.reverse .showcase-content {
        direction: ltr;
    }
}

/* ========== Testimonials ========== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--accent);
}

.cta-feature span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(244, 162, 97, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4), 0 0 0 0 rgba(244, 162, 97, 0.7);
    }
    50% {
        box-shadow: 0 4px 30px rgba(244, 162, 97, 0.6), 0 0 0 10px rgba(244, 162, 97, 0);
    }
}

@keyframes buttonShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(244, 162, 97, 0.6);
    animation: buttonPulse 1s ease-in-out infinite;
}

.cta-button:active {
    transform: translateY(0) scale(0.95) !important;
    box-shadow: 0 2px 15px rgba(244, 162, 97, 0.5) !important;
    transition: all 0.1s ease !important;
}

.cta-button:focus {
    outline: none;
    transform: scale(1);
}

.cta-button.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
}

.cta-button i {
    position: relative;
    z-index: 2;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-disclaimer {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.cta-disclaimer i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== Fixed Bottom CTA ========== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    animation: slideUp 0.5s ease-out 1s forwards;
}

.fixed-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.fixed-cta .cta-button {
    width: auto;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(244, 162, 97, 0.5);
}

@media (max-width: 768px) {
    .fixed-cta {
        padding: 0.75rem 1rem;
        /* 保持 fixed 定位，不覆盖 */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .fixed-cta .cta-button {
        width: 100%;
        max-width: calc(100% - 1rem);
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
        animation: buttonPulseMobile 2s ease-in-out infinite;
    }
    
    .fixed-cta .cta-button span {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .fixed-cta .cta-button i {
        font-size: 1rem;
    }
    
    @keyframes buttonPulseMobile {
        0%, 100% {
            box-shadow: 0 4px 25px rgba(244, 162, 97, 0.5), 0 0 0 0 rgba(244, 162, 97, 0.7);
        }
        50% {
            box-shadow: 0 6px 35px rgba(244, 162, 97, 0.7), 0 0 0 8px rgba(244, 162, 97, 0);
        }
    }
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-avatar {
        width: 120px;
        height: 120px;
        margin: 1.5rem auto 1.5rem;
    }
    
    .hero-avatar .avatar-placeholder i {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .section-tag {
        text-align: center;
    }
    
    .section-title {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .section-description {
        text-align: center;
    }
    
    /* About Section Mobile */
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
    
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }
    
    .about-badge i {
        font-size: 1.2rem;
    }
    
    .about-badge span {
        font-size: 0.85rem;
    }
    
    .about-text h3 {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .philosophy {
        text-align: center;
    }
    
    .philosophy p {
        margin-left: 0;
        text-align: center;
    }
    
    .philosophy i {
        position: relative;
        left: 0;
        top: 0;
        display: block;
        margin-bottom: 1rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 1.5rem;
    }
    
    /* Showcase Mobile */
    .showcase-content {
        text-align: center;
    }
    
    .showcase-image {
        margin: 0 auto;
    }
    
    .showcase-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .showcase-text h2 {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .showcase-text p {
        text-align: center;
    }
    
    .showcase-tag {
        display: block;
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .showcase-list {
        align-items: flex-start;
        text-align: left;
    }
    
    .showcase-list li {
        justify-content: flex-start;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .cta-content > p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-features {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .cta-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-button.large {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
        width: 100%;
        max-width: 350px;
    }
    
    .cta-disclaimer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-disclaimer i {
        margin-top: 0;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        text-align: left;
    }
    
    /* Footer Mobile */
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========== Click Hint Dot ========== */
.cta-hint-dot {
    position: absolute;
    top: -40px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: hintBounce 1s ease-in-out infinite, hintFade 3s ease-out forwards;
    box-shadow: 0 4px 20px rgba(244, 162, 97, 0.5);
    z-index: 1001;
}

@keyframes hintBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes hintFade {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .cta-hint-dot {
        top: -35px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========== Smooth Animations ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

