/* =====================================================
   BigAp - Site Vitrine CSS
   Modern, responsive, clean design
   ===================================================== */

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

:root {
    /* Colors - Dark theme with orange accents */
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --secondary: #f97316;
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --bg: #0f172a;
    --bg-light: #1e293b;
    --bg-dark: #020617;
    --border: #334155;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =====================================================
   Navigation
   ===================================================== */

.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    display: block;
    margin: 0;
    padding: 0;
}

.logo:hover {
    opacity: 0.8;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-left: 1.5rem;
}

.lang-selector a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-selector a:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.lang-selector a.active {
    color: var(--primary);
    font-weight: 600;
}

.lang-selector .separator {
    color: var(--border);
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    color: var(--primary);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary);
    color: white !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* =====================================================
   Buttons
   ===================================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(249, 115, 22, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

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

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

/* =====================================================
   Sections
   ===================================================== */

.section {
    padding: var(--section-padding) 0;
}

.section.bg-light {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle,
.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 50%, var(--bg-dark) 100%);
    border-bottom: 2px solid var(--primary);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* =====================================================
   Benefits Section
   ===================================================== */

.benefits {
    padding: 4rem 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2) brightness(1.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   Process Section
   ===================================================== */

.process {
    padding: 5rem 0;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* =====================================================
   FAQ Section
   ===================================================== */

.faq-home,
.faq-list {
    padding: 3rem 0;
}

.faq-home h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list .faq-item {
    margin-bottom: 1.5rem;
}

/* =====================================================
   Offer Details
   ===================================================== */

.offer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-block {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offer-block:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.offer-block.highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.offer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-block ul {
    margin-left: 1.5rem;
}

.offer-block li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin-left: 0 !important;
}

.check-list li {
    padding-left: 1.75rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Trust Content */
.trust-content,
.trust-list {
    max-width: 800px;
    margin: 2rem auto;
}

.trust-list {
    list-style: none;
    margin-left: 0;
}

.trust-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.trust-list li::before {
    content: "📦";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.trust-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.flow-step {
    text-align: center;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Ticket Examples */
.ticket-examples {
    margin-top: 3rem;
}

.ticket-examples h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ticket-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.ticket-size {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: 0.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.tech-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.tech-guarantee {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--success);
    border-radius: 0.5rem;
}

/* =====================================================
   Pricing Section
   ===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.pricing-card.special {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

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

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

.price-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features strong {
    color: var(--text);
}

.pricing-button {
    width: 100%;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Tickets Pricing */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ticket-pricing {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.ticket-pricing.highlight {
    border: 2px solid var(--primary);
}

.ticket-size-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ticket-size-badge.s {
    background: #10b981;
}

.ticket-size-badge.m {
    background: #3b82f6;
}

.ticket-size-badge.l {
    background: #8b5cf6;
}

.ticket-size-badge.xl {
    background: #f59e0b;
}

.ticket-pricing h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.ticket-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.ticket-examples {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.ticket-examples li {
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.ticket-examples li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.ticket-delay {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.tickets-info {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tickets-info h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.tickets-process {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}

.tickets-process li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.tickets-guarantee {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--success);
    border-radius: 0.5rem;
}

/* Pricing Timeline */
.pricing-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.timeline-step {
    flex: 1;
    text-align: center;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.timeline-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Initial Fees */
.initial-fees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fee-range {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.fee-range.special {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.fee-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fee-range h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.fee-range p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.fee-example {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.fee-examples {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.fee-examples li {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--border);
    line-height: 1.6;
}

.fee-examples li strong {
    color: var(--primary);
    font-weight: 600;
}

.fees-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
}

/* Trust Clauses */
.trust-clauses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.clause {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.clause h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.clause p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.clause ul {
    margin: 1rem 0 1rem 1.5rem;
}

.clause li {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.clause-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

/* =====================================================
   About Page
   ===================================================== */

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.photo-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Media */
.about-social {
    margin-top: 2rem;
    text-align: center;
}

.about-social h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* LinkedIn Badge */
.linkedin-badge {
    max-width: 320px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linkedin-badge-header {
    height: 54px;
    background: linear-gradient(135deg, #7ba7bc 0%, #a8bdc8 100%);
}

.linkedin-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    margin-top: -40px;
}

.linkedin-badge-photo {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid white;
    object-fit: contain;
    margin-bottom: 1rem;
    background: #f3f2ef;
}

.linkedin-icon-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.linkedin-icon-link:hover {
    transform: scale(1.1);
}

.linkedin-badge-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.linkedin-badge-headline {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    margin: 0.75rem 0 1.25rem 0;
    min-height: 2.8em;
}

.linkedin-badge-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: #0A66C2;
    border: 1px solid #0A66C2;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.linkedin-badge-link:hover {
    background: #0A66C2;
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.method-steps,
.method-card {
    margin-bottom: 2rem;
}

.method-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.method-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.method-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.method-card ul {
    margin: 1rem 0 1rem 1.5rem;
}

.method-card li {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.method-deliverable {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.stack-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stack-category {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.stack-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stack-category ul {
    list-style: none;
}

.stack-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.stack-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
}

.experience-content {
    max-width: 900px;
    margin: 2rem auto;
}

.experience-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.experience-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.experience-item ul {
    margin-left: 1.5rem;
}

.experience-item li {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* =====================================================
   Contact Page
   ===================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-side p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-guarantee {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.contact-guarantee h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-guarantee ul {
    list-style: none;
}

.contact-guarantee li {
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-guarantee li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: block;
}

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.cf-turnstile {
    margin: 1rem 0;
}

.btn-submit {
    width: 100%;
    position: relative;
}

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

.form-note a {
    color: var(--primary);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-message {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.form-message.success {
    border-left: 4px solid var(--success);
}

.form-message.error {
    border-left: 4px solid var(--error);
}

.form-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-message p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   Thank You Page
   ===================================================== */

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.next-steps {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    max-width: 500px;
    margin: 0 auto;
}

.next-steps li {
    padding: 0.5rem 0;
    line-height: 1.7;
}

.thank-you-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thank-you-contact {
    margin-top: 3rem;
}

.thank-you-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thank-you-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-contact a:hover {
    text-decoration: underline;
}

/* =====================================================
   Legal Pages
   ===================================================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* =====================================================
   CTA Section
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

/* =====================================================
   Examples Section
   ===================================================== */

.examples {
    padding: 4rem 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.example-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.example-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.example-card ul {
    list-style: none;
    margin-left: 0;
}

.example-card li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.example-card li strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* =====================================================
   Modal
   ===================================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: var(--bg-dark);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-success {
    border-color: #10b981;
}

.modal-error {
    border-color: #ef4444;
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-success .modal-icon {
    color: #10b981;
}

.modal-error .modal-icon {
    color: #ef4444;
}

.modal h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.modal-success h3 {
    color: #10b981;
}

.modal-error h3 {
    color: #ef4444;
}

.modal-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-close {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modal-error .modal-close {
    background: #ef4444;
}

.modal-error .modal-close:hover {
    background: #dc2626;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* =====================================================
   MCO/TMA Page Styles
   ===================================================== */

/* MCO Standards Grid */
.mco-standards,
.tma-process,
.versioning-content,
.guarantee-content {
    margin-top: 2rem;
}

.mco-standards h3,
.tma-process h3,
.versioning-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.standard-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.standard-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.standard-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.standard-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Definition Blocks */
.definition-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.definition-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.definition-block p {
    color: var(--text-light);
    line-height: 1.7;
}

/* MCO/TMA Content */
.mco-content,
.tma-content {
    margin-top: 1.5rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .section-intro {
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison th,
.comparison td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.comparison thead th {
    background: var(--bg-dark);
    color: var(--text);
    font-weight: 600;
}

.comparison tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison tbody td:first-child {
    font-weight: 600;
    color: var(--text);
}

/* =====================================================
   Responsive Design
   ===================================================== */

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

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

    .photo-placeholder {
        min-height: 250px;
    }

    .offer-details {
        grid-template-columns: 1fr;
    }

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

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

    .comparison {
        font-size: 0.9rem;
    }

    .comparison th,
    .comparison td {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-dark);
    border: 1px solid var(--border);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0.5rem;
    }

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

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

    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

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

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

    .hero-cta .btn {
        width: 100%;
    }

    /* Sections */
    .section {
        padding: var(--section-padding-mobile) 0;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    /* Grids */
    .benefits-grid,
    .process-steps,
    .pricing-grid,
    .tickets-grid,
    .initial-fees,
    .trust-clauses,
    .values-grid,
    .stack-categories,
    .tech-grid,
    .ticket-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing Timeline - Mobile */
    .pricing-timeline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .timeline-step {
        padding: 2rem 1rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .timeline-step h3 {
        font-size: 1.3rem;
    }

    .step-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

    .btn {
        padding: 0.75rem 1.5rem;
    }
}
