/*
Theme Name: B19 Corporate Theme
Theme URI: https://github.com/kazhamshare-cmd/b19-corporate-site
Author: B19 Co., Ltd.
Description: Dashboard-style grid layout inspired by bequant.com
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: b19-theme
*/

:root {
    --primary: #ff2d2d;
    --primary-dark: #e02525;
    --primary-light: #ff5555;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-mono {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ==================== HEADER (bequant style) ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.logo-box {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.logo-image {
    height: 44px;
    width: auto;
    filter: invert(1) brightness(2);
    transition: opacity 0.3s ease;
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.footer-brand .logo-image {
    height: 44px;
    height: 28px;
}

/* Centered pill navigation */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
    backdrop-filter: blur(10px);
}

.main-nav li:not(:last-child) a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: block;
}

.main-nav li:not(:last-child) a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* CTA button in nav */
.nav-cta {
    background: transparent !important;
    color: var(--primary) !important;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease !important;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--primary) !important;
    color: var(--text-primary) !important;
}

.nav-cta::after {
    content: '>>';
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: none;
        align-items: center;
        justify-content: center;
        transform: none;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        background: none;
        border: none;
        padding: 0;
        gap: 10px;
    }

    .main-nav li:not(:last-child) a {
        font-size: 1.5rem;
        padding: 15px 30px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        font-size: 1rem;
        padding: 15px 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ==================== HERO with Wave Animation ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0) 30%,
        rgba(10, 10, 10, 0) 70%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
}

.hero-content-centered {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.hero h1 .text-gradient {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #ff6b6b 30%,
        #ffaa55 60%,
        #ffd700 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-ai-note {
    font-size: 0.85rem;
    color: #fff;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Bottom - Featured Section */
.hero-bottom {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.featured-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.featured-label .text-primary {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.featured-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.featured-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px 14px 14px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-card:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.featured-image {
    width: 70px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image .img-placeholder {
    width: 100%;
    height: 100%;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.featured-info {
    flex: 1;
}

.featured-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.featured-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .featured-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-content-centered {
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom {
        display: none;
    }

    .featured-cards {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 4px 10px;
    background: rgba(255, 45, 45, 0.1);
    color: var(--primary);
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dash-stat {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 16px;
}

.dash-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dash-stat-change {
    font-size: 0.7rem;
    color: #22c55e;
    margin-top: 8px;
}

/* ==================== BENTO GRID ==================== */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

/* Card Sizes */
.bento-card.large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-card.medium {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-card.small {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-card.wide {
    grid-column: span 6;
    grid-row: span 1;
}

.bento-card.tall {
    grid-column: span 4;
    grid-row: span 2;
}

/* Card Content */
.card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    position: absolute;
    top: 24px;
    right: 24px;
}

.bento-card h3 {
    margin-bottom: 12px;
    flex-grow: 0;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card-image {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-tertiary);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 20px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* Stats Cards */
.stat-highlight {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ==================== MARQUEE ==================== */
.marquee-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
}

.marquee-content span.dot {
    font-size: 0.5rem;
    opacity: 0.3;
}

/* ==================== WORKS GRID ==================== */
.works-section {
    padding: 50px 0 80px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .text-mono {
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 500px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.work-card:hover {
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-image {
    aspect-ratio: 16/10;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-content {
    padding: 24px;
}

.work-category {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.work-card h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.work-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== PROCESS - GSAP ANIMATED TIMELINE ==================== */
.process-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.process-timeline {
    position: relative;
    margin-top: 80px;
    padding: 40px 0;
}

/* Timeline Track - Horizontal Line */
.timeline-track {
    position: absolute;
    top: 72px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary);
    transition: width 0.1s ease-out;
}

/* Process Steps Container */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Individual Step */
.process-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Step Marker - Circle with Number */
.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active State - Color fills in */
.process-step.is-active .step-number {
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 45, 45, 0.4);
}

/* Completed State */
.process-step.is-completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Pulse Animation Ring */
.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: 1;
}

.process-step.is-active .step-pulse {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Glow Effect */
.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.process-step.is-active .step-glow {
    opacity: 1;
}

/* Step Content */
.step-content {
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.process-step.is-active .step-content,
.process-step.is-completed .step-content {
    opacity: 1;
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.process-step.is-active h3 {
    color: var(--primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .bento-card.large {
        grid-column: span 12;
    }
    .bento-card.medium,
    .bento-card.tall {
        grid-column: span 6;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bento-card.large,
    .bento-card.medium,
    .bento-card.small,
    .bento-card.wide,
    .bento-card.tall {
        grid-column: span 12;
        grid-row: span 1;
    }

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

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

    .timeline-track {
        display: none;
    }

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border);
    }

    .main-nav a {
        display: block;
        padding: 16px 0;
    }

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

    /* Mobile: Compact horizontal layout */
    .process-section {
        padding: 60px 0;
    }

    .process-timeline {
        margin-top: 40px;
        padding: 20px 0;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .process-step.is-active {
        border-color: var(--primary);
        background: rgba(255, 45, 45, 0.05);
    }

    .step-marker {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin: 0;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .step-pulse,
    .step-glow {
        display: none;
    }

    .step-content {
        flex: 1;
        opacity: 1 !important;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .process-step p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* ==================== ANIMATIONS ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in {
    opacity: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Image placeholder */
.img-placeholder {
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    width: 100%;
    height: 100%;
}

/* ==================== AI SECTION (bequant style) ==================== */
.ai-section {
    padding: 80px 0 30px;
    background: var(--bg-primary);
}

.ai-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.ai-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Main Card (Terminal + AI Pro side by side) */
.main-card {
    grid-row: span 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.main-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* Terminal Section (Left side) */
.terminal-section {
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.terminal-window {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid var(--border);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #febc2e; }
.btn-maximize { background: #28c840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.8;
    overflow-y: auto;
    scroll-behavior: smooth;
    height: 320px;
    max-height: 320px;
    flex-shrink: 0;
}

/* Custom scrollbar for terminal */
.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* AI Professional Section (Right side) */
.ai-pro-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ai-pro-section .card-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.ai-pro-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.ai-pro-section > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Stats at bottom of AI Pro section */
.ai-pro-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.ai-pro-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-pro-stats .stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ai-pro-stats .stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ai-pro-stats .stat-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.ai-pro-stats .stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.ai-pro-stats .stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: terminalFadeIn 0.3s forwards;
}

.terminal-line.prompt {
    color: #28c840;
}

.terminal-line.command {
    color: var(--text-primary);
}

.terminal-line.response {
    color: var(--text-secondary);
}

.terminal-line.ai-response {
    color: #ff6b6b;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--text-primary);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

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

@keyframes terminalFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Subsidy Wave Card */
.subsidy-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
}

.subsidy-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.subsidy-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: flex-end;
}

.subsidy-card .card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subsidy-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

.subsidy-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}


/* AI Feature Card */
.ai-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
}

.ai-feature-card .card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.ai-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.ai-feature-desc {
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 8px;
    font-weight: 500;
}

/* AI Tags */
.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ai-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid rgba(255, 45, 45, 0.2);
    padding: 6px 12px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ai-tag:hover {
    color: var(--text-primary);
    background: rgba(255, 45, 45, 0.2);
    border-color: rgba(255, 45, 45, 0.4);
}

/* Responsive AI Section */
@media (max-width: 1200px) {
    .ai-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-card {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .main-card-inner {
        grid-template-columns: 1fr;
    }

    .terminal-section {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .terminal-body {
        height: 250px;
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .ai-bento-grid {
        grid-template-columns: 1fr;
    }

    .main-card {
        grid-column: span 1;
    }

    .ai-section .section-title {
        font-size: 1.8rem;
    }

    .ai-pro-section h3 {
        font-size: 1.2rem;
    }

    .ai-pro-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ai-pro-stats .stat-divider {
        width: 100%;
        height: 1px;
    }
}

/* ==================== RENEWAL & PRICING SECTION ==================== */
.renewal-section {
    padding: 30px 0 60px;
    background: var(--bg-primary);
}

.renewal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.renewal-card,
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.renewal-card .card-label,
.pricing-card .card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.renewal-card h3,
.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
}

.renewal-card > p,
.pricing-card .pricing-highlight > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Renewal Services List */
.renewal-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Dashboard Examples */
.dashboard-examples {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.examples-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: inline;
    margin-right: 8px;
}

.examples-clickable {
    font-size: 0.75rem;
    color: var(--primary);
    display: block;
    margin-bottom: 14px;
}

.dashboard-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.dashboard-link:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: rgba(255, 45, 45, 0.3);
    color: var(--text-primary);
}

.dashboard-link .link-icon {
    font-size: 1rem;
}

/* Chart Animation */
.chart-animation-container {
    margin-top: 20px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-tertiary);
}

.chart-animation-container canvas {
    width: 100%;
    height: 100%;
}

/* Pricing Card */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-highlight {
    margin-bottom: 24px;
}

.pricing-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.pricing-stat {
    flex: 1;
    text-align: center;
}

.pricing-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.pricing-unit {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    display: block;
    margin-top: 8px;
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.pricing-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* Subsidy Banner with Shine Effect */
.subsidy-banner {
    position: relative;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 100, 80, 0.05) 100%);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: var(--radius);
    margin-bottom: 24px;
    overflow: hidden;
    text-align: center;
}

.subsidy-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* Support Features */
.support-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.support-item:hover {
    background: rgba(255, 45, 45, 0.05);
}

.support-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.support-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.support-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Renewal Section Responsive */
@media (max-width: 1024px) {
    .renewal-grid {
        grid-template-columns: 1fr;
    }

    .pricing-stats {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .renewal-card,
    .pricing-card {
        padding: 24px;
    }

    .renewal-card h3,
    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .pricing-stats {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-divider {
        width: 100%;
        height: 1px;
    }

    .pricing-value {
        font-size: 2.2rem;
    }

    .dashboard-links {
        gap: 8px;
    }

    .dashboard-link {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* ==================== APP DEVELOPMENT & AI ANALYSIS SECTION ==================== */
.app-ai-section {
    padding: 30px 0 50px;
    background: var(--bg-primary);
}

.app-ai-grid {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 24px;
}

.app-dev-card,
.ai-analysis-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.app-dev-card .card-label,
.ai-analysis-card .card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.app-dev-card h3,
.ai-analysis-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 14px;
}

.app-dev-card > p,
.ai-analysis-header > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* App Store Links */
.app-store-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.store-link:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: rgba(255, 45, 45, 0.3);
    transform: translateX(4px);
}

.store-link svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.store-link div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.store-action {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* App Categories */
.app-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-cat {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* AI Analysis Card */
.ai-analysis-card {
    display: flex;
    flex-direction: column;
}

.ai-analysis-header {
    margin-bottom: 20px;
}

/* SWOT Container */
.swot-container {
    position: relative;
    height: 280px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-tertiary);
}

.swot-container canvas {
    width: 100%;
    height: 100%;
}

.swot-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.swot-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
}

.swot-label.strengths {
    top: 10px;
    left: 10px;
}

.swot-label.weaknesses {
    top: 10px;
    right: 10px;
    text-align: right;
}

.swot-label.opportunities {
    bottom: 10px;
    left: 10px;
}

.swot-label.threats {
    bottom: 10px;
    right: 10px;
    text-align: right;
}

.swot-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.swot-label.strengths .swot-title { color: #22c55e; }
.swot-label.weaknesses .swot-title { color: #f59e0b; }
.swot-label.opportunities .swot-title { color: #3b82f6; }
.swot-label.threats .swot-title { color: #ef4444; }

.swot-jp {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Analysis Features */
.analysis-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.analysis-icon {
    font-size: 1.1rem;
}

/* App AI Section Responsive */
@media (max-width: 1024px) {
    .app-ai-grid {
        grid-template-columns: 1fr;
    }

    .swot-container {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .app-dev-card,
    .ai-analysis-card {
        padding: 24px;
    }

    .app-dev-card h3,
    .ai-analysis-card h3 {
        font-size: 1.2rem;
    }

    .swot-container {
        height: 200px;
    }

    .swot-title {
        font-size: 0.6rem;
    }

    .swot-jp {
        font-size: 0.65rem;
    }

    .analysis-features {
        gap: 8px;
    }

    .analysis-item {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* ==================== TECH STACK ACCORDION SECTION ==================== */
.tech-stack-section {
    padding: 30px 0 50px;
    background: var(--bg-primary);
}

.tech-stack-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Accordion Toggle Button */
.tech-stack-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tech-stack-toggle:hover {
    background: rgba(255, 255, 255, 0.02);
}

.tech-stack-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
    text-align: left;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-stack-toggle.is-open .toggle-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}

/* Accordion Content - Genie Effect */
.tech-stack-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0.8) translateY(-20px);
    transform-origin: top center;
    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-stack-content.is-open {
    max-height: 800px;
    opacity: 1;
    transform: scaleY(1) translateY(0);
}

.tech-stack-content .tech-stack-grid {
    padding: 0 40px 40px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
}

.tech-category {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tech-stack-content.is-open .tech-category {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for categories */
.tech-stack-content.is-open .tech-category:nth-child(1) { transition-delay: 0.05s; }
.tech-stack-content.is-open .tech-category:nth-child(2) { transition-delay: 0.1s; }
.tech-stack-content.is-open .tech-category:nth-child(3) { transition-delay: 0.15s; }
.tech-stack-content.is-open .tech-category:nth-child(4) { transition-delay: 0.2s; }
.tech-stack-content.is-open .tech-category:nth-child(5) { transition-delay: 0.25s; }
.tech-stack-content.is-open .tech-category:nth-child(6) { transition-delay: 0.3s; }
.tech-stack-content.is-open .tech-category:nth-child(7) { transition-delay: 0.35s; }

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.tech-category-header svg {
    opacity: 0.6;
    color: var(--primary);
}

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.tech-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==================== PLATFORMS INSIDE TECH STACK ==================== */
.platforms-inside {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.platforms-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.platforms-grid-inside {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.platform-icon-small {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.platform-icon-small.apple {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
}

.platform-icon-small.google {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
    color: white;
}

.platform-icon-small.alexa {
    background: linear-gradient(135deg, #00caff 0%, #0066cc 100%);
    color: white;
}

.platform-icon-small.tiktok {
    background: linear-gradient(135deg, #25f4ee 0%, #fe2c55 100%);
    color: white;
}

.platform-icon-small.wordpress {
    background: linear-gradient(135deg, #21759b 0%, #464646 100%);
    color: white;
}

.platform-icon-small svg {
    width: 16px;
    height: 16px;
}

/* Legacy platform styles (keeping for compatibility) */
.platform-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-icon.apple {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
}

.platform-icon.google {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%);
    color: white;
}

.platform-icon.alexa {
    background: linear-gradient(135deg, #00caff 0%, #0066cc 100%);
    color: white;
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #000 0%, #25f4ee 50%, #fe2c55 100%);
    color: white;
}

.platform-icon.wordpress {
    background: linear-gradient(135deg, #21759b 0%, #464646 100%);
    color: white;
}

.platform-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.platform-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.platform-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Tech Stack Responsive */
@media (max-width: 1024px) {
    .tech-stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }

    .tech-stack-toggle {
        padding: 24px;
    }

    .tech-stack-content .tech-stack-grid {
        padding: 0 24px 24px;
    }

    .tech-stack-title {
        font-size: 1.3rem;
    }

    .platforms-grid-inside {
        gap: 10px;
    }

    .platform-item {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-stack-toggle {
        padding: 20px;
    }

    .tech-stack-content .tech-stack-grid {
        padding: 0 20px 20px;
    }

    .tech-list li {
        font-size: 0.9rem;
    }

    .platforms-inside {
        margin-top: 30px;
        padding-top: 24px;
    }

    .platforms-grid-inside {
        gap: 8px;
    }

    .platform-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .platform-icon-small {
        width: 24px;
        height: 24px;
    }

    .platform-icon-small svg {
        width: 14px;
        height: 14px;
    }

    .platform-icon {
        width: 48px;
        height: 48px;
    }

    .platform-info h3 {
        font-size: 0.9rem;
    }

    .platform-info p {
        font-size: 0.8rem;
    }
}

/* ==================== CARD LABEL ANIMATION ==================== */
.card-label {
    overflow: hidden;
}

.card-label .char {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-15px) scale(0.8);
}

.card-label.animate .char {
    animation: charReveal 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateX(-15px) scale(0.8);
    }
    40% {
        opacity: 0.6;
        filter: blur(6px);
        transform: translateX(-5px) scale(0.95);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
}

/* ==================== SUBSCRIPTION SYSTEMS CAROUSEL ==================== */
.subscription-section {
    padding: 50px 0 60px;
    background: var(--bg-primary);
    overflow: hidden;
}

.subscription-section .section-header {
    margin-bottom: 40px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.systems-carousel {
    display: flex;
    gap: 24px;
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
}

.systems-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.system-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.system-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

/* Platform Icons */
.platform-icons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
}

.platform-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.85);
}

.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.system-card:hover .system-image img {
    transform: scale(1.05);
}

.system-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.system-content {
    padding: 20px;
}

.system-category {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.system-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.system-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .system-card {
        width: 280px;
    }

    .systems-carousel {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .system-card {
        width: 260px;
    }

    .system-content {
        padding: 16px;
    }

    .system-card h3 {
        font-size: 1rem;
    }
}

/* ==================== WORKS PORTFOLIO SECTION (Front Page) ==================== */
.works-portfolio-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Filter Buttons */
.works-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Works Portfolio Grid */
.works-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Works Card */
.works-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.works-card.hidden {
    display: none;
}

.works-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.works-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.works-card:hover .works-card-image img {
    transform: scale(1.05);
}

.works-platforms {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.platform-badge {
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.platform-badge.web { background: rgba(34, 197, 94, 0.9); }
.platform-badge.ios { background: rgba(59, 130, 246, 0.9); }
.platform-badge.android { background: rgba(249, 115, 22, 0.9); }

.works-card-content {
    padding: 24px;
}

.works-card-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.works-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.works-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.works-card-more {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.works-card:hover .works-card-more {
    opacity: 1;
    transform: translateX(0);
}

/* View All Button */
.works-view-all {
    text-align: center;
}

/* ==================== WORKS DETAIL PAGE ==================== */
.works-detail-hero {
    padding: 150px 0 60px;
    background: var(--bg-primary);
}

.works-detail-header {
    max-width: 800px;
}

.works-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.works-category-badge {
    padding: 6px 14px;
    background: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
}

.works-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.works-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.works-detail-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.works-detail-platforms {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.platform-tag {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* Works Detail Content */
.works-detail-content {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.works-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.works-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.works-detail-image img {
    width: 100%;
    height: auto;
}

.works-detail-body h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.works-detail-body p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 16px;
}

/* Sidebar Cards */
.works-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.works-sidebar-card.highlight {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.05);
}

.works-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.works-sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.works-sidebar-card .btn {
    width: 100%;
    justify-content: center;
}

.works-info-list {
    display: grid;
    gap: 12px;
}

.works-info-list dt {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.works-info-list dd {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Related Works */
.works-related {
    padding: 80px 0;
    background: var(--bg-primary);
}

.works-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.works-related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.works-related-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.works-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-related-content {
    padding: 20px;
}

.works-related-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.works-related-content h3 {
    font-size: 1rem;
    margin: 8px 0;
    color: var(--text-primary);
}

.works-related-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.works-related-more {
    text-align: center;
    margin-top: 40px;
}

/* ==================== WORKS ARCHIVE PAGE ==================== */
.works-archive-hero {
    padding: 150px 0 40px;
    background: var(--bg-primary);
}

.works-archive-header {
    text-align: center;
    margin-bottom: 30px;
}

.works-archive-header h1 {
    font-size: 2.2rem;
    margin: 16px 0;
}

.works-archive-header p {
    color: var(--text-secondary);
}

.works-archive-content {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.works-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.works-archive-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-archive-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.works-archive-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.works-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-category-tags {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.category-tag {
    padding: 4px 10px;
    background: rgba(255, 45, 45, 0.9);
    border-radius: 4px;
    font-size: 0.7rem;
    color: white;
}

.works-archive-content {
    padding: 24px;
}

.works-archive-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.works-archive-content h2 {
    font-size: 1.1rem;
    margin: 8px 0;
    color: var(--text-primary);
}

.works-archive-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.works-archive-more {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Pagination */
.works-pagination {
    margin-top: 50px;
    text-align: center;
}

.works-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.works-pagination a,
.works-pagination span {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-pagination a:hover,
.works-pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.works-no-results {
    text-align: center;
    padding: 60px 0;
}

.works-no-results p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .works-portfolio-grid,
    .works-archive-grid,
    .works-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .works-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .works-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .works-portfolio-grid,
    .works-archive-grid,
    .works-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .works-detail-hero h1 {
        font-size: 1.8rem;
    }

    .works-archive-header h1 {
        font-size: 1.6rem;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 16px 0 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.contact-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,45,45,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,45,45,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    max-width: 1000px;
    margin: 0 auto;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff6b6b 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--primary);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 45, 45, 0.03);
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.checkbox-item input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--text-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-item input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-item input:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-item input:checked ~ .checkbox-label {
    color: var(--text-primary);
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Submit Button */
.form-submit {
    margin-top: 12px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

@media (max-width: 1024px) {
    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, rgba(255,45,45,0.08) 0%, rgba(255,45,45,0.02) 100%);
    border-color: rgba(255,45,45,0.2);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 45, 45, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card-icon svg {
    color: var(--primary);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-card p strong {
    color: var(--primary);
    font-weight: 600;
}

.contact-email {
    display: block;
    color: var(--primary-light);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-email:hover {
    color: var(--primary);
    text-decoration: underline;
}

.info-note {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.faq-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 32px 24px;
    }
}

/* ==================== LEGAL PAGES ==================== */
.legal-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.legal-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 16px 0 12px;
    color: var(--text-primary);
}

.legal-hero-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-content {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 28px 20px;
        margin: 0 -10px;
        border-radius: var(--radius);
    }
}

.legal-intro {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    margin-bottom: 40px;
    border-left: 3px solid var(--primary);
}

.legal-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-intro p.english {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 28px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.legal-section h4 {
    font-size: 1rem;
    color: var(--primary-light);
    margin: 20px 0 12px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    margin: 16px 0;
    padding-left: 24px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Info Table */
.info-table {
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 20px 0;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.info-value {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-value a {
    color: var(--primary-light);
}

@media (max-width: 600px) {
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .info-label {
        padding: 12px 16px 8px;
        border-bottom: none;
    }
    
    .info-value {
        padding: 8px 16px 16px;
    }
}

/* Contact Box */
.contact-box {
    background: rgba(255, 45, 45, 0.05);
    border: 1px solid rgba(255, 45, 45, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: var(--text-primary);
}

.contact-box a {
    color: var(--primary-light);
}

/* Highlight Box */
.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.highlight-box h4 {
    margin-top: 0;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Notice Box */
.notice-box {
    background: rgba(59, 130, 246, 0.08);
    border-left-color: #3b82f6;
}

/* Warning Box */
.warning-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.warning-box ul {
    margin: 0;
    padding-left: 20px;
}

.warning-box li {
    color: var(--text-secondary);
}

/* Service Terms Section */
.service-terms-section {
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    padding: 28px;
    margin: 28px 0;
    border: 1px solid var(--border);
}

.service-title {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.service-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.service-content h4:first-child {
    margin-top: 0;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.service-content .highlight {
    color: var(--primary-light);
    font-weight: 500;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
}

.pricing-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.pricing-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Highlight */
.pricing-highlight {
    background: linear-gradient(135deg, rgba(255,45,45,0.1) 0%, rgba(255,45,45,0.02) 100%);
    border: 1px solid rgba(255,45,45,0.2);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin: 20px 0;
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}

.app-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.app-card h4 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.app-card p {
    color: var(--text-secondary);
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}

.app-platform {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-light);
    background: rgba(255, 45, 45, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
}

/* Steps List */
.steps-list {
    margin: 20px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
}

/* Legal Footer */
.legal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Business Grid for About Page */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
}

.business-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.business-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.business-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.business-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.business-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Access Info */
.access-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.access-info p {
    margin-bottom: 8px;
}

.access-info p:last-child {
    margin-bottom: 0;
}

.access-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Page - Centered Layout */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .contact-info-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.contact-info-row .contact-info-card {
    text-align: center;
    padding: 24px 20px;
}

.contact-info-row .info-card-icon {
    margin: 0 auto 12px;
}

.contact-info-row .contact-info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-info-row .contact-info-card p {
    font-size: 0.85rem;
    margin: 0;
}

.contact-form-wrapper-centered {
    max-width: 700px;
    margin: 0 auto;
}

/* Override old layout */
.contact-layout {
    display: block;
    max-width: 100%;
}

/* WordPress Price Note */
.wp-price-note {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255,45,45,0.15) 0%, rgba(255,45,45,0.05) 100%);
    border: 1px solid rgba(255,45,45,0.3);
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.wp-price-note strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* New Projects Section */
.new-projects-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.section-label-small {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
}

.new-projects-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 12px 0;
    line-height: 1.4;
}

.new-projects-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 45, 45, 0.08);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: rgba(255, 45, 45, 0.15);
    border-color: rgba(255, 45, 45, 0.4);
}

/* App Store Buttons */
.works-sidebar-card.app-stores {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn.ios {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.store-btn.ios:hover {
    background: #1a1a1a;
    border-color: #555;
}

.store-btn.android {
    background: #01875f;
    color: #fff;
    border: 1px solid #01875f;
}

.store-btn.android:hover {
    background: #017a56;
}

.store-btn svg {
    flex-shrink: 0;
}

/* ==========================================
   Works Slider Styles
   ========================================== */
.works-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
}

.works-slider {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.works-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.works-slide-card {
    flex: 0 0 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-slide-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.works-slide-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.works-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.works-slide-card:hover .works-slide-image img {
    transform: scale(1.05);
}

.works-slide-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    color: var(--text-muted);
    font-size: 0.9rem;
}

.works-slide-platforms {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
}

.platform-tag {
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
}

.platform-tag.web { background: rgba(34, 197, 94, 0.9); }
.platform-tag.ios { background: rgba(59, 130, 246, 0.9); }
.platform-tag.android { background: rgba(249, 115, 22, 0.9); }

.works-slide-content {
    padding: 14px;
}

.works-slide-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.works-slide-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slider Navigation */
.slider-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .works-slide-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }
    
    .works-slider-wrapper {
        margin: 30px -20px;
        padding: 0 20px;
    }
    
    .works-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .works-slider::-webkit-scrollbar {
        display: none;
    }
    
    .works-slide-card {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    
    .works-slider-track {
        padding: 10px 0;
    }
}
/* ===================================
   CTA Section Improvements
   =================================== */

/* CTA Box - Centered with padding */
.cta-section {
    padding: 80px 20px;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
}

.cta-content {
    margin-bottom: 40px;
}

.cta-label {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Shimmering Glow Button */
.btn-primary.btn-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    margin-top: 20px;
    background: linear-gradient(135deg, #E85A3C, #ff7a5c);
    border: none;
    border-radius: 50px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.btn-primary.btn-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    border-radius: 52px;
    z-index: -1;
    animation: shimmer 2s infinite linear;
}

.btn-primary.btn-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E85A3C, #ff7a5c);
    border-radius: 50px;
    z-index: -1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(0deg);
    }
}

/* Button glow effect */
.btn-primary.btn-large {
    box-shadow:
        0 0 20px rgba(232, 90, 60, 0.4),
        0 0 40px rgba(232, 90, 60, 0.2),
        0 0 60px rgba(232, 90, 60, 0.1);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow:
            0 0 20px rgba(232, 90, 60, 0.4),
            0 0 40px rgba(232, 90, 60, 0.2),
            0 0 60px rgba(232, 90, 60, 0.1);
    }
    100% {
        box-shadow:
            0 0 30px rgba(232, 90, 60, 0.6),
            0 0 50px rgba(232, 90, 60, 0.3),
            0 0 70px rgba(232, 90, 60, 0.15);
    }
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(232, 90, 60, 0.6),
        0 0 60px rgba(232, 90, 60, 0.4),
        0 0 90px rgba(232, 90, 60, 0.2);
}

.btn-primary.btn-large svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Footer Mobile Improvements
   =================================== */

/* Desktop Footer */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-icon {
    flex-shrink: 0;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E85A3C !important;
}

.contact-button-footer {
    background: linear-gradient(135deg, #E85A3C, #ff7a5c);
    padding: 8px 20px !important;
    border-radius: 20px;
    color: #fff !important;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Footer - 2 Columns with smaller text */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .info-item {
        font-size: 11px;
        gap: 8px;
    }

    .info-icon {
        font-size: 12px;
    }

    .footer-map {
        height: 150px;
    }

    .footer-middle {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    /* 2 Column Layout for Links */
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 15px;
        justify-items: start;
    }

    .footer-link {
        font-size: 11px;
        padding: 4px 0;
    }

    .contact-button-footer {
        grid-column: span 2;
        justify-self: center;
        margin-top: 10px;
        font-size: 12px !important;
        padding: 10px 24px !important;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .copyright {
        font-size: 10px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .btn-primary.btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .info-item {
        font-size: 10px;
    }

    .footer-link {
        font-size: 10px;
    }

    .footer-links {
        gap: 8px 12px;
    }
}
/* ===================================
   B19 Theme - CTA Section Fix
   =================================== */

/* CTA Section Centering */
.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section .cta-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .cta-content {
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2,
.cta-section p,
.cta-section .section-label {
    text-align: center;
}

/* Shimmering Glow Button */
.cta-section .btn,
.cta-section .btn-primary,
.btn.btn-primary.btn-large,
a.btn.btn-primary.btn-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    margin-top: 20px;
    background: linear-gradient(135deg, #E85A3C, #ff7a5c) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 0 20px rgba(232, 90, 60, 0.4),
        0 0 40px rgba(232, 90, 60, 0.2),
        0 0 60px rgba(232, 90, 60, 0.1);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.cta-section .btn::before,
a.btn.btn-primary.btn-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -200%;
    width: 200%;
    height: calc(100% + 4px);
    background: linear-gradient(
        90deg,
        transparent,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent,
        transparent
    );
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { left: -200%; }
    100% { left: 200%; }
}

@keyframes pulse-glow {
    0% {
        box-shadow:
            0 0 20px rgba(232, 90, 60, 0.4),
            0 0 40px rgba(232, 90, 60, 0.2);
    }
    100% {
        box-shadow:
            0 0 30px rgba(232, 90, 60, 0.6),
            0 0 50px rgba(232, 90, 60, 0.3),
            0 0 70px rgba(232, 90, 60, 0.15);
    }
}

.cta-section .btn:hover,
a.btn.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(232, 90, 60, 0.6),
        0 0 60px rgba(232, 90, 60, 0.4) !important;
}

/* ===================================
   B19 Theme - Footer Fix
   =================================== */

/* Desktop Footer */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-image {
    height: 44px;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-company-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #E85A3C;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Footer - 2 Columns */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-brand .logo-image {
    height: 44px;
        max-width: 140px;
        margin: 0 auto 15px;
    }

    .footer-company-info {
        font-size: 11px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-column li {
        margin-bottom: 8px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section .btn,
    a.btn.btn-primary.btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .footer-grid {
        gap: 20px 10px;
    }

    .footer-column a {
        font-size: 10px;
    }

    .footer-company-info {
        font-size: 10px;
    }
}

/* ===================================
   Contact Form Improvements
   =================================== */

/* Checkbox improvements - ensure checked state is visible */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.checkbox-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.checkbox-item.checked,
.checkbox-item:has(input:checked) {
    border-color: #E85A3C;
    background: rgba(232, 90, 60, 0.15);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: transparent;
}

.checkbox-item.checked .checkbox-custom,
.checkbox-item:has(input:checked) .checkbox-custom {
    background: #E85A3C;
    border-color: #E85A3C;
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-item.checked .checkbox-custom::after,
.checkbox-item:has(input:checked) .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.checkbox-item.checked .checkbox-label,
.checkbox-item:has(input:checked) .checkbox-label {
    color: #fff;
}

/* Form message styles */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    animation: slideDown 0.4s ease;
}

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

.form-message-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-success .message-icon {
    color: #22c55e;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message-error .message-icon {
    color: #ef4444;
}

.form-message .message-icon {
    flex-shrink: 0;
}

.form-message .message-icon svg {
    width: 24px;
    height: 24px;
}

.form-message .message-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

/* Button loading state */
.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Works Slide Description */
.works-slide-desc {
    color: #fff !important;
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.works-slide-card:hover .works-slide-desc {
    color: #fff !important;
    color: rgba(255, 255, 255, 0.8);
}

/* Works View All Button */
.works-view-all {
    text-align: center;
    margin-top: 40px;
}

.works-view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-view-all .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.works-view-all .btn svg {
    transition: transform 0.3s ease;
}

.works-view-all .btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .works-slide-desc {
    color: #fff !important;
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .works-view-all {
        margin-top: 30px;
    }
    
    .works-view-all .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===================================
   Services Page Styles
   =================================== */

.services-section {
    padding: 80px 0;
    background: var(--bg-primary, #0a0a0a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.service-card .subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E85A3C;
}

.service-link {
    font-size: 14px;
    color: #E85A3C;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    color: #E85A3C;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #E85A3C;
    border-radius: 50%;
}

.gradient-text {
    background: linear-gradient(135deg, #E85A3C, #ff7a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-secondary, #111);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232, 90, 60, 0.3), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: rgba(232, 90, 60, 0.1);
    border: 2px solid #E85A3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #E85A3C;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-icon {
        font-size: 36px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .process-line {
        display: none;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Pro Pages - Dark Theme Override
   =================================== */

/* Pro Hero Section */
.pro-hero,
.sf-pro-hero,
.bundle-hero {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%) !important;
    color: #fff !important;
    padding: 80px 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 40px;
}

.pro-hero h1,
.sf-pro-hero h1,
.bundle-hero h1 {
    color: #fff !important;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.pro-hero .price,
.sf-pro-hero .price,
.bundle-hero .price {
    font-size: 3em;
    font-weight: bold;
    color: #fff !important;
}

.pro-hero .price-period,
.sf-pro-hero .price-period {
    font-size: 1.2em;
    opacity: 0.9;
    color: #fff !important;
}

/* Features Grid */
.features-grid,
.sf-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature-card,
.sf-feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover,
.sf-feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-4px);
}

.feature-card .icon,
.sf-feature-card .icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3,
.sf-feature-card h3 {
    margin-bottom: 10px;
    color: #fff !important;
}

.feature-card p,
.sf-feature-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Comparison Table */
.comparison-section,
.sf-comparison-section {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.comparison-section h2,
.sf-comparison-section h2 {
    color: #fff !important;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table,
.sf-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent !important;
}

.comparison-table th,
.sf-comparison-table th {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%) !important;
    color: #fff !important;
    padding: 16px;
    font-weight: 600;
}

.comparison-table th:first-child,
.sf-comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child,
.sf-comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table td,
.sf-comparison-table td {
    padding: 16px;
    text-align: center;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.comparison-table tr:hover td,
.sf-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Checkout Section */
.checkout-section,
.sf-checkout-section {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(232, 90, 60, 0.3) !important;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

.checkout-section h2,
.sf-checkout-section h2 {
    color: #fff !important;
    margin-bottom: 20px;
}

.checkout-section p,
.sf-checkout-section p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.checkout-section .btn,
.sf-checkout-section .btn,
.checkout-section button,
.sf-checkout-section button {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.checkout-section .btn:hover,
.sf-checkout-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 90, 60, 0.3);
}

/* Pro Page General Overrides */
.pro-page-content,
.sf-pro-content {
    background: var(--bg-primary, #0a0a0a) !important;
    color: #fff !important;
}

.pro-page-content h1,
.pro-page-content h2,
.pro-page-content h3,
.pro-page-content h4 {
    color: #fff !important;
}

.pro-page-content p,
.pro-page-content li {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Bundle Page Specifics */
.bundle-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.bundle-product-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.bundle-product-card h3 {
    color: #fff !important;
}

.bundle-product-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-section h2 {
    color: #fff !important;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pro-hero,
    .sf-pro-hero,
    .bundle-hero {
        padding: 50px 20px;
    }
    
    .pro-hero h1,
    .sf-pro-hero h1,
    .bundle-hero h1 {
        font-size: 1.8em;
    }
    
    .pro-hero .price,
    .sf-pro-hero .price {
        font-size: 2.2em;
    }
    
    .comparison-section,
    .sf-comparison-section {
        padding: 20px;
        overflow-x: auto;
    }
    
    .checkout-section,
    .sf-checkout-section {
        padding: 24px;
        margin: 20px;
    }
}

/* ===================================
   Pro Pages - Dark Theme (New Design)
   =================================== */

.pro-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-bottom: 60px;
}

.pro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pro Hero Section */
.pro-hero-section {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%);
    color: #fff;
    padding: 80px 30px;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 60px;
}

.pro-hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
}

.pro-subtitle {
    font-size: 1.3em;
    opacity: 0.95;
    margin-bottom: 30px;
    color: #fff;
}

.pro-price {
    font-size: 3.5em;
    font-weight: bold;
    color: #fff;
}

.pro-price span {
    font-size: 0.4em;
    opacity: 0.9;
}

/* Pro Features Section */
.pro-features {
    margin-bottom: 60px;
}

.pro-features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #fff;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pro-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pro-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 90, 60, 0.3);
    transform: translateY(-5px);
}

.pro-feature-card.highlight {
    border-color: rgba(232, 90, 60, 0.5);
    background: rgba(232, 90, 60, 0.08);
}

.pro-feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.pro-feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.pro-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95em;
}

.pro-badge-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
}

/* Pro Comparison Table */
.pro-comparison {
    margin-bottom: 60px;
}

.pro-comparison h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #fff;
}

.pro-table-wrapper {
    overflow-x: auto;
}

.pro-comparison-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-comparison-table thead tr {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%);
}

.pro-comparison-table th {
    padding: 18px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.pro-comparison-table td {
    padding: 16px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.pro-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #fff;
}

.pro-comparison-table .check {
    color: #22c55e;
    font-size: 1.4em;
}

.pro-comparison-table .cross {
    color: #ef4444;
    font-size: 1.4em;
}

.pro-comparison-table .pro-highlight-row {
    background: rgba(232, 90, 60, 0.08);
}

/* Pro Checkout Section */
.pro-checkout {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(232, 90, 60, 0.4);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    margin: 0 auto 60px;
    text-align: center;
}

.pro-checkout h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.pro-checkout-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.pro-success-message {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.pro-success-message p {
    color: #22c55e;
    margin: 5px 0;
}

.pro-error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.pro-checkout-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.pro-checkout-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.pro-checkout-form input[type="email"]:focus {
    outline: none;
    border-color: #E85A3C;
    background: rgba(255, 255, 255, 0.08);
}

.pro-checkout-btn {
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.pro-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 90, 60, 0.4);
}

.pro-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pro-payment-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
    margin-top: 15px;
}

.pro-payment-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.pro-payment-cards img {
    opacity: 0.8;
    filter: brightness(1.2);
}

/* Pro FAQ Section */
.pro-faq {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pro-faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #fff;
}

.pro-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pro-faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.pro-faq-item h4 {
    color: #E85A3C;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.pro-faq-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Pro Other Plugins */
.pro-other-plugins {
    margin-bottom: 60px;
}

.pro-other-plugins h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    color: #fff;
}

.pro-plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pro-plugin-card {
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.pro-plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pro-plugin-card.green {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.pro-plugin-card.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.pro-plugin-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.pro-plugin-card h3 {
    margin-bottom: 10px;
    color: white;
}

.pro-plugin-card p {
    opacity: 0.9;
    color: white;
}

/* Pro Pages Responsive */
@media (max-width: 768px) {
    .pro-hero-section {
        padding: 50px 20px;
        border-radius: 0 0 16px 16px;
    }
    
    .pro-hero-section h1 {
        font-size: 2em;
    }
    
    .pro-price {
        font-size: 2.5em;
    }
    
    .pro-checkout {
        padding: 30px 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .pro-comparison-table th,
    .pro-comparison-table td {
        padding: 12px 10px;
        font-size: 0.9em;
    }
    
    .pro-features-grid,
    .pro-plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-faq-item {
        padding: 20px;
    }
}

/* Social Feed Pro - Instagram Gradient */
.pro-hero-section.instagram-gradient {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.pro-checkout-btn.instagram-btn {
    background: linear-gradient(135deg, #e1306c 0%, #f77737 100%);
}

.pro-checkout-btn.instagram-btn:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Pro Plugin Card - Purple */
.pro-plugin-card.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Pricing Features List */
.pro-pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pro-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.pro-pricing-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #E85A3C 0%, #ff7a5c 100%);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Pro Bundle CTA */
.pro-bundle-cta {
    margin: 60px 0;
}

.pro-bundle-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pro-bundle-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.pro-bundle-box p {
    color: rgba(255, 255, 255, 0.9);
}

.pro-bundle-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}

.pro-bundle-price span {
    font-size: 1rem;
    opacity: 0.8;
}

.pro-bundle-btn {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.pro-bundle-btn:hover {
    transform: scale(1.05);
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* AI Bot Chat Pro - Green Gradient */
.pro-hero-section.green-gradient {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.pro-checkout-btn.green-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.pro-checkout-btn.green-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* NEW Badge */
.pro-new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7em;
    font-weight: bold;
}

.pro-table-new {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: bold;
    margin-left: 5px;
}

/* Highlight Section */
.pro-highlight-section {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.pro-highlight-section h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.pro-highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pro-highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.7;
}

.pro-highlight-text strong {
    color: #00cec9;
}

.pro-highlight-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pro-highlight-text ul li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.pro-highlight-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cec9;
    font-weight: bold;
}

/* Mock UI */
.pro-mock-ui {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
}

.pro-mock-header {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-mock-stats {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.pro-mock-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pro-mock-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85em;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-mock-btn.primary {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    border: none;
}

/* Setup Guide Section */
.pro-setup-guide {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.pro-setup-guide h3 {
    color: #fff;
    margin-bottom: 10px;
}

.pro-setup-guide p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.pro-guide-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pro-guide-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Responsive for Highlight Section */
@media (max-width: 768px) {
    .pro-highlight-content {
        grid-template-columns: 1fr;
    }
    
    .pro-highlight-section {
        padding: 25px;
    }
}

/* Pro Bundle - Purple Gradient */
.pro-hero-section.purple-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pro-checkout-btn.purple-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pro-checkout-btn.purple-btn:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Pro Bundle Badge */
.pro-bundle-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.pro-savings-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    margin-top: 15px;
}

/* Bundle Plugins Grid */
.pro-bundle-plugins {
    margin: 60px 0;
}

.pro-bundle-plugins h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.pro-bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pro-bundle-card {
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.pro-bundle-card.green {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.pro-bundle-card.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pro-bundle-card.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.pro-bundle-card h3 {
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: #fff;
}

.pro-bundle-price-tag {
    opacity: 0.9;
    font-size: 0.95em;
}

.pro-bundle-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.pro-bundle-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.pro-bundle-features li::before {
    content: '✓';
    font-weight: bold;
}

/* Bundle Savings */
.pro-bundle-savings {
    margin: 60px 0;
}

.pro-bundle-savings h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.pro-savings-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.pro-savings-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.pro-savings-row.highlight {
    border-bottom: none;
}

.pro-old-price {
    text-decoration: line-through;
    opacity: 0.6;
}

.pro-new-price {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2em;
}

.pro-savings-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
    margin-top: 10px;
    border-top: 2px solid rgba(102, 126, 234, 0.5);
    color: #fff;
    font-weight: 600;
}

.pro-save-amount {
    color: #667eea;
    font-size: 1.3em;
}

.pro-savings-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-size: 0.9em;
}

/* Individual Links */
.pro-individual-links {
    margin: 60px 0;
    text-align: center;
}

.pro-individual-links h3 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: normal;
}

/* Responsive for Bundle */
@media (max-width: 768px) {
    .pro-bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-savings-card {
        margin: 0 10px;
    }
}

/* Google Cloud App - Blue Gradient */
.pro-hero-section.blue-gradient {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

/* App Sections */
.app-section {
    margin: 60px 0;
}

.app-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 1.8em;
}

.app-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.app-content-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.app-content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.app-content-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.app-content-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.app-feature-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.app-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
}

.app-feature-list li strong {
    color: #fff;
}

/* Privacy Grid */
.app-privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.app-privacy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.app-privacy-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.app-privacy-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.app-privacy-card a {
    color: #4285f4;
    text-decoration: none;
}

.app-privacy-card a:hover {
    text-decoration: underline;
}

/* Company Info */
.app-company-info {
    text-align: center;
}

.app-company-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.app-company-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
}

.app-company-card a {
    color: #4285f4;
    text-decoration: none;
}

.app-company-card a:hover {
    text-decoration: underline;
}

/* Responsive for App Pages */
@media (max-width: 768px) {
    .app-content-grid,
    .app-content-grid.three-col,
    .app-privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .app-content-card,
    .app-privacy-card {
        padding: 20px;
    }
}

/* Setup Guide Page */
.setup-guide-page .setup-content-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    color: #333;
}

.setup-guide-page .setup-content-wrapper h2 {
    color: #00b894 !important;
    border-bottom: 2px solid #00b894;
}

.setup-guide-page .setup-content-wrapper h3 {
    color: #333 !important;
}

.setup-guide-page .setup-content-wrapper p,
.setup-guide-page .setup-content-wrapper li {
    color: #444 !important;
}

.setup-guide-page .setup-content-wrapper a {
    color: #00b894;
}

.setup-guide-page .setup-content-wrapper .step-box {
    background: #f0fdf9;
    border-left-color: #00b894;
}

.setup-guide-page .setup-content-wrapper .button-link {
    background: #00b894;
}

.setup-guide-page .setup-content-wrapper .button-link:hover {
    background: #00a185;
}

.setup-back-link {
    text-align: center;
    margin: 40px 0;
}

.setup-back-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.setup-back-link a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .setup-guide-page .setup-content-wrapper {
        padding: 20px;
        margin: 20px 10px;
    }
}

/* ===================================
   About Page Styles
   =================================== */

/* Mission Section */
.about-mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.2em;
    color: #fff;
    line-height: 1.4;
    margin: 20px 0;
}

.mission-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1em;
    line-height: 1.8;
}

.mission-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-icon-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    font-size: 3em;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-icon-item:hover {
    background: rgba(232, 90, 60, 0.1);
    border-color: rgba(232, 90, 60, 0.3);
    transform: translateY(-5px);
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    color: #fff;
    font-size: 2em;
    margin-top: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.value-number {
    color: #E85A3C;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Services Showcase */
.about-services {
    padding: 80px 0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 90, 60, 0.3);
}

.service-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.service-content h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Company Link Section */
.about-company-link {
    padding: 60px 0;
}

.company-link-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.company-link-content h3 {
    color: #fff;
    margin-bottom: 8px;
}

.company-link-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-text h2 {
        font-size: 1.8em;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .company-link-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

/* ===================================
   Common Requests Section
   =================================== */

.common-requests {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.requests-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.requests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.request-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(232, 90, 60, 0.1);
    border: 1px solid rgba(232, 90, 60, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.request-tag:hover {
    background: rgba(232, 90, 60, 0.2);
    border-color: rgba(232, 90, 60, 0.5);
    transform: translateY(-2px);
}

.requests-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .common-requests {
        padding: 20px 15px;
    }
    
    .request-tag {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}
