:root {
    --primary: #D97706;
    --primary-dark: #B45309;
    --primary-light: #FEF3C7;
    --accent: #1E3A5F;
    --accent-light: #2D5A8E;
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-700: #334155;
    --gray-500: #64748B;
    --gray-300: #CBD5E1;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
    --gradient-warm: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-tld {
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-500);
    -webkit-text-fill-color: var(--gray-500);
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta {
    background: var(--gradient-warm);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    color: white !important;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
}

/* ===== PAGE HEADER (for subpages) ===== */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(170deg, #FFFBEB 0%, #FFF7ED 30%, #F1F5F9 70%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header .section-label { margin-bottom: 1rem; }
.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.page-header p {
    font-size: 1.2rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== HERO (homepage) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(170deg, #FFFBEB 0%, #FFF7ED 30%, #F1F5F9 70%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.hero h1 span {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-warm);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gray-300);
    transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-white {
    background: white;
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

/* ===== HERO CARD ===== */
.hero-visual { position: relative; }
.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}
.hero-card-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #22C55E; }
.hero-card-title { font-size: 0.85rem; color: var(--gray-500); margin-left: 0.5rem; }
.task-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.task-item:nth-child(1) { animation-delay: 0.2s; }
.task-item:nth-child(2) { animation-delay: 0.4s; }
.task-item:nth-child(3) { animation-delay: 0.6s; }
.task-item:nth-child(4) { animation-delay: 0.8s; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.task-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C55E;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.task-pending { background: var(--primary-light); color: var(--primary); }
.task-label { font-size: 0.9rem; color: var(--gray-700); }
.task-label strong { color: var(--dark); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.2rem; }

/* ===== SECTIONS GENERAL ===== */
section { padding: 6rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle { font-size: 1.15rem; color: var(--gray-500); }

/* ===== COWORK INTRO ===== */
.cowork-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}
.cowork-intro-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.cowork-intro-text p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
}
.feature-list li::before {
    content: '\2192';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}
.cowork-visual {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.cowork-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
}
.cowork-visual h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}
.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.workflow-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.workflow-text { font-size: 0.95rem; opacity: 0.9; }

/* ===== CAPABILITIES GRID ===== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.capability-card {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.capability-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.capability-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.capability-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 1rem;
}
.service-card:hover .service-number { color: var(--primary-light); }
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-features li::before { content: '\2713'; color: var(--primary); font-weight: 700; }

/* ===== AUDIENCE ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.audience-card {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}
.audience-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.audience-card p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== USE CASES ===== */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.usecase-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}
.usecase-card:hover { background: rgba(255,255,255,0.08); border-color: var(--primary); }
.usecase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(217, 119, 6, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.usecase-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.usecase-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }
.dark-section {
    background: var(--dark);
    color: white;
}
.dark-section .section-label { color: var(--primary); }
.dark-section .section-title { color: white; }
.dark-section .section-subtitle { color: rgba(255,255,255,0.6); }
/* Light usecase variant */
.usecase-card-light {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}
.usecase-card-light:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.usecase-card-light h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.usecase-card-light p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

/* ===== REASONS ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.reason-card { text-align: center; padding: 2.5rem; }
.reason-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
}
.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.reason-card p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== PROCESS ===== */
.process-timeline {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: var(--gray-300);
}
.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}
.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.process-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.process-step-content p { color: var(--gray-500); font-size: 1rem; }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}
.pricing-card.featured { border-color: var(--primary); transform: scale(1.05); }
.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warm);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.pricing-card .pricing-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.pricing-note { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 2rem; }
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.pricing-features li {
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.pricing-features li::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.pricing-btn-primary { background: var(--gradient-warm); color: white; }
.pricing-btn-primary:hover { box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4); transform: translateY(-2px); }
.pricing-btn-outline { border: 2px solid var(--gray-300); color: var(--gray-700); }
.pricing-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-dark);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.contact-detail p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 0; }
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-100);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--gray-100);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 4rem 2rem 2rem;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand .logo .logo-tld { color: rgba(255,255,255,0.5); -webkit-text-fill-color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ===== ABOUT / OVER ERIK ===== */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}
.about-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    aspect-ratio: 1;
    object-fit: cover;
}
.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.about-text p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.about-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
}
.about-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.about-stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-photo { max-width: 250px; margin: 0 auto; }
    .about-stats { justify-content: center; }
}

/* ===== COMPARISON TABLE ===== */
.comparison-section { margin-top: 2rem; }
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.comparison-table thead th {
    background: var(--gradient-dark);
    color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}
.comparison-table thead th:first-child { width: 28%; }
.comparison-table thead th .table-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 0.2rem;
}
.comparison-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    vertical-align: top;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: rgba(241, 245, 249, 0.5);
}
.comparison-table tbody tr:hover td { background: rgba(254, 243, 199, 0.15); }
.comparison-table tbody tr:hover td:first-child { background: rgba(254, 243, 199, 0.3); }
.comparison-table .check { color: #22C55E; font-weight: 700; }
.comparison-table .cross { color: var(--gray-300); }
.comparison-highlight {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    margin-left: 0.4rem;
}
.comparison-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.comparison-card {
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.comparison-card-code {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: white;
}
.comparison-card-cowork {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-color: var(--primary);
}
.comparison-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.comparison-card-code h3 { color: #93C5FD; }
.comparison-card-cowork h3 { color: var(--primary-dark); }
.comparison-card p { font-size: 0.95rem; line-height: 1.6; }
.comparison-card-code p { color: rgba(255,255,255,0.7); }
.comparison-card-cowork p { color: var(--gray-700); }
.comparison-verdict {
    background: var(--gradient-warm);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    color: white;
    text-align: center;
    margin-top: 2rem;
}
.comparison-verdict h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.comparison-verdict p { font-size: 1rem; opacity: 0.9; }

@media (max-width: 968px) {
    .comparison-intro { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table thead th, .comparison-table tbody td { padding: 0.85rem 1rem; }
}

/* ===== BG VARIANTS ===== */
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-text { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .cowork-intro { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2.2rem; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 0.5rem; }
    .section-title { font-size: 1.8rem; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
