:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #f59e0b;
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* March Event Banner */
.event-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b9d 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.event-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.event-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.event-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.event-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.event-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.event-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

/* Event Popup Modal */
.event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.event-popup {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: calc(100% - 2rem);
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
    margin: auto;
}

.event-popup-overlay.show .event-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: sticky;
    top: 0;
    float: right;
    margin: -0.5rem -0.5rem 0 0;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.popup-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-subtitle {
    color: var(--text-dim);
    font-size: 1rem;
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    animation: pulse-red 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
    }
}

.popup-content {
    margin-bottom: 2rem;
}

.popup-offer {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.popup-offer h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    padding: 0.5rem 0;
    color: var(--text-dim);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-timer {
    text-align: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.timer-label {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.timer-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.quota-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.quota-number {
    color: #ef4444;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    animation: glow-red 2s infinite alternate;
}

@keyframes glow-red {
    from {
        text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
    }
}

.quota-text {
    color: var(--text-dim);
    font-size: 1.5rem;
}

.urgency-text {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.6; }
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.popup-btn-secondary {
    background: none;
    color: var(--text-dim);
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.text-center { text-align: center; }
.text-white { color: white; }
.text-white-dim { color: var(--text-dim); }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-main);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ── Hero Event Button ── */
.hero-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 1.1rem 2.4rem;
    background: linear-gradient(135deg, rgba(239,68,68,0.18) 0%, rgba(220,38,38,0.12) 100%);
    border: 1.5px solid rgba(239,68,68,0.6);
    border-radius: 50px;
    text-decoration: none;
    color: #fca5a5;
    font-size: 1.05rem;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    animation: hero-event-glow 2.5s ease-in-out infinite;
}

.hero-event-btn:hover {
    background: linear-gradient(135deg, rgba(239,68,68,0.28) 0%, rgba(220,38,38,0.2) 100%);
    border-color: rgba(239,68,68,0.85);
    transform: translateY(-1px);
    color: #fff5f5;
}

@keyframes hero-event-glow {
    0%, 100% { border-color: rgba(239,68,68,0.5); }
    50%       { border-color: rgba(239,68,68,0.95); }
}

.hero-event-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.hero-event-text {
    color: #fca5a5;
    font-size: 1rem;
}

.hero-event-arrow {
    color: #ef4444;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.hero-event-btn:hover .hero-event-arrow {
    transform: translateX(3px);
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-white);
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-links .btn-primary.small {
    padding: 0.5rem 1.2rem;
    color: white;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
    background: #162032;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.red-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.solution-text {
    flex: 1;
}

.badge-blue {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.solution-desc {
    margin-bottom: 2rem;
    color: var(--text-dim);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-list li i {
    color: var(--primary);
}

.solution-visual {
    flex: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.code-header {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }

.chat-ui {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-msg strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.chat-msg.ai {
    background: rgba(59, 130, 246, 0.1);
    align-self: flex-start;
    border-left: 3px solid var(--primary);
    max-width: 90%;
}

.chat-msg.user {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-end;
    max-width: 80%;
}

/* Services / Pricing */
.pricing-grid {
    align-items: start;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, var(--bg-card) 50%);
    transform: scale(1.02);
    z-index: 2;
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.recommand-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.new-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.new-service {
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.02);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--text-dim);
    font-size: 0.9rem;
}
.price-annual {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}
.price-annual em {
    color: #22c55e;
    font-style: normal;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.service-features li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-dim);
    align-items: flex-start;
}

.service-card .btn-outline,
.service-card .btn-primary {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    flex-shrink: 0;
}

.service-features li i {
    color: var(--primary);
    width: 18px;
}

.service-features li strong {
    color: white;
}

/* Profile Section */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #162032;
    padding: 3rem;
    border-radius: 20px;
}

.about-image {
    flex: 0 0 300px;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bio {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-white);
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-item {
    display: flex;
    gap: 1.5rem;
}

.career-item .year {
    font-weight: 700;
    color: var(--text-dim);
    min-width: 80px;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-form {
    text-align: left;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Demo CTA Section */
.demo-cta-section {
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(139,92,246,0.06) 100%);
    border-top: 1px solid rgba(59,130,246,0.15);
    border-bottom: 1px solid rgba(59,130,246,0.15);
}

.demo-cta-inner {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.demo-cta-text {
    flex: 1;
}

.demo-cta-text .section-title {
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

.demo-cta-text .section-desc {
    margin-bottom: 1.8rem;
}

.demo-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.demo-features li {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    padding-left: 0.2rem;
}

.demo-features li::first-letter {
    color: var(--primary);
}

.demo-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.use-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.9rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.btn-demo {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(59,130,246,0.3);
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(59,130,246,0.5);
}

.demo-cta-preview {
    flex: 1;
}

.demo-preview-card {
    cursor: default;
}

.demo-preview-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

.typing-demo .typing-text {
    color: var(--text-white);
    font-size: 0.9rem;
}

.demo-cta-btn-wrap {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.demo-start-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.demo-start-link:hover {
    opacity: 0.7;
}

/* Automation Examples Section */
.automation-examples-section {
    background: #0f172a;
    padding: 5rem 0;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.automation-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.automation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 1) 100%);
}

.automation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06d6a0);
    border-radius: 20px 20px 0 0;
}

.automation-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.automation-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.automation-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.automation-card:hover .automation-icon::before {
    opacity: 1;
}

.automation-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.automation-time {
    font-size: 0.95rem;
    background: linear-gradient(135deg, #10b981, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

.automation-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.flow-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.automation-result {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dim);
    position: relative;
    margin-top: 2rem;
}

.automation-result::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 20px;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.automation-result strong {
    color: #10b981;
}

.automation-cta {
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.automation-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.automation-cta p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.automation-cta strong {
    color: var(--primary);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .automation-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
        padding: 1rem 0;
    }
    
    .automation-card {
        padding: 2rem;
    }
    
    .automation-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .automation-flow {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .flow-step {
        min-width: auto;
        max-width: 200px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { display: none; }
    
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    
    .service-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    .automation-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .automation-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .automation-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .automation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .automation-flow {
        gap: 1rem;
    }
    
    .flow-arrow {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    /* Event Banner Mobile */
    .event-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .event-text {
        text-align: center;
    }
    
    .event-actions {
        justify-content: center;
    }
    
    /* Event Popup Mobile */
    .event-popup-overlay {
        padding: 0.75rem 0;
        align-items: flex-start;
    }

    .event-popup {
        padding: 1.25rem 1rem;
        width: calc(100% - 1.5rem);
        border-radius: 16px;
        margin: 0 auto;
    }

    .popup-close {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        margin: -0.3rem -0.3rem 0 0;
    }

    .popup-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .popup-header {
        margin-bottom: 1rem;
    }

    .popup-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .popup-subtitle {
        font-size: 0.85rem;
    }

    .limited-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin: 0.3rem 0 0.8rem;
    }

    .popup-content {
        margin-bottom: 1rem;
    }

    .popup-offer {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .popup-offer h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .offer-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .popup-timer {
        padding: 1rem;
    }

    .quota-display {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }

    .quota-number {
        font-size: 2.2rem;
    }

    .quota-text {
        font-size: 1.1rem;
    }

    .urgency-text {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .popup-actions {
        gap: 0.6rem;
    }

    .popup-btn-primary,
    .popup-btn-secondary {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
    .solution-wrapper { flex-direction: column; }
    .about-wrapper { flex-direction: column; padding: 2rem; }
    .about-image { 
        flex: auto; 
        width: 100%; 
        max-width: 250px;
        margin: 0 auto 2rem;
    }
    
    .profile-photo {
        border-radius: 16px;
    }
    
    .nav-links { display: none; } /* Mobile Menu would need JS */
    .demo-cta-inner { flex-direction: column; gap: 2.5rem; }
    .bridge-inner { flex-direction: column; gap: 2rem; text-align: center; }
    .bridge-points { justify-content: center; }
    .bridge-right { width: 100%; }
    .bridge-cta-btn { width: 100%; justify-content: center; }
}

/* ── Bridge Section ── */
.bridge-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.bridge-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 1rem 0;
}

.bridge-left { flex: 1; }

.bridge-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #a5b4fc;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.bridge-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.bridge-desc {
    color: #94a3b8;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.bridge-desc strong { color: #f8fafc; }

.bridge-points {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.bridge-points span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a5b4fc;
}

.bridge-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.bridge-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 0 32px rgba(99, 102, 241, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.bridge-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(99, 102, 241, 0.6);
}

.bridge-btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.bridge-cta-btn:hover .bridge-btn-arrow {
    transform: translateX(4px);
}

.bridge-cta-sub {
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
}

/* ── Floating CTA Button ── */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.5);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(99, 102, 241, 0.65);
}

.floating-icon { font-size: 1rem; }
.floating-text { white-space: nowrap; }

@media (max-width: 480px) {
    .floating-cta { bottom: 1.2rem; right: 1.2rem; padding: 0.75rem 1.1rem; font-size: 0.82rem; }
}
