/* ============================================
   PLADcloud.com — Styles
   Modern, professional, dark-mode forward
   ============================================ */

/* --- Variables --- */
:root {
    --bg-dark: #0a0a0f;
    --bg-section: #0f0f18;
    --bg-card: #151520;
    --bg-card-hover: #1a1a2e;
    --bg-input: #1a1a28;
    --border: #2a2a3e;
    --border-light: #3a3a50;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --accent-blue: #4d8eff;
    --accent-blue-glow: rgba(77, 142, 255, 0.15);
    --accent-purple: #8b5cf6;
    --accent-purple-glow: rgba(139, 92, 246, 0.15);
    --accent-green: #22c55e;
    --accent-green-glow: rgba(34, 197, 94, 0.15);
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #4d8eff 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a0f 0%, #0f0f18 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(77, 142, 255, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--accent-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: #6da5ff; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}
.nav.scrolled {
    border-bottom-color: var(--border);
    background: rgba(10, 10, 15, 0.95);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo-plad { color: var(--text-primary); }
.logo-cloud { color: var(--accent-blue); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(77, 142, 255, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(77, 142, 255, 0.35);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: var(--accent-blue-glow);
}
.btn-full { width: 100%; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77, 142, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 142, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(77, 142, 255, 0.08) 0%, rgba(139, 92, 246, 0.04) 40%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-blue-glow);
    border: 1px solid rgba(77, 142, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(21, 21, 32, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-mono);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg-section);
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-blue-glow);
    border: 1px solid rgba(77, 142, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tag-blue { background: var(--accent-blue-glow); border-color: rgba(77, 142, 255, 0.2); color: var(--accent-blue); }
.tag-purple { background: var(--accent-purple-glow); border-color: rgba(139, 92, 246, 0.2); color: var(--accent-purple); }
.tag-green { background: var(--accent-green-glow); border-color: rgba(34, 197, 94, 0.2); color: var(--accent-green); }
.tag-orange { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.2); color: var(--accent-orange); }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Pillars Grid --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}
.pillar-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}
.pillar-card[data-pillar="tba"] .pillar-icon { color: var(--accent-purple); }
.pillar-card[data-pillar="ai"] .pillar-icon { color: var(--accent-green); }
.pillar-card[data-pillar="logistics"] .pillar-icon { color: var(--accent-orange); }
.pillar-card[data-pillar="consulting"] .pillar-icon { color: #f59e0b; }
.pillar-card[data-pillar="consulting"] .pillar-link { color: #f59e0b; }
.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.pillar-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
}
.pillar-card[data-pillar="tba"] .pillar-link { color: var(--accent-purple); }
.pillar-card[data-pillar="ai"] .pillar-link { color: var(--accent-green); }
.pillar-card[data-pillar="logistics"] .pillar-link { color: var(--accent-orange); }

/* --- Product Layout --- */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.product-layout.reverse .product-info { order: 1; }
.product-layout.reverse .product-visual { order: 0; }
.product-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.tba-full {
    font-size: 0.5em;
    color: var(--text-muted);
    font-weight: 400;
}
.product-tagline {
    font-size: 1.15rem;
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 20px;
}
.product-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.feature-list {
    margin-bottom: 32px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-green);
}
.pricing-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-blue-glow);
    border: 1px solid rgba(77, 142, 255, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}
.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    font-family: var(--font-mono);
}
.price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pricing-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Mock Dashboard --- */
.mock-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.mock-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(21, 21, 32, 0.5);
}
.mock-dots {
    display: flex;
    gap: 6px;
}
.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}
.mock-dots span:first-child { background: var(--accent-red); }
.mock-dots span:nth-child(2) { background: var(--accent-orange); }
.mock-dots span:last-child { background: var(--accent-green); }
.mock-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 6px;
}
.mock-body {
    display: flex;
    min-height: 300px;
}
.mock-sidebar {
    width: 56px;
    border-right: 1px solid var(--border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mock-nav-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-dark);
}
.mock-nav-item.active {
    background: var(--accent-blue-glow);
    border: 1px solid rgba(77, 142, 255, 0.3);
}
.mock-content {
    flex: 1;
    padding: 16px;
}
.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.mock-stat-card {
    background: var(--bg-dark);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}
.mock-stat-label {
    width: 60%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin: 0 auto 8px;
}
.mock-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-blue);
}
.mock-stat-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.mock-table {
    background: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
}
.mock-table-header {
    height: 32px;
    background: rgba(77, 142, 255, 0.05);
    border-bottom: 1px solid var(--border);
}
.mock-table-row {
    height: 36px;
    border-bottom: 1px solid var(--border);
}
.mock-table-row:last-child { border-bottom: none; }

/* --- Mock Kanban --- */
.mock-kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-card);
}
.kanban-col {
    background: var(--bg-dark);
    border-radius: 8px;
    padding: 12px 8px;
}
.kanban-col-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    padding: 0 4px;
}
.kanban-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    transition: var(--transition);
}
.kanban-card.active {
    border-color: rgba(77, 142, 255, 0.3);
    box-shadow: 0 0 12px rgba(77, 142, 255, 0.1);
}
.kanban-card.done { opacity: 0.6; }
.kanban-card-tag {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 8px;
}
.kanban-card-tag.tag-red { background: var(--accent-red); }
.kanban-card-tag.tag-yellow { background: var(--accent-orange); }
.kanban-card-tag.tag-blue { background: var(--accent-blue); }
.kanban-card-tag.tag-purple { background: var(--accent-purple); }
.kanban-card-tag.tag-green { background: var(--accent-green); }
.kanban-card-text {
    width: 80%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 6px;
}
.kanban-card-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-light);
    margin-left: auto;
}

/* --- AI Grid --- */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.ai-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.ai-card-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
    margin-bottom: 16px;
}
.ai-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ai-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.ai-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.ai-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* --- About --- */
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}
.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.value h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-blue);
}
.value p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-light);
    z-index: 1;
}
.timeline-item.active .timeline-marker {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 12px rgba(77, 142, 255, 0.4);
}
.timeline-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Contact --- */
.section-contact {
    background: var(--bg-section);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-blue);
}
.contact-item strong {
    display: block;
    font-weight: 600;
}
.contact-item span, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.contact-item a:hover { color: var(--accent-blue); }
.contact-quick-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.contact-quick-links a {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* --- Form --- */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    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(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236a6a80'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* --- Footer --- */
.footer {
    padding: 64px 0 40px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
}
.footer-copy {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 20px !important;
}
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer-links a, .footer-links span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-links a:hover { color: var(--text-primary); }

/* --- Consulting Visual --- */
.consulting-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.consulting-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.consulting-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.consulting-stat-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(4px);
}
.consulting-stat-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.consulting-stat-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.consulting-stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Coming Soon Badge --- */
.coming-soon-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.coming-soon-badges .section-tag {
    margin-bottom: 0;
}
.coming-soon-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(245, 158, 11, 0.2); }
}

/* --- OKR Mockup --- */
.mock-okr {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.okr-header {
    margin-bottom: 24px;
    text-align: center;
}
.okr-quarter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 12px;
}
.okr-progress-bar {
    height: 8px;
    background: var(--bg-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.okr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #f59e0b);
    border-radius: 4px;
    transition: width 1s ease;
}
.okr-progress-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}
.okr-objective {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}
.okr-objective:last-child { margin-bottom: 0; }
.okr-obj-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.okr-obj-icon { font-size: 1.1rem; }
.okr-obj-title {
    font-weight: 700;
    font-size: 0.9rem;
}
.okr-kr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding-left: 28px;
}
.okr-kr:last-child { margin-bottom: 0; }
.okr-kr-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 0;
}
.okr-kr-bar {
    width: 80px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}
.okr-kr-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
}
.okr-kr-fill-green { background: var(--accent-green); }
.okr-kr-score {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}
.okr-score-green { color: var(--accent-green); }

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .product-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-layout.reverse .product-info { order: 0; }
    .product-layout.reverse .product-visual { order: 1; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px; }
    .stat-divider { display: none; }
    .hero-actions { flex-direction: column; align-items: center; }
    .section { padding: 64px 0; }
    .pillars-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .mock-kanban { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .mock-dashboard .mock-stat-row { grid-template-columns: 1fr; }
    .mock-kanban { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Deliver & Transfer Pages
   ============================================ */

/* --- Nav Deliver CTA --- */
.nav-deliver {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}
.nav-deliver:hover { opacity: 0.9; color: #fff !important; }
.nav-deliver.active { box-shadow: 0 0 12px rgba(34, 197, 94, 0.4); }

/* --- Green Button --- */
.btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.25);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.35);
    color: #fff;
}

/* --- Deliver Hero --- */
.deliver-hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.04) 40%, transparent 70%);
    border-radius: 50%;
}
.deliver-badge {
    background: var(--accent-green-glow) !important;
    border-color: rgba(34, 197, 94, 0.25) !important;
    color: var(--accent-green) !important;
}
.hero-accent-green {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Transfer Hero --- */
.transfer-hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(77, 142, 255, 0.04) 40%, transparent 70%);
    border-radius: 50%;
}
.transfer-limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.limited-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: limited-pulse-anim 2s ease-in-out infinite;
}
@keyframes limited-pulse-anim {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* --- Pay Section --- */
.pay-hero-rate {
    text-align: center;
    margin-bottom: 48px;
}
.pay-base-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.pay-base-amount {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--text-primary);
    letter-spacing: -0.03em;
}
.pay-base-unit {
    font-size: 0.4em;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Bonus Grid --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.bonus-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}
.bonus-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.1);
}
.bonus-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.bonus-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.bonus-amount {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.bonus-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Full Rate --- */
.pay-full-rate {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius);
    margin-bottom: 48px;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.05);
}
.pay-full-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.pay-full-amount {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--accent-green);
    letter-spacing: -0.03em;
}

/* --- Shift Bonus --- */
.shift-bonus-section {
    margin-bottom: 48px;
}
.shift-bonus-header {
    text-align: center;
    margin-bottom: 32px;
}
.shift-bonus-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.shift-bonus-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Pay Example --- */
.pay-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}
.pay-example-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-example-header h4 {
    font-size: 1rem;
    font-weight: 700;
}
.pay-example-scenario {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}
.pay-example-grid {
    padding: 20px 24px;
}
.pay-example-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.pay-example-row:last-child { border-bottom: none; }
.pay-example-label {
    font-weight: 600;
    font-size: 0.9rem;
}
.pay-example-calc {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
.pay-example-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
}
.pay-example-total {
    background: rgba(34, 197, 94, 0.05);
    margin: 8px -24px -20px;
    padding: 12px 24px !important;
    border-bottom: none !important;
}
.pay-example-total .pay-example-value {
    color: var(--accent-green);
    font-size: 1.15rem;
}
.pay-effective {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}
.pay-effective-label {
    font-weight: 700;
    font-size: 0.95rem;
}
.pay-effective-rate {
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* --- Additional Bonuses --- */
.additional-bonuses h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
}
.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.additional-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}
.additional-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.additional-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.additional-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.additional-amount {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 4px;
}
.additional-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Culture Section --- */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.culture-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}
.culture-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.culture-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.culture-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.culture-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Transfer Banner --- */
.transfer-banner {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    overflow: hidden;
}
.transfer-banner-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.transfer-banner-content {
    position: relative;
    z-index: 1;
}
.transfer-banner-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.transfer-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.transfer-banner p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* --- Apply Section --- */
.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.apply-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.apply-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}
.apply-requirements h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.apply-action-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.apply-card-inner {
    padding: 40px 32px;
    text-align: center;
}
.apply-card-inner h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.apply-card-inner > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}
.apply-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* --- Offer Grid --- */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.offer-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}
.offer-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.offer-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.offer-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Spots Remaining --- */
.spots-remaining {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.spots-bar {
    height: 10px;
    background: var(--bg-dark);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.spots-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-green), #4ade80);
    border-radius: 5px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.spots-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.spots-count {
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* --- Calculator --- */
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.calculator-inputs {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.calc-input-group {
    margin-bottom: 28px;
}
.calc-input-group:last-of-type {
    margin-bottom: 0;
}
.calc-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.calc-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-input-prefix {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.calc-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}
.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}
.calc-number-input {
    width: 80px;
    padding: 8px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    outline: none;
}
.calc-number-input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* --- Calc Bonuses --- */
.calc-bonuses {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.calc-bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}
.calc-bonus-check {
    font-size: 1.5rem;
}
.calc-bonus-label {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}
.calc-bonus-value {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.05rem;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

/* --- Calc Results --- */
.calc-result-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.08);
}
.calc-result-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.calc-result-rate {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--accent-green);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.calc-result-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Calc Breakdown --- */
.calc-breakdown {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}
.calc-breakdown-row span:first-child {
    color: var(--text-secondary);
}
.calc-breakdown-row span:last-child {
    font-family: var(--font-mono);
    font-weight: 600;
}
.calc-green { color: var(--accent-green) !important; }
.calc-breakdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}
.calc-breakdown-total span:first-child {
    font-weight: 700;
    color: var(--text-primary) !important;
}
.calc-breakdown-total span:last-child {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--accent-green);
}

/* --- Calc Comparison --- */
.calc-comparison {
    margin-bottom: 20px;
}
.calc-compare-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
}
.calc-compare-arrow {
    font-size: 1.2rem;
}

/* --- Calc Extras --- */
.calc-extras {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.calc-extra-item {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.calc-extra-item strong {
    color: var(--text-primary);
}

/* --- Transfer Form --- */
.transfer-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.transfer-form-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 28px;
}
.transfer-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.transfer-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.transfer-step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.transfer-step-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.transfer-step-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Transfer Form Card --- */
.transfer-form-wrap {
    position: relative;
}
.transfer-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.transfer-form .form-group {
    margin-bottom: 20px;
}
.transfer-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-required {
    color: var(--accent-red);
}
.transfer-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
}
.transfer-form .form-group input::placeholder {
    color: var(--text-muted);
}
.transfer-form .form-group input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.form-input-with-prefix {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}
.form-input-with-prefix:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.form-prefix {
    padding: 12px 0 12px 16px;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1rem;
}
.form-input-with-prefix input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 8px !important;
}
.form-error {
    font-size: 0.8rem;
    color: var(--accent-red);
    margin-top: 6px;
    display: none;
}
.form-error.visible {
    display: block;
}

/* --- Form Note Box --- */
.form-note-box {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(77, 142, 255, 0.05);
    border: 1px solid rgba(77, 142, 255, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}
.form-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.form-note-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.form-note-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Transfer Success State --- */
.transfer-success {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
}
.transfer-success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.transfer-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.transfer-success > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.transfer-success-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.transfer-success-sub a {
    color: var(--accent-green);
    font-weight: 600;
}
.transfer-success-timeline {
    margin-top: 24px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--radius-sm);
}
.transfer-success-timeline p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Deliver/Transfer Responsive --- */
@media (max-width: 1024px) {
    .bonus-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .calculator-layout { grid-template-columns: 1fr; }
    .transfer-form-layout { grid-template-columns: 1fr; }
    .apply-layout { grid-template-columns: 1fr; gap: 40px; }
    .additional-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .culture-grid { grid-template-columns: 1fr; }
    .transfer-banner { padding: 32px 24px; }
    .pay-example-row { grid-template-columns: 1fr auto; }
    .pay-example-calc { display: none; }
}

/* --- File Upload Styling --- */
.form-file-upload {
    position: relative;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-input);
}
.form-file-upload:hover {
    border-color: var(--accent-green);
    background: rgba(34, 197, 94, 0.05);
}
.form-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.form-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.form-file-icon {
    font-size: 2rem;
}
.form-file-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.form-file-hint {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.form-file-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.form-file-preview img {
    max-width: 200px;
    max-height: 140px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent-green);
    object-fit: cover;
}
.form-file-change {
    font-size: 0.8rem;
    color: var(--accent-blue);
}

/* --- Form Submit Error --- */
.form-submit-error {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-sm);
    color: #fca5a5;
    font-size: 0.9rem;
}
.form-submit-error a {
    color: #fff;
    text-decoration: underline;
}
