/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #0A2647;
    --secondary-color: #144272;
    --accent-color: #205295;
    --gold-color: #C5A572;
    --light-gold: #E8D5B7;
    --dark-bg: #050D18;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A2647 0%, #144272 50%, #205295 100%);
    --gradient-gold: linear-gradient(135deg, #C5A572 0%, #E8D5B7 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 38, 71, 0.95) 0%, rgba(32, 82, 149, 0.85) 100%);
    
    /* Typography */
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 72px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.24);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    button, a {
        touch-action: manipulation;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197, 165, 114, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 8px);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--gold-color);
    font-size: 16px;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-main {
    display: block;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    font-family: var(--font-secondary);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.profile-image-wrapper {
    position: relative;
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 3px solid var(--gold-color);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.profile-image i {
    font-size: 64px;
    color: var(--primary-color);
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 2px;
}

.profile-title {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.profile-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 32px;
    color: var(--gold-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@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 Header
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.about-card {
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.about-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: var(--spacing-xl) 0;
}

.features-section.features-left {
    background: var(--light-bg);
}

.features-section.features-right {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.features-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 500px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
}

.image-placeholder i {
    font-size: 90px;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.features-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.features-content .section-label {
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.features-content .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-dark);
}

.features-list i {
    color: var(--gold-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    padding: var(--spacing-lg);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 24px;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 18px;
    font-weight: 500;
}

.cta-feature-item i {
    color: var(--gold-color);
    font-size: 20px;
}

/* ===================================
   Fixed CTA Button
   =================================== */
.fixed-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.fixed-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 18px 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        box-shadow: 
            var(--shadow-lg),
            0 0 20px rgba(10, 38, 71, 0.3),
            0 0 40px rgba(10, 38, 71, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            var(--shadow-xl),
            0 0 30px rgba(10, 38, 71, 0.5),
            0 0 60px rgba(10, 38, 71, 0.3),
            0 0 80px rgba(197, 165, 114, 0.2);
        transform: scale(1.02);
    }
}

.fixed-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fixed-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.fixed-cta-button:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        var(--shadow-xl),
        0 0 40px rgba(10, 38, 71, 0.6),
        0 0 80px rgba(10, 38, 71, 0.4),
        0 0 120px rgba(197, 165, 114, 0.3);
}

.fixed-cta-button:active {
    transform: translateY(-1px);
}

.fixed-cta-button i {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.fixed-cta-button span {
    position: relative;
    z-index: 1;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-bottom: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-size: 24px;
    color: var(--gold-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.footer-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .features-section.features-right .features-grid {
        direction: ltr;
    }
    
    .features-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 32px;
        --spacing-xl: 48px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 0 100px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .hero-title {
        margin-bottom: var(--spacing-md);
    }
    
    .title-main {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }
    
    .title-sub {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .hero-profile {
        margin: var(--spacing-md) 0 var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    .profile-ring {
        width: 160px;
        height: 160px;
    }
    
    .profile-image {
        width: 130px;
        height: 130px;
    }
    
    .profile-image i {
        font-size: 56px;
    }
    
    .profile-name {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .profile-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .profile-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        margin: 0 auto var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
        margin-top: var(--spacing-md);
    }
    
    .stat-item {
        width: 100%;
        max-width: 320px;
        padding: var(--spacing-md) var(--spacing-sm);
        justify-content: center;
    }
    
    .stat-item i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .scroll-indicator {
        bottom: 100px;
        font-size: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-card {
        padding: var(--spacing-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .fixed-cta-wrapper {
        padding: 12px var(--spacing-sm);
    }
    
    .fixed-cta-button {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: calc(100vw - 32px);
    }
    
    .footer {
        margin-bottom: 70px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-content {
        padding: var(--spacing-md);
    }
    
    .features-image {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 12px;
        --spacing-md: 20px;
        --spacing-lg: 28px;
        --spacing-xl: 40px;
    }
    
    .hero {
        padding: 60px 0 90px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .hero-badge i {
        font-size: 12px;
    }
    
    .title-main {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }
    
    .title-sub {
        font-size: 16px;
    }
    
    .hero-profile {
        margin: 24px 0 28px;
        gap: 16px;
    }
    
    .profile-ring {
        width: 140px;
        height: 140px;
        border-width: 2px;
    }
    
    .profile-image {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
    
    .profile-image i {
        font-size: 48px;
    }
    
    .profile-name {
        font-size: 30px;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    
    .profile-title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .profile-subtitle {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-top: 24px;
    }
    
    .stat-item {
        max-width: 100%;
        padding: 16px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .stat-item i {
        font-size: 32px;
    }
    
    .stat-content {
        align-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .scroll-indicator {
        bottom: 80px;
        font-size: 18px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .about-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .card-icon i {
        font-size: 32px;
    }
    
    .about-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .about-card p {
        font-size: 15px;
    }
    
    .features-content {
        padding: 20px 16px;
    }
    
    .features-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .features-list li {
        font-size: 15px;
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .features-list i {
        font-size: 18px;
        margin-top: 2px;
    }
    
    .features-image {
        min-height: 300px;
    }
    
    .image-placeholder {
        padding: var(--spacing-md);
    }
    
    .image-placeholder i {
        font-size: 70px;
        margin-bottom: 16px;
    }
    
    .image-placeholder p {
        font-size: 17px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .benefit-icon i {
        font-size: 28px;
    }
    
    .benefit-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 15px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-rating {
        margin-bottom: 16px;
    }
    
    .testimonial-rating i {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .testimonial-author {
        padding-top: 16px;
        gap: 12px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author-avatar i {
        font-size: 20px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .cta-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-feature-item {
        font-size: 15px;
        gap: 8px;
    }
    
    .cta-feature-item i {
        font-size: 18px;
    }
    
    .fixed-cta-wrapper {
        padding: 10px 12px;
    }
    
    .fixed-cta-button {
        font-size: 15px;
        padding: 14px 24px;
        max-width: calc(100vw - 24px);
        animation: breathe-mobile 4s ease-in-out infinite;
    }
    
    .fixed-cta-button i {
        font-size: 18px;
    }
    
    @keyframes breathe-mobile {
        0%, 100% {
            box-shadow: 
                var(--shadow-md),
                0 0 15px rgba(10, 38, 71, 0.25),
                0 0 30px rgba(10, 38, 71, 0.15);
            transform: scale(1);
        }
        50% {
            box-shadow: 
                var(--shadow-lg),
                0 0 25px rgba(10, 38, 71, 0.4),
                0 0 50px rgba(10, 38, 71, 0.25),
                0 0 70px rgba(197, 165, 114, 0.15);
            transform: scale(1.01);
        }
    }
    
    .footer {
        margin-bottom: 65px;
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .footer-info h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .footer-info p {
        font-size: 14px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}
