/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #dc143c;
    --primary-dark: #b01030;
    --primary-light: #ff4757;
    
    /* Secondary Colors */
    --secondary-color: #1e3a8a;
    --secondary-dark: #1e293b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Accent Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    background: #ffffff;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
    opacity: 0.8;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--black);
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #64748b;
    font-weight: 400;
}

.price-highlight {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    min-width: 0;
}

.stat-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.1);
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-images {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(220, 20, 60, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Section Styles */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

/* Player Showcase */
.player-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    background: var(--white);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(220, 20, 60, 0.4);
}

.showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.95), rgba(220, 20, 60, 0.8));
    color: var(--white);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.showcase-label i {
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Highlighted Feature Card */
.feature-card-highlighted {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.08));
    border: 3px solid #fbbf24;
    position: relative;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: card-glow 3s ease-in-out infinite;
}

.feature-card-highlighted:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
}

.feature-badge-special {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

.feature-badge-special i {
    font-size: 1rem;
    animation: crown-float 2s ease-in-out infinite;
}

.feature-icon-special {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    animation: icon-shine 3s ease-in-out infinite;
}

.feature-card-highlighted h3 {
    color: #d97706;
    font-size: 1.35rem;
    font-weight: 800;
}

.feature-card-highlighted p {
    color: var(--dark-gray);
    font-weight: 500;
}

@keyframes card-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
    }
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes crown-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes icon-shine {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
    }
}

.service-scope {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-xl);
}

.service-scope h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.service-scope h3 i {
    color: var(--primary-color);
}

.scope-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.scope-note {
    color: var(--gray);
    font-style: italic;
}

.coaching-philosophy {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--light-gray);
}

.coaching-philosophy h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.coaching-philosophy h4 i {
    color: var(--primary-color);
}

.philosophy-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(30, 58, 138, 0.05));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-standard {
    border: 3px solid var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-badge-featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.price-old {
    display: block;
    font-size: 1.25rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.period {
    font-size: 1.25rem;
    color: var(--gray);
}

.pricing-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-gray);
}

.pricing-features i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Highlighted Feature in Pricing */
.pricing-features .feature-highlight-pricing {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid #fbbf24;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25);
    animation: pulse-glow-pricing 2.5s ease-in-out infinite;
}

.pricing-features .feature-highlight-pricing i {
    color: #fbbf24;
    font-size: 1.3rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

.pricing-features .feature-highlight-pricing .highlight-text {
    color: #d97706;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(217, 119, 6, 0.1);
}

@keyframes pulse-glow-pricing {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25), 0 0 20px rgba(251, 191, 36, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4), 0 0 30px rgba(251, 191, 36, 0.25);
        transform: scale(1.02);
    }
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
        transform: rotate(0deg);
    }
    25% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        transform: rotate(72deg);
    }
    75% {
        opacity: 0.8;
    }
}

.pricing-includes {
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.includes-text {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.includes-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    margin-top: auto;
}

.pricing-note {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--info);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-note p {
    color: var(--gray);
    line-height: 1.7;
}

/* Career Section */
.career {
    background: var(--light-gray);
}

.career-content {
    max-width: 1000px;
    margin: 0 auto;
}

.career-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat-box {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.profile-strength h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.profile-strength i {
    color: var(--warning);
}

.profile-strength p {
    color: var(--gray);
    line-height: 1.7;
}

.career-timeline {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.career-timeline h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: var(--spacing-xl);
}

.career-timeline h3 i {
    color: var(--primary-color);
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.timeline-achievement {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-detail {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.player-name {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin: 0.25rem;
}

.players-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.team-photo {
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: auto;
}

.background-section,
.agent-service,
.value-proposition {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.background-section h3,
.agent-service h3,
.value-proposition h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.background-section h3 i,
.agent-service h3 i,
.value-proposition h3 i {
    color: var(--primary-color);
}

/* Agent Service Title Highlight */
.agent-service-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-flex !important;
    animation: title-glow 2s ease-in-out infinite;
    font-weight: 800;
    font-size: 1.75rem;
}

.agent-service-title i {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(220, 20, 60, 0.4));
    animation: icon-shake 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6));
    }
}

@keyframes icon-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.background-section p,
.agent-service p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

blockquote {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--dark-gray);
    margin-top: var(--spacing-md);
}

blockquote i {
    color: var(--primary-color);
}

.value-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Comparison Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    position: relative;
}

.comparison-traditional {
    opacity: 0.7;
}

.comparison-online {
    border: 3px solid var(--primary-color);
}

.comparison-card .comparison-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.comparison-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.comparison-header h3 {
    font-size: 1.5rem;
    color: var(--black);
}

.comparison-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.comparison-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.comparison-price .period {
    font-size: 1.125rem;
    color: var(--gray);
}

.comparison-annual {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 600;
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light-gray);
}

.comparison-features {
    list-style: none;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-gray);
}

.comparison-features .fa-check {
    color: var(--success);
}

.comparison-features .fa-times {
    color: var(--gray);
}

/* Highlighted Feature */
.comparison-features .feature-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #fbbf24;
    font-weight: 600;
    margin: 0.5rem 0;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

.comparison-features .feature-highlight i {
    color: #fbbf24;
    font-size: 1.25rem;
    animation: star-spin 3s ease-in-out infinite;
}

.comparison-features .feature-highlight .highlight-text {
    color: #d97706;
    font-weight: 700;
    font-size: 1.05rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
    }
}

@keyframes star-spin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.comparison-vs {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.savings-highlight {
    margin-bottom: var(--spacing-xl);
}

.savings-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.savings-box i {
    font-size: 4rem;
    opacity: 0.9;
}

.savings-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.savings-text {
    font-size: 1rem;
    opacity: 0.95;
}

.comparison-summary {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.comparison-summary h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    justify-content: center;
}

.comparison-summary h3 i {
    color: var(--warning);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.summary-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.summary-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.summary-item h4 {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.summary-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.cta-title i {
    color: var(--warning);
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-feature i {
    color: var(--warning);
    font-size: 1.25rem;
}

.cta-note {
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 3rem;
        gap: 3rem;
    }

    .hero::before {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

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

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

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

    .career-profile {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-vs {
        margin: var(--spacing-md) auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Tablet size adjustments */
@media (max-width: 900px) {
    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center;
    }

    .nav-brand {
        font-size: 1.25rem;
    }

    .nav-brand i {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .player-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

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

    .pricing-card-featured {
        transform: none;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.75rem;
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .showcase-img {
        height: 300px;
    }

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

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: var(--spacing-sm);
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.pricing-card,
.timeline-item {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
