@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Lora:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');
/* sitebuilder.css - Corporate Technology Design System */

.s200-site {
    --s200-primary: #0a58ca;
    --s200-secondary: #17c1e8;
    --s200-primary-rgb: 10, 88, 202;
    --s200-secondary-rgb: 23, 193, 232;
    --s200-dark: #0b2c3d;
    --s200-light: #f5f9fc;
    --s200-text: #0f172a;
    --s200-muted: #64748b;
    --s200-radius: 20px;
    --s200-gap: 32px;
    --s200-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --s200-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --s200-font-family: 'Inter', system-ui, -apple-system, sans-serif;

    font-family: var(--s200-font-family);
    color: var(--s200-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.s200-site .s200-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--s200-gap);
}

.s200-site .s200-section {
    padding: 120px 0;
}

/* Typography */
.s200-site .s200-title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--s200-dark);
    letter-spacing: -0.02em;
}

.s200-site .s200-title-large {
    font-size: clamp(3rem, 7vw, 4.8rem);
}

.s200-site .s200-title-medium {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.s200-site .s200-title-small {
    font-size: 1.5rem;
}

.s200-site .s200-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--s200-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: block;
}

.s200-site .s200-text {
    font-size: 1.125rem;
    color: var(--s200-muted);
    margin-bottom: 32px;
}

/* Buttons */
.s200-site .s200-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: var(--s200-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    gap: 12px;
    font-size: 1rem;
}

.s200-site .s200-btn-primary {
    background: linear-gradient(135deg, var(--s200-primary) 0%, #0044aa 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(var(--s200-primary-rgb), 0.2);
}

.s200-site .s200-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--s200-primary-rgb), 0.3);
}

.s200-site .s200-btn-secondary {
    background: rgba(var(--s200-primary-rgb), 0.05);
    color: var(--s200-primary);
    border: 1px solid rgba(var(--s200-primary-rgb), 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.s200-site .s200-btn-secondary:hover {
    background: rgba(var(--s200-primary-rgb), 0.12);
    transform: translateY(-5px);
}

/* Navigation */
.s200-site .s200-nav {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Hero Section */
.s200-site .s200-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(var(--s200-secondary-rgb), 0.1), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(var(--s200-primary-rgb), 0.1), transparent 40%);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.s200-site .s200-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

/* Features */
.s200-site .s200-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.s200-site .s200-feature-card {
    padding: 48px;
    background: #ffffff;
    border-radius: var(--s200-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.s200-site .s200-feature-card:hover {
    /* hover efekti kaldırıldı */
}

.s200-site .s200-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--s200-primary-rgb), 0.06);
    color: var(--s200-primary);
    border-radius: 18px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.s200-site .s200-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.s200-site .s200-feature-card:hover .s200-icon {
    /* hover efekti kaldırıldı */
}

/* About Section */
.s200-site .s200-about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.s200-site .s200-about-text {
    flex: 1.2;
    min-width: 320px;
}

.s200-site .s200-signature {
    font-family: 'Dancing Script', cursive, Georgia, serif;
    font-size: 2rem;
    color: var(--s200-dark);
    margin-top: 32px;
    opacity: 0.9;
}

/* Services */
.s200-site .s200-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.s200-site .s200-service-item {
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.s200-site .s200-service-item:hover {
    background: var(--s200-light);
    transform: translateX(10px);
    border-color: var(--s200-secondary);
}

.s200-site .s200-service-check {
    width: 24px;
    height: 24px;
    background: var(--s200-secondary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Why Us */
.s200-site .s200-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.s200-site .s200-dot {
    width: 12px;
    height: 12px;
    background: var(--s200-secondary);
    border-radius: 4px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Stats */
.s200-site .s200-stats {
    background: #06111a;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.s200-site .s200-stats-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.s200-site .s200-stat-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--s200-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.s200-site .s200-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonials */
.s200-site .s200-testimonial-card {
    padding: 48px;
    background: #ffffff;
    border-radius: var(--s200-radius);
    box-shadow: var(--s200-shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.s200-site .s200-testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--s200-dark);
    margin-bottom: 32px;
    line-height: 1.8;
}

.s200-site .s200-testimonial-name {
    font-weight: 800;
    color: var(--s200-primary);
    font-size: 1.125rem;
}

/* Team */
.s200-site .s200-team-card {
    text-align: center;
    transition: all 0.4s ease;
}

.s200-site .s200-team-image {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    margin: 0 auto 24px;
    background: var(--s200-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-3deg);
}

.s200-site .s200-team-card:hover .s200-team-image {
    /* hover efekti kaldırıldı */
}

.s200-site .s200-team-card:hover .s200-team-image svg {
    /* hover efekti kaldırıldı */
}

/* Contact */
.s200-site .s200-contact-form {
    max-width: 650px;
    margin: 48px auto 0;
    background: #ffffff;
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.s200-site .s200-form-group {
    margin-bottom: 24px;
}

.s200-site .s200-form-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.s200-site .s200-form-input:focus {
    outline: none;
    border-color: var(--s200-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--s200-primary-rgb), 0.1);
}

.s200-site .s200-form-textarea {
    min-height: 160px;
    resize: vertical;
}

/* Footer */
.s200-site .s200-footer {
    background: #020617;
    color: #ffffff;
    padding: 100px 0 48px;
}

.s200-site .s200-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.s200-site .s200-footer-brand {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.s200-site .s200-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--s200-secondary);
}

.s200-site .s200-footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.s200-site .s200-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.s200-site .s200-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    text-align: center;
    color: #475569;
    font-size: 0.9375rem;
}

/* Animations */
@keyframes s200-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.s200-site .s200-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .s200-site .s200-section {
        padding: 80px 0;
    }

    .s200-site .s200-hero {
        text-align: center;
        padding-top: 120px;
    }

    .s200-site .s200-about-flex {
        gap: 40px;
    }

    .s200-site .s200-signature {
        text-align: center;
    }

    .s200-site .s200-contact-form {
        padding: 32px;
    }

    .s200-site .s200-nav-links {
        display: none !important;
        /* Simplified for mobile */
    }
}


/* s201-style.css - Premium Car Wash */


.s201-site {
    /* Design Tokens */
    --s201-primary: #0F172A;
    --s201-secondary: #F8FAFC;
    --s201-accent: #2563EB;
    --s201-text: #111827;
    --s201-muted: #6B7280;
    --s201-radius: 22px;
    --s201-gap: 28px;
    --s201-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --s201-font-heading: 'Montserrat', sans-serif;
    --s201-font-body: 'Roboto', sans-serif;

    font-family: var(--s201-font-body);
    color: var(--s201-text);
    background-color: var(--s201-secondary);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

/* Base Layout */
.s201-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--s201-gap);
    width: 100%;
}

.s201-section {
    padding: 100px 0;
}

.s201-title-main {
    font-family: var(--s201-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.s201-subtitle {
    font-size: 1.1rem;
    color: var(--s201-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.s201-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--s201-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

/* Buttons */
.s201-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--s201-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--s201-font-heading);
    font-size: 0.95rem;
}

.s201-btn-primary {
    background: var(--s201-accent);
    color: #fff;
}

.s201-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.s201-btn-outline {
    border-color: #fff;
    color: #fff;
}

.s201-btn-outline:hover {
    background: #fff;
    color: var(--s201-primary);
    transform: translateY(-3px);
}

.s201-btn-dark {
    background: var(--s201-primary);
    color: #fff;
}

.s201-btn-dark:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.s201-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.s201-nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.s201-nav.scrolled .s201-nav-link {
    color: #ffffff;
}

.s201-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s201-logo {
    font-family: var(--s201-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s201-logo-accent {
    color: var(--s201-accent);
}

.s201-nav-links {
    display: flex;
    gap: 40px;
}

.s201-nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.s201-nav-link:hover {
    color: var(--s201-accent);
}

/* Hero Section */
.s201-hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--s201-primary);
    color: #fff;
    overflow: hidden;
}

.s201-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.s201-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.s201-hero-content h1 {
    font-family: var(--s201-font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.s201-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.s201-hero-btns {
    display: flex;
    gap: 20px;
}

/* About Section */
.s201-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.s201-about-img {
    width: 100%;
    border-radius: var(--s201-radius);
    box-shadow: var(--s201-shadow);
}

.s201-focus-list {
    list-style: none;
    margin-top: 30px;
}

.s201-focus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.s201-focus-icon {
    width: 24px;
    height: 24px;
    background: var(--s201-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

/* Services Section */
.s201-services {
    background: #fff;
}

.s201-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s201-gap);
}

.s201-service-card {
    background: var(--s201-secondary);
    border-radius: var(--s201-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.s201-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--s201-shadow);
}

.s201-service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.s201-service-content {
    padding: 25px;
    flex-grow: 1;
}

.s201-service-title {
    font-family: var(--s201-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Why Choose Us */
.s201-why {
    background: var(--s201-primary);
    color: #fff;
}

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

.s201-why-item {
    text-align: center;
}

.s201-why-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--s201-accent);
    font-size: 2rem;
}

/* Process Section */
.s201-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.s201-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.s201-step-num {
    width: 60px;
    height: 60px;
    background: var(--s201-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1);
}

.s201-step-text {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pricing Section */
.s201-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s201-gap);
}

.s201-price-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: var(--s201-radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.s201-price-card.featured {
    background: var(--s201-primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--s201-shadow);
}

.s201-price-val {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--s201-font-heading);
    margin-bottom: 30px;
}

.s201-price-val small {
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Section */
.s201-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.s201-gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Testimonials */
.s201-testimonial-card {
    background: var(--s201-secondary);
    padding: 40px;
    border-radius: var(--s201-radius);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.s201-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--s201-primary);
}

/* Contact Section */
.s201-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    background: #fff;
    padding: 60px;
    border-radius: var(--s201-radius);
    box-shadow: var(--s201-shadow);
}

.s201-form-group {
    margin-bottom: 20px;
}

.s201-form-input {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.s201-form-input:focus {
    border-color: var(--s201-accent);
}

.s201-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.s201-footer {
    background: var(--s201-primary);
    color: #fff;
    padding: 80px 0 40px;
}

.s201-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--s201-muted);
}

/* Responsive */
@media (max-width: 1024px) {

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

@media (max-width: 768px) {

    .s201-about-grid,
    .s201-contact-wrapper,
    .s201-pricing-grid,
    .s201-gallery-grid {
        grid-template-columns: 1fr;
    }

    .s201-hero-btns {
        flex-direction: column;
    }

    .s201-nav-links {
        display: none;
    }
}

@media (max-width: 480px) {

    .s201-services-grid,
    .s201-why-grid,
    .s201-process-steps {
        grid-template-columns: 1fr;
    }
}


/* s203-style.css - Premium Women's Hairdresser */


.s203-site {
    /* Design Tokens */
    --s203-primary: #2E2A28;
    --s203-secondary: #FAF7F5;
    --s203-accent: #C6A27E;
    --s203-text: #1F1F1F;
    --s203-muted: #7A6F68;
    --s203-radius: 24px;
    --s203-gap: 30px;
    --s203-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    --s203-font-heading: 'Playfair Display', serif;
    --s203-font-body: 'Lora', serif;

    font-family: var(--s203-font-body);
    color: var(--s203-text);
    background-color: var(--s203-secondary);
    line-height: 1.7;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

/* Base Layout */
.s203-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s203-gap);
    width: 100%;
}

.s203-section {
    padding: 100px 0;
}

.s203-title-main {
    font-family: var(--s203-font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--s203-primary);
}

.s203-subtitle {
    font-size: 1.15rem;
    color: var(--s203-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.s203-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(198, 162, 126, 0.1);
    color: var(--s203-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

/* Buttons */
.s203-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: var(--s203-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--s203-font-body);
    font-size: 1rem;
}

.s203-btn-primary {
    background: var(--s203-accent);
    color: #fff;
}

.s203-btn-primary:hover {
    background: #b8956d;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(198, 162, 126, 0.3);
}

.s203-btn-outline {
    border-color: #fff;
    color: #fff;
}

.s203-btn-outline:hover {
    background: #fff;
    color: var(--s203-primary);
    transform: translateY(-4px);
}

.s203-btn-dark {
    background: var(--s203-primary);
    color: #fff;
}

.s203-btn-dark:hover {
    background: #1a1715;
    transform: translateY(-4px);
}

/* Navigation */
.s203-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.s203-nav.scrolled {
    background: rgba(46, 42, 40, 0.97);
    backdrop-filter: blur(12px);
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.s203-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s203-logo {
    font-family: var(--s203-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.s203-logo-accent {
    color: var(--s203-accent);
}

.s203-nav-links {
    display: flex;
    gap: 45px;
}

.s203-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.s203-nav-link:hover {
    color: var(--s203-accent);
}

/* Hero Section */
.s203-hero {
    height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--s203-primary);
    color: #fff;
    overflow: hidden;
}

.s203-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

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

.s203-hero-content h1 {
    font-family: var(--s203-font-heading);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
}

.s203-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.7;
}

.s203-hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* About Section */
.s203-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.s203-about-img {
    width: 100%;
    border-radius: var(--s203-radius);
    box-shadow: var(--s203-shadow);
}

.s203-about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--s203-text);
}

/* Services Section */
.s203-services {
    background: #fff;
}

.s203-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s203-gap);
}

.s203-service-card {
    background: var(--s203-secondary);
    border-radius: var(--s203-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.s203-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--s203-shadow);
}

.s203-service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.s203-service-content {
    padding: 30px;
    flex-grow: 1;
}

.s203-service-title {
    font-family: var(--s203-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--s203-primary);
}

/* Why Choose Us */
.s203-why {
    background: var(--s203-primary);
    color: #fff;
}

.s203-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.s203-why-item {
    text-align: center;
}

.s203-why-icon {
    width: 90px;
    height: 90px;
    background: rgba(198, 162, 126, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--s203-accent);
    font-size: 2.2rem;
}

/* Signature Styles Section */
.s203-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.s203-signature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--s203-radius);
    transition: transform 0.4s ease;
}

.s203-signature-img:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.s203-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s203-gap);
}

.s203-price-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: var(--s203-radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.s203-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--s203-shadow);
}

.s203-price-title {
    font-family: var(--s203-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--s203-primary);
}

/* Testimonials */
.s203-testimonial-card {
    background: #fff;
    padding: 50px;
    border-radius: var(--s203-radius);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--s203-shadow);
}

.s203-quote {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--s203-primary);
    line-height: 1.8;
}

.s203-client-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--s203-accent);
}

/* Contact Section */
.s203-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 90px;
    background: #fff;
    padding: 70px;
    border-radius: var(--s203-radius);
    box-shadow: var(--s203-shadow);
}

.s203-form-group {
    margin-bottom: 25px;
}

.s203-form-input {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #E5E0DC;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.s203-form-input:focus {
    border-color: var(--s203-accent);
}

.s203-form-textarea {
    min-height: 160px;
    resize: vertical;
}

/* Footer */
.s203-footer {
    background: var(--s203-primary);
    color: #fff;
    padding: 90px 0 45px;
}

.s203-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 45px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--s203-muted);
}

/* Responsive */
@media (max-width: 1024px) {

    .s203-services-grid,
    .s203-why-grid,
    .s203-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    .s203-about-grid,
    .s203-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .s203-hero-btns {
        flex-direction: column;
    }

    .s203-nav-links {
        display: none;
    }

    .s203-signature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .s203-services-grid,
    .s203-why-grid,
    .s203-pricing-grid {
        grid-template-columns: 1fr;
    }
}





/* sitebuilder.css - s202 Creative Studio */

.s202-site {
    /* Design System Variables */
    --s202-primary: #d6ff00;
    --s202-dark: #0b0b0b;
    --s202-light: #ffffff;
    --s202-text: #111111;
    --s202-muted: #6b7280;
    --s202-radius: 22px;
    --s202-gap: 28px;
    --s202-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --s202-font-family: system-ui, -apple-system, Segoe UI, sans-serif;

    font-family: var(--s202-font-family);
    color: var(--s202-text);
    background-color: var(--s202-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Base resets within root scope */
.s202-site * {
    box-sizing: border-box;
}

/* Core & Reset Elements with Prefixes */
.s202-site .s202-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--s202-gap);
    width: 100%;
}

.s202-site .s202-section {
    padding: 120px 0;
}

.s202-site .s202-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.s202-site .s202-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--s202-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: block;
}

.s202-site .s202-text {
    font-size: 1.125rem;
    color: var(--s202-muted);
    max-width: 600px;
}

.s202-site .s202-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background-color: var(--s202-primary);
    color: var(--s202-dark);
    border-radius: var(--s202-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.s202-site .s202-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(214, 255, 0, 0.3);
}

/* Navbar */
.s202-site .s202-nav {
    position: relative;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.s202-site .s202-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s202-site .s202-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--s202-dark);
}

.s202-site .s202-nav-links {
    display: flex;
    gap: 30px;
}

.s202-site .s202-nav-link {
    text-decoration: none;
    color: var(--s202-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.s202-site .s202-nav-link:hover {
    color: var(--s202-primary);
}

/* Hero Section */
.s202-site .s202-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--s202-dark);
    color: var(--s202-light);
    position: relative;
    overflow: hidden;
}

.s202-site .s202-hero .s202-title {
    color: var(--s202-light);
}

.s202-site .s202-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.s202-site .s202-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--s202-primary);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 1;
}

/* Stats Section */
.s202-site .s202-stats {
    background: var(--s202-dark);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.s202-site .s202-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s202-gap);
    text-align: center;
}

.s202-site .s202-stat-item {
    color: var(--s202-light);
}

.s202-site .s202-stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--s202-primary);
    display: block;
    margin-bottom: 5px;
}

.s202-site .s202-stat-label {
    font-size: 1.1rem;
    color: var(--s202-muted);
}

/* About Section */
.s202-site .s202-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.s202-site .s202-highlight-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.s202-site .s202-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.s202-site .s202-highlight-item::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--s202-primary);
    border-radius: 50%;
}

/* Experience Section */
.s202-site .s202-experience {
    background: #f8f8f8;
}

.s202-site .s202-exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.s202-site .s202-exp-card {
    background: var(--s202-light);
    padding: 40px;
    border-radius: var(--s202-radius);
    box-shadow: var(--s202-shadow);
    transition: transform 0.3s ease;
}

.s202-site .s202-exp-card:hover {
    transform: translateY(-10px);
}

.s202-site .s202-exp-year {
    color: var(--s202-primary);
    font-weight: 800;
    font-size: 0.9rem;
    background: var(--s202-dark);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.s202-site .s202-exp-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

/* Services Section */
.s202-site .s202-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s202-gap);
}

.s202-site .s202-service-card {
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--s202-radius);
    transition: all 0.3s ease;
}

.s202-site .s202-service-card:hover {
    /* hover efekti kaldırıldı */
}

.s202-site .s202-service-card:hover .s202-service-title,
.s202-site .s202-service-card:hover .s202-text {
    /* hover efekti kaldırıldı */
}

.s202-site .s202-service-card:hover .s202-service-title {
    /* hover efekti kaldırıldı */
}

.s202-site .s202-service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

/* Contact Section */
.s202-site .s202-contact-wrapper {
    background: var(--s202-dark);
    color: var(--s202-light);
    padding: 80px;
    border-radius: var(--s202-radius);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.s202-site .s202-form-group {
    margin-bottom: 20px;
}

.s202-site .s202-input {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--s202-light);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.s202-site .s202-input:focus {
    border-color: var(--s202-primary);
}

.s202-site .s202-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Blog Section */
.s202-site .s202-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s202-gap);
}

.s202-site .s202-blog-card {
    text-decoration: none;
    color: inherit;
}

.s202-site .s202-blog-date {
    color: var(--s202-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.s202-site .s202-blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.s202-site .s202-blog-card:hover .s202-blog-title {
    color: var(--s202-primary);
}

/* Final CTA Section */
.s202-site .s202-final-cta {
    background: var(--s202-primary);
    text-align: center;
    padding: 100px 0;
}

.s202-site .s202-final-cta .s202-title {
    color: var(--s202-dark);
    margin-bottom: 40px;
}

.s202-site .s202-btn-dark {
    background: var(--s202-dark);
    color: var(--s202-primary);
}

.s202-site .s202-btn-dark:hover {
    background: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Info Footer (New Section) */
.s202-site .s202-info-footer {
    background: var(--s202-light);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.s202-site .s202-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.s202-site .s202-info-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--s202-dark);
}

.s202-site .s202-info-text {
    font-size: 1rem;
    color: var(--s202-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.s202-site .s202-info-link {
    display: block;
    text-decoration: none;
    color: var(--s202-text);
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.s202-site .s202-info-link:hover {
    color: var(--s202-primary);
}

/* Footer (bonus) */
.s202-site .s202-footer {
    padding: 40px 0;
    background: var(--s202-dark);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .s202-site .s202-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .s202-site .s202-about-grid,
    .s202-site .s202-contact-wrapper,
    .s202-site .s202-exp-grid {
        grid-template-columns: 1fr;
    }

    .s202-site .s202-services-grid,
    .s202-site .s202-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .s202-site .s202-section {
        padding: 80px 0;
    }

    .s202-site .s202-stats-grid,
    .s202-site .s202-services-grid,
    .s202-site .s202-blog-grid {
        grid-template-columns: 1fr;
    }

    .s202-site .s202-nav-links {
        display: none;
    }
}

/* s204-style.css - Premium Bridal Studio */


.s204-site {
    /* Design Tokens */
    --s204-primary: #3A2F2F;
    --s204-secondary: #F7EFEA;
    --s204-accent: #E6C9A8;
    --s204-text: #2B2424;
    --s204-muted: #8C7C75;
    --s204-radius: 26px;
    --s204-gap: 34px;
    --s204-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
    --s204-font-heading: 'Cormorant Garamond', serif;
    --s204-font-body: 'Montserrat', sans-serif;

    font-family: var(--s204-font-body);
    color: var(--s204-text);
    background-color: var(--s204-secondary);
    line-height: 1.75;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

/* Base Layout */
.s204-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--s204-gap);
    width: 100%;
}

.s204-section {
    padding: 110px 0;
}

.s204-title-main {
    font-family: var(--s204-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--s204-primary);
    letter-spacing: -0.01em;
}

.s204-subtitle {
    font-size: 1.2rem;
    color: var(--s204-muted);
    max-width: 750px;
    margin: 0 auto 70px;
    line-height: 1.9;
    font-weight: 300;
}

.s204-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(230, 201, 168, 0.15);
    color: var(--s204-accent);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
}

/* Buttons */
.s204-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    border-radius: var(--s204-radius);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.45s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--s204-font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

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

.s204-btn-primary:hover {
    background: #d9b894;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 201, 168, 0.35);
}

.s204-btn-outline {
    border-color: #fff;
    color: #fff;
}

.s204-btn-outline:hover {
    background: #fff;
    color: var(--s204-primary);
    transform: translateY(-5px);
}

.s204-btn-dark {
    background: var(--s204-primary);
    color: #fff;
}

.s204-btn-dark:hover {
    background: #2a2020;
    transform: translateY(-5px);
}

/* Navigation */
.s204-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.45s ease;
    background: transparent;
}

.s204-nav.scrolled {
    background: rgba(58, 47, 47, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.s204-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s204-logo {
    font-family: var(--s204-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.s204-logo-accent {
    color: var(--s204-accent);
}

.s204-nav-links {
    display: flex;
    gap: 50px;
}

.s204-nav-link {
    color: #5a4a42;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.s204-nav-link:hover {
    color: var(--s204-accent);
}

/* Hero Section */
.s204-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--s204-primary);
    color: #fff;
    overflow: hidden;
}

.s204-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

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

.s204-hero-content h1 {
    font-family: var(--s204-font-heading);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
}

.s204-hero-content p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
}

.s204-hero-btns {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Story Section */
.s204-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.s204-story-img {
    width: 100%;
    border-radius: var(--s204-radius);
    box-shadow: var(--s204-shadow);
}

.s204-story-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--s204-text);
    font-weight: 300;
}

/* Philosophy Section */
.s204-philosophy {
    background: var(--s204-primary);
    color: #fff;
}

.s204-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.s204-philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.s204-philosophy-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 201, 168, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s204-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.s204-philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Collections Section */
.s204-collections {
    background: #fff;
}

.s204-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s204-gap);
}

.s204-collection-card {
    background: var(--s204-secondary);
    border-radius: var(--s204-radius);
    overflow: hidden;
    transition: all 0.45s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.s204-collection-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--s204-shadow);
}

.s204-collection-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.s204-collection-content {
    padding: 40px;
    flex-grow: 1;
}

.s204-collection-title {
    font-family: var(--s204-font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--s204-primary);
}

/* Process Section */
.s204-process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.s204-process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.s204-process-step::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 30px);
    background: rgba(230, 201, 168, 0.3);
}

.s204-process-step:last-child::before {
    display: none;
}

.s204-process-num {
    width: 50px;
    height: 50px;
    background: var(--s204-accent);
    color: var(--s204-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 12px rgba(230, 201, 168, 0.15);
}

.s204-process-text {
    font-size: 1.15rem;
    line-height: 1.8;
    padding-top: 10px;
}

/* Why Choose Us */
.s204-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.s204-why-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.s204-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 201, 168, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s204-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Atelier Experience */
.s204-atelier-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.s204-atelier-img {
    width: 100%;
    border-radius: var(--s204-radius);
    box-shadow: var(--s204-shadow);
}

/* Signature Details */
.s204-details {
    background: var(--s204-primary);
    color: #fff;
}

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

.s204-detail-item {
    text-align: center;
}

.s204-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 201, 168, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--s204-accent);
    font-size: 2rem;
}

/* Pricing Approach */
.s204-pricing {
    background: #fff;
}

.s204-pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--s204-text);
    padding: 50px;
    background: var(--s204-secondary);
    border-radius: var(--s204-radius);
}

/* Testimonials */
.s204-testimonial-card {
    background: #fff;
    padding: 60px;
    border-radius: var(--s204-radius);
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--s204-shadow);
}

.s204-quote {
    font-family: var(--s204-font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 35px;
    color: var(--s204-primary);
    line-height: 1.9;
    font-weight: 400;
}

.s204-bride-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--s204-accent);
}

/* FAQ Section */
.s204-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.s204-faq-item {
    background: #fff;
    padding: 35px 40px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.s204-faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.s204-faq-question {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--s204-primary);
}

/* Contact Section */
.s204-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    background: #fff;
    padding: 80px;
    border-radius: var(--s204-radius);
    box-shadow: var(--s204-shadow);
}

.s204-form-group {
    margin-bottom: 28px;
}

.s204-form-input {
    width: 100%;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #E8DDD5;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.s204-form-input:focus {
    border-color: var(--s204-accent);
}

.s204-form-textarea {
    min-height: 170px;
    resize: vertical;
}

/* Footer */
.s204-footer {
    background: var(--s204-primary);
    color: #fff;
    padding: 100px 0 50px;
}

.s204-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--s204-muted);
}

/* Responsive */
@media (max-width: 1024px) {

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

    .s204-philosophy-grid,
    .s204-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .s204-story-grid,
    .s204-atelier-grid,
    .s204-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .s204-hero-btns {
        flex-direction: column;
    }

    .s204-nav-links {
        display: none;
    }

    .s204-collections-grid {
        grid-template-columns: 1fr;
    }
}

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

/* s205-style.css - Premium Eveningwear Couture */


.s205-site {
    /* Design Tokens */
    --s205-primary: #4C1D95;
    --s205-secondary: #FDF2F8;
    --s205-accent: #EC4899;
    --s205-text: #1F1B2E;
    --s205-muted: #6B6478;
    --s205-radius: 24px;
    --s205-gap: 32px;
    --s205-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
    --s205-font-heading: 'DM Serif Display', serif;
    --s205-font-body: 'Inter', sans-serif;

    font-family: var(--s205-font-body);
    color: var(--s205-text);
    background-color: var(--s205-secondary);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

/* Base Layout */
.s205-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s205-gap);
    width: 100%;
}

.s205-section {
    padding: 100px 0;
}

.s205-title-main {
    font-family: var(--s205-font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--s205-primary);
}

.s205-subtitle {
    font-size: 1.25rem;
    color: var(--s205-muted);
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.s205-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(76, 29, 149, 0.1);
    color: var(--s205-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

/* Buttons */
.s205-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: var(--s205-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.s205-btn-primary {
    background: var(--s205-primary);
    color: #fff;
}

.s205-btn-primary:hover {
    background: var(--s205-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}

.s205-btn-outline {
    border-color: #fff;
    color: #fff;
}

.s205-btn-outline:hover {
    background: #fff;
    color: var(--s205-primary);
    transform: translateY(-5px);
}

.s205-btn-dark {
    background: var(--s205-text);
    color: #fff;
}

/* Navigation */
.s205-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.s205-nav.scrolled {
    background: rgba(253, 242, 248, 0.95);
    backdrop-filter: blur(15px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.s205-nav.scrolled .s205-logo,
.s205-nav.scrolled .s205-nav-link {
    color: var(--s205-primary);
}

.s205-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s205-logo {
    font-family: var(--s205-font-heading);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.s205-nav-links {
    display: flex;
    gap: 40px;
}

.s205-nav-link {
    color: #6b21a8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.s205-nav-link:hover {
    color: var(--s205-accent);
}

/* Hero Section */
.s205-hero {
    height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--s205-primary);
    color: #fff;
    overflow: hidden;
}

.s205-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.s205-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.s205-hero-content h1 {
    font-family: var(--s205-font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 24px;
}

.s205-hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.s205-hero-btns {
    display: flex;
    gap: 20px;
}

/* Sections */
.s205-statement {
    text-align: center;
    background: #fff;
}

.s205-statement-text {
    font-family: var(--s205-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--s205-primary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Philosophy */
.s205-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.s205-phil-item {
    display: flex;
    gap: 24px;
}

.s205-phil-num {
    font-family: var(--s205-font-heading);
    font-size: 3rem;
    color: var(--s205-accent);
    line-height: 1;
}

.s205-phil-content h4 {
    font-family: var(--s205-font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Collections */
.s205-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s205-gap);
}

.s205-collection-card {
    background: #fff;
    border-radius: var(--s205-radius);
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.s205-collection-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--s205-shadow);
}

.s205-col-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.s205-col-content {
    padding: 32px;
}

.s205-col-title {
    font-family: var(--s205-font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

/* Process */
.s205-process {
    background: var(--s205-primary);
    color: #fff;
}

.s205-process .s205-title-main {
    color: #fff;
}

.s205-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.s205-step {
    text-align: center;
    position: relative;
}

.s205-step-num {
    width: 60px;
    height: 60px;
    border: 2px solid var(--s205-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--s205-primary);
    z-index: 2;
    position: relative;
}

.s205-step-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Signature Elements */
.s205-signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s205-gap);
    text-align: center;
}

.s205-sig-item i {
    font-size: 2.5rem;
    color: var(--s205-accent);
    margin-bottom: 16px;
    display: block;
}

/* Atelier */
.s205-atelier-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.s205-atelier-img {
    width: 100%;
    border-radius: var(--s205-radius);
}

/* FAQ */
.s205-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.s205-faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.s205-faq-item h4 {
    font-family: var(--s205-font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--s205-primary);
}

/* Contact Wrapper */
.s205-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #fff;
    padding: 64px;
    border-radius: var(--s205-radius);
    box-shadow: var(--s205-shadow);
}

.s205-form-group {
    margin-bottom: 24px;
}

.s205-form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.s205-form-input:focus {
    border-color: var(--s205-accent);
}

.s205-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.s205-footer {
    background: var(--s205-text);
    color: #fff;
    padding: 80px 0 40px;
}

.s205-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.s205-footer-brand {
    max-width: 400px;
}

.s205-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.s205-footer-links h4 {
    margin-bottom: 20px;
    font-family: var(--s205-font-heading);
    font-size: 1.25rem;
}

.s205-footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.s205-footer-links a:hover {
    color: var(--s205-accent);
}

.s205-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

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

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

@media (max-width: 768px) {

    .s205-philosophy-grid,
    .s205-atelier-wrap,
    .s205-contact-wrap,
    .s205-faq-grid,
    .s205-collections-grid,
    .s205-process-grid {
        grid-template-columns: 1fr;
    }

    .s205-nav-links {
        display: none;
    }

    .s205-hero-content h1 {
        font-size: 3.5rem;
    }

    .s205-contact-wrap {
        padding: 32px;
    }
}

/* s206-style.css - Modern Tech Agency (SaaS Style) */


.s206-site {
    /* Design Tokens */
    --s206-primary: #2563EB;
    --s206-secondary: #F8FAFC;
    --s206-accent: #FACC15;
    --s206-pastel-blue: #EFF6FF;
    --s206-pastel-pink: #FDF2F8;
    --s206-pastel-green: #ECFDF5;
    --s206-text-dark: #0F172A;
    --s206-muted: #64748B;
    --s206-radius: 24px;
    --s206-gap: 32px;
    --s206-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --s206-font-heading: 'Poppins', sans-serif;
    --s206-font-body: 'Inter', sans-serif;

    font-family: var(--s206-font-body);
    color: var(--s206-text-dark);
    background-color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

/* Base Layout */
.s206-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--s206-gap);
    width: 100%;
}

.s206-section {
    padding: 120px 0;
}

.s206-title-main {
    font-family: var(--s206-font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--s206-text-dark);
}

.s206-subtitle {
    font-size: 1.15rem;
    color: var(--s206-muted);
    max-width: 650px;
    margin-bottom: 40px;
}

.s206-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--s206-pastel-blue);
    color: var(--s206-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* Buttons */
.s206-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--s206-font-heading);
    font-size: 1rem;
}

.s206-btn-primary {
    background: var(--s206-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.s206-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3);
}

.s206-btn-secondary {
    background: #fff;
    color: var(--s206-text-dark);
    border: 1px solid #E2E8F0;
}

.s206-btn-secondary:hover {
    background: var(--s206-secondary);
    transform: translateY(-3px);
}

/* Navigation */
.s206-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
}

.s206-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.s206-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s206-logo {
    font-family: var(--s206-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--s206-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.s206-logo-dot {
    width: 10px;
    height: 10px;
    background: var(--s206-primary);
    border-radius: 50%;
}

.s206-nav-links {
    display: flex;
    gap: 40px;
}

.s206-nav-link {
    color: var(--s206-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.s206-nav-link:hover {
    color: var(--s206-primary);
}

/* Hero Section */
.s206-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 90vh;
    background: radial-gradient(circle at top right, var(--s206-pastel-blue) 0%, transparent 50%),
        radial-gradient(circle at bottom left, var(--s206-pastel-pink) 0%, transparent 50%);
}

.s206-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.s206-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.s206-hero-img {
    width: 100%;
    border-radius: var(--s206-radius);
    box-shadow: var(--s206-shadow);
}

/* Services */
.s206-services {
    background: var(--s206-secondary);
}

.s206-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s206-gap);
}

.s206-service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    border-radius: var(--s206-radius);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.s206-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.85));
    z-index: 1;
    transition: background 0.4s ease;
}

.s206-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--s206-shadow);
}

.s206-service-card:hover::before {
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.95));
}

.s206-service-card .s206-card-title,
.s206-service-card .s206-subtitle {
    position: relative;
    z-index: 2;
    color: #fff;
}

.s206-service-card .s206-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.s206-card-title {
    font-family: var(--s206-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* About */
.s206-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.s206-about-img-wrap {
    position: relative;
}

.s206-exp-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--s206-primary);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Newsletter CTA */
.s206-newsletter {
    background: var(--s206-primary);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.s206-newsletter h2 {
    color: #fff;
}

.s206-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 40px auto 0;
}

.s206-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 14px;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Portfolio */
.s206-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s206-portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.s206-portfolio-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.s206-portfolio-item:hover .s206-portfolio-img {
    transform: scale(1.1);
}

/* Team */
.s206-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s206-gap);
}

.s206-team-card {
    text-align: center;
}

.s206-team-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Process */
.s206-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.s206-process-item {
    position: relative;
}

.s206-process-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--s206-pastel-blue);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

/* Stats */
.s206-stats {
    background: var(--s206-text-dark);
    color: #fff;
    border-radius: 40px;
    padding: 80px 0;
}

.s206-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.s206-stat-val {
    font-size: 3rem;
    font-weight: 700;
    color: var(--s206-accent);
}

/* Footer */
.s206-footer {
    background: var(--s206-secondary);
    padding: 100px 0 40px;
}

.s206-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #E2E8F0;
}

.s206-footer-bottom {
    padding-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--s206-muted);
}

/* Responsive */
@media (max-width: 1024px) {

    .s206-hero-grid,
    .s206-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .s206-services-grid,
    .s206-portfolio-grid,
    .s206-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .s206-services-grid,
    .s206-portfolio-grid,
    .s206-process-grid,
    .s206-stats-grid {
        grid-template-columns: 1fr;
    }

    .s206-nav-links {
        display: none;
    }

    .s206-hero {
        padding-top: 140px;
    }
}

.s206-card {
    background: #fff;
    padding: 48px;
    border-radius: var(--s206-radius);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.s206-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--s206-shadow);
    border-color: var(--s206-pastel-blue);
}

/* s207-style.css - KONTRAST Advertising Agency (Brutalist Editorial) */


.s207-site {
    /* Design Tokens */
    --s207-primary: #000000;
    --s207-secondary: #FFFFFF;
    --s207-accent: #FFD400;
    --s207-highlight: #7C3AED;
    --s207-bg: #F4F4F4;
    --s207-text: #000000;
    --s207-text-muted: #444444;
    --s207-font-heading: 'Space Grotesk', sans-serif;
    --s207-font-body: 'Inter', sans-serif;

    font-family: var(--s207-font-body);
    color: var(--s207-text);
    background-color: var(--s207-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.s207-site * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important;
    /* Brutalist: No rounded corners */
    box-shadow: none !important;
    /* Brutalist: No shadows */
}

/* Base Layout */
.s207-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.s207-section {
    padding: 140px 0;
}

.s207-title-xl {
    font-family: var(--s207-font-heading);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.s207-title-lg {
    font-family: var(--s207-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

/* Navigation */
.s207-nav {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--s207-secondary);
    border-bottom: 3px solid var(--s207-primary);
    padding: 20px 0;
}

.s207-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s207-logo {
    font-family: var(--s207-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--s207-primary);
}

.s207-nav-links {
    display: flex;
    gap: 30px;
}

.s207-nav-link {
    text-decoration: none;
    color: var(--s207-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.s207-nav-link:hover {
    /* hover efekti kaldırıldı */
}

.s207-btn-block {
    display: inline-block;
    padding: 15px 30px;
    background: var(--s207-primary);
    color: var(--s207-secondary);
    text-decoration: none;
    font-family: var(--s207-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 3px solid var(--s207-primary);
    transition: all 0.2s ease;
}

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

.s207-btn-block:hover {
    /* hover efekti kaldırıldı */
}

.s207-btn-accent:hover {
    /* hover efekti kaldırıldı */
}

/* Hero Section */
.s207-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--s207-secondary);
}

.s207-hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

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

.s207-hero-sub {
    font-size: 1.5rem;
    color: var(--s207-text-muted);
    margin: 40px 0;
    max-width: 600px;
    line-height: 1.4;
}

.s207-hero-img-wrap {
    height: 100%;
}

.s207-hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(1);
    border: 10px solid var(--s207-primary);
}

/* Stats Section */
.s207-stats {
    background: var(--s207-primary);
    color: var(--s207-secondary);
    padding: 80px 0;
}

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

.s207-stat-item {
    border-left: 2px solid var(--s207-accent);
    padding-left: 30px;
}

.s207-stat-val {
    font-family: var(--s207-font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--s207-accent);
}

.s207-stat-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* About Section */
.s207-about {
    background: var(--s207-bg);
}

.s207-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.s207-about-text {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
}

.s207-about-text p {
    margin-bottom: 40px;
}

.s207-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--s207-primary);
}

/* Services */
.s207-services-title-bg {
    background: var(--s207-accent);
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 80px;
}

.s207-services-list {
    display: flex;
    flex-direction: column;
}

.s207-service-item {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    padding: 60px 0;
    border-bottom: 2px solid var(--s207-primary);
    transition: background 0.3s ease;
}

.s207-service-item:hover {
    /* hover efekti kaldırıldı */
}

.s207-service-num {
    font-family: var(--s207-font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.s207-service-title {
    font-family: var(--s207-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.s207-service-desc {
    font-size: 1.2rem;
    max-width: 700px;
}

/* Projects */
.s207-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.s207-project-item {
    position: relative;
}

.s207-project-item:nth-child(even) {
    margin-top: 100px;
}

.s207-project-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 3px solid var(--s207-primary);
    transition: filter 0.3s ease;
}

.s207-project-item:hover .s207-project-img {
    filter: brightness(0.7);
}

.s207-project-info {
    margin-top: 25px;
}

.s207-project-name {
    font-family: var(--s207-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Pricing */
.s207-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.s207-price-card {
    border: 3px solid var(--s207-primary);
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.s207-price-card.highlight {
    background: var(--s207-primary);
    color: #fff;
}

.s207-price-name {
    font-family: var(--s207-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.s207-price-val {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.s207-price-features {
    list-style: none;
    margin-bottom: 60px;
    flex-grow: 1;
}

.s207-price-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.s207-price-card.highlight li {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Testimonials */
.s207-quote-box {
    background: var(--s207-highlight);
    color: #fff;
    padding: 100px;
    text-align: center;
}

.s207-quote {
    font-family: var(--s207-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    font-style: italic;
}

.s207-author {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact */
.s207-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.s207-form-field {
    margin-bottom: 30px;
}

.s207-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.s207-input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 3px solid var(--s207-primary);
    font-family: inherit;
    font-size: 1rem;
    color: var(--s207-primary);
    outline: none;
}

.s207-input:focus {
    background: var(--s207-secondary);
}

.s207-textarea {
    min-height: 200px;
    resize: none;
}

/* Footer */
.s207-footer {
    background: var(--s207-primary);
    color: #fff;
    padding: 80px 0;
}

.s207-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.s207-footer-logo {
    font-family: var(--s207-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--s207-accent);
}

.s207-socials {
    display: flex;
    gap: 40px;
}

.s207-social-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.s207-social-link:hover {
    color: var(--s207-accent);
}

/* Responsive */
@media (max-width: 1024px) {

    .s207-hero-split,
    .s207-about-layout,
    .s207-pricing-grid,
    .s207-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .s207-nav-links {
        display: none;
    }

    .s207-projects-grid {
        grid-template-columns: 1fr;
    }

    .s207-project-item:nth-child(even) {
        margin-top: 0;
    }

    .s207-section {
        padding: 80px 0;
    }

    .s207-quote-box {
        padding: 60px 20px;
    }

    .s207-service-item {
        grid-template-columns: 1fr;
    }
}

/* s208-style.css - Dark Experimental Digital Product */


.s208-site {
    /* Design Tokens - Light Technical Palette */
    --s208-base: #F8FAFC;
    --s208-bg-soft: #E2E8F0;
    --s208-bg-deep: #1E293B;
    --s208-accent-primary: #4F46E5;
    --s208-accent-secondary: #06B6D4;
    --s208-accent-triad: #F43F5E;
    --s208-text: #0F172A;
    --s208-text-muted: #64748B;
    --s208-font-ui: 'Inter', sans-serif;
    --s208-font-display: 'Syne', sans-serif;
    --s208-font-mono: 'Space Mono', monospace;

    background-color: var(--s208-base);
    color: var(--s208-text);
    font-family: var(--s208-font-ui);
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

.s208-footer-bottom-wrap {
    margin-top: 100px;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    grid-column: 2 / span 10;
}

.s208-grid-surface {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    width: 100%;
}

.s208-canvas-block {
    grid-column: 2 / span 10;
    padding: 160px 0;
    position: relative;
    z-index: 10;
}

/* Layered Depth */
.s208-depth-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    filter: blur(140px);
}

.s208-depth-layer.cyan {
    background: radial-gradient(circle, var(--s208-accent-secondary) 0%, transparent 60%);
    top: 20%;
}

.s208-depth-layer.purple {
    background: radial-gradient(circle, var(--s208-accent-primary) 0%, transparent 60%);
    bottom: 10%;
    top: auto;
}

/* Navigation - Enhanced Contextual */
.s208-context-nav {
    position: relative;
    z-index: 2000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--s208-accent-primary);
}

.s208-nav-circle {
    display: none;
}

.s208-nav-link {
    font-family: var(--s208-font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--s208-text);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.65;
}

.s208-nav-link:hover {
    opacity: 1;
    color: var(--s208-accent-primary);
    transform: translateX(-5px);
}

.s208-context-nav::before {
    display: none;
}

/* Typography Scale Jumps */
.s208-mega-title {
    font-family: var(--s208-font-display);
    font-size: clamp(3.5rem, 12vw, 14rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.s208-display-accent {
    -webkit-text-stroke: 1px rgba(15, 23, 42, 0.15);
    color: transparent;
}

.s208-mono-label {
    font-family: var(--s208-font-mono);
    font-size: 0.8rem;
    color: var(--s208-accent-secondary);
    margin-bottom: 24px;
    display: block;
}

/* Glass + Matte hybrid surfaces */
.s208-hybrid-surface {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.s208-hybrid-surface::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--s208-accent-secondary));
}

/* Non-centered Hero */
.s208-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.s208-hero-inner {
    grid-column: 2 / span 10;
    max-width: 100%;
}

.s208-bg-alt {
    background-color: var(--s208-bg-soft);
}

.s208-bg-dark {
    background-color: var(--s208-bg-deep);
    color: #fff;
}

.s208-bg-dark .s208-mega-title,
.s208-bg-dark .s208-text-muted {
    color: #fff;
}

.s208-bg-dark .s208-display-accent {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

/* Asymmetric Interactive Showcase */
.s208-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 100px;
    grid-column: 1 / span 12;
}

.s208-storyline {
    position: relative;
    padding-left: 100px;
    border-left: 4px solid var(--s208-accent-primary);
    grid-column: 2 / span 10;
}

.s208-showcase-item {
    grid-column: span 5;
    margin-bottom: 120px;
}

.s208-showcase-item:nth-child(even) {
    grid-column: 8 / span 5;
    margin-top: 100px;
}

.s208-showcase-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.s208-showcase-item:hover .s208-showcase-img {
    filter: grayscale(0) brightness(1);
    transform: scale(0.95);
}

/* Structural Interaction - Structural reveal */
.s208-reveal-block {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.s208-reveal-block.in-view {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Storytelling Story */
.s208-storyline {
    position: relative;
    padding-left: 100px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.s208-story-node {
    margin-bottom: 200px;
    max-width: 500px;
}

/* CTA logic - contextual */
.s208-context-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: var(--s208-font-mono);
    font-size: 14px;
    text-decoration: none;
    padding: 24px 48px;
    background: var(--s208-text);
    color: #fff;
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.s208-context-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Lab Cards Section */
.s208-lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin-top: 80px;
}

.s208-lab-card {
    background: #fff;
    padding: 60px;
    transition: all 0.4s ease;
}

.s208-lab-card:hover {
    background: var(--s208-bg-soft);
}

.s208-lab-tag {
    font-family: var(--s208-font-mono);
    font-size: 10px;
    background: var(--s208-accent-secondary);
    color: #fff;
    padding: 4px 8px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Footer broken flow */
.s208-footer {
    padding: 200px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.s208-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    grid-column: 1 / span 12;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .s208-canvas-block {
        grid-column: 1 / span 12;
        padding: 60px 20px;
    }

    .s208-mega-title {
        font-size: 5rem;
    }

    .s208-showcase-item {
        grid-column: 1 / span 12 !important;
        margin: 40px 0 !important;
    }

    .s208-footer-grid {
        grid-template-columns: 1fr;
    }
}
/* s209 - SEO Agency Landing Page Styles */
.s209-site {
    --s209-bg: #0E1220;
    --s209-bg-dark: #0A0D16;
    --s209-primary: #6366F1;
    --s209-secondary: #22D3EE;
    --s209-accent: #F97316;
    --s209-text: #F8FAFC;
    --s209-text-muted: #94A3B8;
    --s209-font: 'Outfit', sans-serif;
    --s209-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    background-color: var(--s209-bg);
    color: var(--s209-text);
    font-family: var(--s209-font);
    line-height: 1.6;
    overflow-x: hidden;
}

.s209-site * {
    box-sizing: border-box;
}

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

/* Typography Overrides */
.s209-h1 { font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.95; font-weight: 800; letter-spacing: -0.04em; }
.s209-h2 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
.s209-text-lg { font-size: 1.25rem; font-weight: 300; }

/* Grid System */
.s209-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Header */
.s209-header {
    position: relative;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--s209-transition);
}

.s209-header.scrolled {
    background: rgba(10, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.s209-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s209-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--s209-text);
    letter-spacing: -0.02em;
}

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

.s209-nav {
    display: flex;
    gap: 40px;
}

.s209-nav-link {
    text-decoration: none;
    color: var(--s209-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--s209-transition);
}

.s209-nav-link:hover {
    color: var(--s209-secondary);
}

/* Hero Section */
.s209-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.s209-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

.s209-hero-content {
    grid-column: 1 / span 8;
}

.s209-hero-sub {
    color: var(--s209-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 24px;
    display: block;
}

.s209-hero-desc {
    margin: 40px 0;
    max-width: 500px;
    color: var(--s209-text-muted);
}

.s209-btn {
    display: inline-block;
    padding: 18px 36px;
    background: var(--s209-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--s209-transition);
    border: none;
    cursor: pointer;
}

.s209-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Stats */
.s209-stats {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.s209-stat-item {
    grid-column: span 3;
    text-align: left;
}

.s209-stat-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--s209-text);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

/* Services */
.s209-section {
    padding: 160px 0;
}

.s209-service-row {
    grid-column: 1 / span 12;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    transition: var(--s209-transition);
}

.s209-service-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.s209-service-num {
    grid-column: 1 / span 1;
    font-size: 1rem;
    opacity: 0.2;
    font-weight: 700;
}

.s209-service-title {
    grid-column: 2 / span 4;
}

.s209-service-desc {
    grid-column: 7 / span 5;
    color: var(--s209-text-muted);
}

.s209-service-arrow {
    grid-column: 12 / span 1;
    text-align: right;
    font-size: 1.5rem;
    color: var(--s209-primary);
    transition: var(--s209-transition);
}

.s209-service-row:hover .s209-service-arrow {
    transform: translateX(10px);
}

/* Story Driven Content */
.s209-story-section {
    background: var(--s209-bg-dark);
}

.s209-story-split {
    grid-column: 1 / span 12;
    display: flex;
    gap: 80px;
    align-items: center;
}

.s209-story-img {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.s209-story-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

.s209-story-content {
    flex: 1;
}

/* Pricing - Standard değil */
.s209-pricing-grid {
    grid-column: 1 / span 12;
    margin-top: 80px;
}

.s209-price-tier {
    padding: 60px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s209-price-tier.featured {
    border-color: var(--s209-primary);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
}

.s209-price-info { max-width: 50%; }
.s209-price-val { font-size: 3rem; font-weight: 800; }
.s209-price-val span { font-size: 1rem; color: var(--s209-text-muted); font-weight: 400; }

/* Contact Form */
.s209-form {
    grid-column: 1 / span 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.s209-input-group {
    position: relative;
}

.s209-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    color: #fff;
    font-size: 1.25rem;
    font-family: inherit;
    transition: var(--s209-transition);
}

.s209-input:focus {
    outline: none;
    border-color: var(--s209-primary);
}

.s209-footer {
    padding: 100px 0 60px;
    background: var(--s209-bg-dark);
}

/* Animations */
.s209-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.s209-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .s209-stat-item { grid-column: span 6; }
    .s209-service-row { grid-template-columns: 1fr; gap: 20px; }
    .s209-service-title, .s209-service-desc, .s209-service-num, .s209-service-arrow { grid-column: auto; }
    .s209-story-split { flex-direction: column; }
    .s209-price-tier { flex-direction: column; text-align: center; gap: 40px; }
    .s209-price-info { max-width: 100%; }
}
/* anasayfa1 Hero Global & Typography */
:root {
    --anasayfa1-primary: #2563EB;
    --anasayfa1-text-dark: #0F172A;
    --anasayfa1-text-gray: #475569;
    --anasayfa1-bg-gradient: linear-gradient(135deg, #EFF6FF 0%, #FDF2F8 100%);
    --anasayfa1-radius-large: 24px;
    --anasayfa1-radius-btn: 12px;
}

.anasayfa1-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--anasayfa1-bg-gradient);
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}

.anasayfa1-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* İçerik Alanı */
.anasayfa1-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anasayfa1-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--anasayfa1-text-gray);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.anasayfa1-badge-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
}

.anasayfa1-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    color: var(--anasayfa1-text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.anasayfa1-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--anasayfa1-text-gray);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Butonlar */
.anasayfa1-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.anasayfa1-btn-primary {
    background: var(--anasayfa1-primary);
    color: white;
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    border-radius: var(--anasayfa1-radius-btn);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.anasayfa1-btn-secondary {
    color: var(--anasayfa1-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
}

/* Görsel Alanı */
.anasayfa1-hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.anasayfa1-image-wrapper {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    background: #fff;
    border-radius: var(--anasayfa1-radius-large);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

.anasayfa1-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--anasayfa1-radius-large) - 8px);
    background: linear-gradient(to bottom right, #f8fafc, #e2e8f0);
    display: block;
}

/* Responsive Kurallar */
@media (max-width: 992px) {
    .anasayfa1-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .anasayfa1-hero-visual {
        justify-content: center;
        order: 2;
    }
    
    .anasayfa1-hero-content {
        order: 1;
    }
}

@media (max-width: 640px) {
    .anasayfa1-hero {
        padding-top: 4rem;
    }
    .anasayfa1-hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .anasayfa1-btn-primary {
        width: 100%;
        text-align: center;
    }
}
/* anasayfa2 Typography-Driven Hero Styles */
:root {
    --anasayfa2-bg: #FFFFFF;
    --anasayfa2-text: #0F172A;
    --anasayfa2-text-muted: #64748B;
    --anasayfa2-accent: #2563EB;
    --anasayfa2-font-main: 'Poppins', system-ui, -apple-system, sans-serif;
    --anasayfa2-font-secondary: 'Inter', system-ui, sans-serif;
}

.anasayfa2-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--anasayfa2-bg);
    padding: 0 5%;
    /* Subtle noise texture simulation without images */
    background-image: radial-gradient(#e5e7eb 0.5px, transparent 0.5px);
    background-size: 40px 40px;
}

.anasayfa2-hero-container {
    max-width: 900px;
    width: 100%;
}

.anasayfa2-manifesto-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headline: Extra Large & Intentional Line Breaks */
.anasayfa2-headline {
    font-family: var(--anasayfa2-font-main);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--anasayfa2-text);
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.04em;
}

/* Supporting Text: Calm & Rational */
.anasayfa2-supporting-text {
    font-family: var(--anasayfa2-font-secondary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--anasayfa2-text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

/* CTA: Minimalist & Low Weight */
.anasayfa2-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.anasayfa2-btn-minimal {
    font-family: var(--anasayfa2-font-secondary);
    color: var(--anasayfa2-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--anasayfa2-text);
    /* No hover effects as per policy */
}

/* Trust Signal: Almost Invisible Confidence */
.anasayfa2-trust-signal {
    font-family: var(--anasayfa2-font-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #cbd5e1; /* Very subtle text */
}

/* Responsive Scaling: Maintaining structure */
@media (max-width: 768px) {
    .anasayfa2-hero {
        height: auto;
        padding: 10rem 5%;
    }
    
    .anasayfa2-headline {
        letter-spacing: -0.02em;
    }
}
/* WIMA Sites - Combined CSS */
/* Generated: 2026-01-28T09:59:11.218Z */

/* ========================================
   b100 (b100)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Lora:wght@400;500;600&display=swap');

.b100-site {
    --b100-primary: #8B4513;
    --b100-secondary: #D4A574;
    --b100-primary-rgb: 139, 69, 19;
    --b100-secondary-rgb: 212, 165, 116;
    --b100-dark: #2C1810;
    --b100-light: #FFF8F0;
    --b100-text: #3E2723;
    --b100-muted: #8D6E63;
    --b100-radius: 16px;
    --b100-gap: 32px;
    --b100-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --b100-font-heading: 'Playfair Display', serif;
    --b100-font-body: 'Lora', serif;

    font-family: var(--b100-font-body);
    color: var(--b100-text);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b100-site .b100-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b100-gap);
}

.b100-site .b100-section {
    padding: 100px 0;
}

/* Typography */
.b100-site .b100-title {
    font-family: var(--b100-font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--b100-dark);
}

.b100-site .b100-title-large {
    font-size: clamp(3rem, 6vw, 5rem);
}

.b100-site .b100-title-medium {
    font-size: clamp(2rem, 4vw, 3rem);
}

.b100-site .b100-title-small {
    font-size: 1.5rem;
}

.b100-site .b100-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b100-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.b100-site .b100-text {
    font-size: 1.125rem;
    color: var(--b100-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Buttons */
.b100-site .b100-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--b100-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--b100-font-body);
}

.b100-site .b100-btn-primary {
    background: var(--b100-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(var(--b100-primary-rgb), 0.3);
}

.b100-site .b100-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(var(--b100-primary-rgb), 0.4);
}

.b100-site .b100-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.b100-site .b100-btn-secondary:hover {
    background: #ffffff;
    color: var(--b100-primary);
}

/* Navigation */
.b100-site .b100-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.b100-site .b100-brand {
    font-family: var(--b100-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--b100-primary);
    letter-spacing: 1px;
}

.b100-site .b100-nav-link {
    color: var(--b100-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.b100-site .b100-nav-link:hover {
    color: var(--b100-primary);
}

/* Hero Section */
.b100-site .b100-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C1810 0%, #5D4037 100%);
    position: relative;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

.b100-site .b100-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.b100-site .b100-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.b100-site .b100-hero .b100-title {
    color: #ffffff;
}

.b100-site .b100-hero .b100-subtitle {
    color: var(--b100-secondary);
}

.b100-site .b100-hero .b100-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* Menu Section */
.b100-site .b100-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.b100-site .b100-menu-card {
    padding: 48px 32px;
    background: #ffffff;
    border-radius: var(--b100-radius);
    border: 2px solid var(--b100-light);
    text-align: center;
    transition: all 0.4s ease;
}

.b100-site .b100-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b100-shadow);
    border-color: var(--b100-secondary);
}

.b100-site .b100-menu-text {
    font-size: 1rem;
    color: var(--b100-muted);
    margin-bottom: 20px;
}

.b100-site .b100-menu-price {
    font-family: var(--b100-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b100-primary);
}

/* About Section */
.b100-site .b100-about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.b100-site .b100-about-image {
    flex: 1;
    min-width: 320px;
}

.b100-site .b100-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--b100-secondary), var(--b100-primary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--b100-shadow);
}

.b100-site .b100-about-text {
    flex: 1;
    min-width: 320px;
}

.b100-site .b100-stats-inline {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.b100-site .b100-stat-inline {
    text-align: center;
}

.b100-site .b100-stat-value-inline {
    font-family: var(--b100-font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--b100-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.b100-site .b100-stat-label-inline {
    font-size: 0.875rem;
    color: var(--b100-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.b100-site .b100-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.b100-site .b100-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--b100-radius);
    transition: all 0.4s ease;
}

.b100-site .b100-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--b100-shadow);
}

.b100-site .b100-gallery-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--b100-light), var(--b100-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.b100-site .b100-contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.b100-site .b100-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.b100-site .b100-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.b100-site .b100-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--b100-secondary);
}

.b100-site .b100-contact-icon svg {
    width: 40px;
    height: 40px;
}

.b100-site .b100-contact-title {
    font-family: var(--b100-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.b100-site .b100-contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.b100-site .b100-contact-form {
    flex: 1;
    min-width: 320px;
}

.b100-site .b100-form-group {
    margin-bottom: 20px;
}

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

.b100-site .b100-form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.b100-site .b100-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.b100-site .b100-form-input:focus {
    outline: none;
    border-color: var(--b100-secondary);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.b100-site .b100-footer {
    background: #1A0F0A;
    color: #ffffff;
    padding: 80px 0 40px;
}

.b100-site .b100-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.b100-site .b100-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.b100-site .b100-footer-title {
    font-family: var(--b100-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--b100-secondary);
}

.b100-site .b100-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.b100-site .b100-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b100-site .b100-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes b100-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b100-site .b100-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .b100-site .b100-section {
        padding: 60px 0;
    }

    .b100-site .b100-hero {
        padding-top: 100px;
        min-height: 80vh;
    }

    .b100-site .b100-nav-links {
        display: none !important;
    }

    .b100-site .b100-about-flex {
        gap: 40px;
    }

    .b100-site .b100-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b100-site .b100-stats-inline {
        gap: 24px;
    }
}

/* ========================================
   b101 (b101)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.b101-site {
    --b101-primary: #0066FF;
    --b101-secondary: #00D4FF;
    --b101-primary-rgb: 0, 102, 255;
    --b101-secondary-rgb: 0, 212, 255;
    --b101-dark: #0A0E27;
    --b101-light: #F5F7FA;
    --b101-text: #1A1D2E;
    --b101-muted: #6B7280;
    --b101-radius: 20px;
    --b101-gap: 32px;
    --b101-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --b101-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    font-family: var(--b101-font);
    color: var(--b101-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
    letter-spacing: -0.01em;
}

.b101-site .b101-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b101-gap);
}

.b101-site .b101-section {
    padding: 120px 0;
}

/* Typography */
.b101-site .b101-title {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--b101-dark);
    letter-spacing: -0.03em;
}

.b101-site .b101-title-hero {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.04em;
}

.b101-site .b101-title-large {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
}

.b101-site .b101-title-medium {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.b101-site .b101-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b101-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
}

.b101-site .b101-text {
    font-size: 1.125rem;
    color: var(--b101-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.b101-site .b101-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.b101-site .b101-btn-primary {
    background: var(--b101-dark);
    color: #ffffff;
}

.b101-site .b101-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 14, 39, 0.3);
}

.b101-site .b101-btn-white {
    background: #ffffff;
    color: var(--b101-dark);
}

.b101-site .b101-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.b101-site .b101-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.b101-site .b101-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Navigation */
.b101-site .b101-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.b101-site .b101-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b101-dark);
    letter-spacing: -0.02em;
}

.b101-site .b101-nav-link {
    color: var(--b101-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.b101-site .b101-nav-link:hover {
    color: var(--b101-primary);
}

/* Hero Section */
.b101-site .b101-hero {
    padding: 140px 0 80px;
    background: #ffffff;
}

.b101-site .b101-hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.b101-site .b101-hero-text {
    font-size: 1.125rem;
    color: var(--b101-muted);
    line-height: 1.8;
    margin: 32px 0 40px;
    font-weight: 400;
}

.b101-site .b101-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

.b101-site .b101-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--b101-radius);
}

.b101-site .b101-hero-card-image {
    height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.b101-site .b101-hero-card-overlay {
    position: relative;
    z-index: 10;
}

.b101-site .b101-hero-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.b101-site .b101-hero-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Gradients */
.b101-site .b101-gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.b101-site .b101-gradient-2 {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

.b101-site .b101-gradient-3 {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

.b101-site .b101-gradient-4 {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
}

.b101-site .b101-gradient-5 {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
}

.b101-site .b101-gradient-6 {
    background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
}

.b101-site .b101-gradient-7 {
    background: linear-gradient(135deg, #FA709A 0%, #FEE140 100%);
}

.b101-site .b101-gradient-8 {
    background: linear-gradient(135deg, #30CFD0 0%, #330867 100%);
}

.b101-site .b101-gradient-9 {
    background: linear-gradient(135deg, #A8EDEA 0%, #FED6E3 100%);
}

.b101-site .b101-gradient-10 {
    background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
}

.b101-site .b101-gradient-11 {
    background: linear-gradient(135deg, #A18CD1 0%, #FBC2EB 100%);
}

.b101-site .b101-gradient-12 {
    background: linear-gradient(135deg, #FFECD2 0%, #FCB69F 100%);
}

/* Features Section */
.b101-site .b101-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.b101-site .b101-visual-box {
    height: 500px;
    border-radius: var(--b101-radius);
    display: flex;
    align-items: flex-end;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.b101-site .b101-visual-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.b101-site .b101-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b101-site .b101-feature-card {
    text-align: center;
    padding: 40px 24px;
}

.b101-site .b101-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin: 0 auto 24px;
}

.b101-site .b101-feature-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--b101-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.b101-site .b101-feature-text {
    font-size: 0.9375rem;
    color: var(--b101-muted);
}

/* Portfolio Section */
.b101-site .b101-portfolio-header {
    max-width: 800px;
    margin-bottom: 80px;
}

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

.b101-site .b101-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--b101-radius);
    transition: transform 0.4s ease;
}

.b101-site .b101-portfolio-item:hover {
    transform: translateY(-8px);
}

.b101-site .b101-portfolio-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.b101-site .b101-portfolio-image {
    height: 320px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.b101-site .b101-portfolio-item-large .b101-portfolio-image {
    height: 100%;
}

.b101-site .b101-portfolio-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.b101-site .b101-portfolio-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.b101-site .b101-portfolio-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Insights Section */
.b101-site .b101-insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.b101-site .b101-insights-nav {
    display: flex;
    gap: 40px;
}

.b101-site .b101-insights-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--b101-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.b101-site .b101-insights-link:hover,
.b101-site .b101-insights-link.b101-active {
    color: var(--b101-dark);
}

.b101-site .b101-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b101-site .b101-insight-card {
    transition: transform 0.3s ease;
}

.b101-site .b101-insight-card:hover {
    transform: translateY(-8px);
}

.b101-site .b101-insight-image {
    height: 280px;
    border-radius: var(--b101-radius);
    margin-bottom: 24px;
}

.b101-site .b101-insight-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b101-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.b101-site .b101-insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b101-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.b101-site .b101-insight-text {
    font-size: 0.9375rem;
    color: var(--b101-muted);
    line-height: 1.6;
}

/* CTA Section */
.b101-site .b101-cta {
    background: linear-gradient(135deg, var(--b101-dark) 0%, #1a1f3a 100%);
    padding: 120px 0;
    text-align: center;
}

.b101-site .b101-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.b101-site .b101-footer {
    background: var(--b101-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b101-site .b101-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b101-site .b101-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.b101-site .b101-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b101-site .b101-footer-link:hover {
    color: #ffffff;
}

.b101-site .b101-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b101-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b101-site .b101-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b101-site .b101-hero-grid {
        grid-template-columns: 1fr;
    }

    .b101-site .b101-features-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b101-site .b101-features-cards {
        grid-template-columns: 1fr;
    }

    .b101-site .b101-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .b101-site .b101-portfolio-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .b101-site .b101-insights-grid {
        grid-template-columns: 1fr;
    }

    .b101-site .b101-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b101-site .b101-section {
        padding: 80px 0;
    }

    .b101-site .b101-hero {
        padding: 120px 0 60px;
    }

    .b101-site .b101-nav-links {
        display: none !important;
    }

    .b101-site .b101-insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* ========================================
   b102 (b102)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.b102-site {
    --b102-primary: #FF6B35;
    --b102-secondary: #FF4500;
    --b102-primary-rgb: 255, 107, 53;
    --b102-secondary-rgb: 255, 69, 0;
    --b102-dark: #1A1A1A;
    --b102-light: #FFF5F0;
    --b102-text: #2D2D2D;
    --b102-muted: #6B6B6B;
    --b102-radius: 24px;
    --b102-gap: 32px;
    --b102-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --b102-font: 'Poppins', -apple-system, sans-serif;

    font-family: var(--b102-font);
    color: var(--b102-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b102-site .b102-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b102-gap);
}

.b102-site .b102-section {
    padding: 100px 0;
}

/* Typography */
.b102-site .b102-title {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--b102-dark);
}

.b102-site .b102-title-hero {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.b102-site .b102-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.b102-site .b102-title-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.b102-site .b102-section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b102-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 20px;
}

.b102-site .b102-text-large {
    font-size: 1.5rem;
    color: var(--b102-text);
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.b102-site .b102-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.b102-site .b102-btn-primary {
    background: linear-gradient(135deg, var(--b102-primary) 0%, var(--b102-secondary) 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(var(--b102-primary-rgb), 0.3);
}

.b102-site .b102-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--b102-primary-rgb), 0.4);
}

.b102-site .b102-btn-secondary {
    background: transparent;
    color: var(--b102-dark);
    border: 2px solid var(--b102-dark);
}

.b102-site .b102-btn-secondary:hover {
    background: var(--b102-dark);
    color: #ffffff;
}

/* Navigation */
.b102-site .b102-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.b102-site .b102-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b102-dark);
}

.b102-site .b102-nav-link {
    color: var(--b102-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.b102-site .b102-nav-link:hover {
    color: var(--b102-primary);
}

/* Hero Section */
.b102-site .b102-hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 50%, #8B2500 100%);
    position: relative;
    overflow: hidden;
}

.b102-site .b102-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    opacity: 0.4;
}

.b102-site .b102-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.b102-site .b102-hero-main {
    flex: 1;
}

.b102-site .b102-hero-label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    display: block;
    margin-bottom: 16px;
}

.b102-site .b102-hero .b102-title {
    color: #ffffff;
}

.b102-site .b102-hero-aside {
    flex: 0 0 400px;
    padding-top: 40px;
}

.b102-site .b102-hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.b102-site .b102-hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.b102-site .b102-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 10;
}

.b102-site .b102-service-item {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.b102-site .b102-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.b102-site .b102-service-number {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 12px;
}

.b102-site .b102-service-title {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

/* Tools Section */
.b102-site .b102-tools {
    background: var(--b102-dark);
    padding: 80px 0;
}

.b102-site .b102-tools-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}

.b102-site .b102-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.b102-site .b102-tool-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.b102-site .b102-tool-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.b102-site .b102-tool-name {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
}

/* About Section */
.b102-site .b102-about {
    padding: 120px 0;
    background: var(--b102-dark);
}

.b102-site .b102-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}

.b102-site .b102-about .b102-title {
    color: #ffffff;
}

.b102-site .b102-about .b102-section-label {
    color: var(--b102-primary);
}

.b102-site .b102-about-text {
    padding-top: 40px;
}

.b102-site .b102-about .b102-text-large {
    color: #ffffff;
    margin-bottom: 24px;
}

.b102-site .b102-about-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.b102-site .b102-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--b102-radius);
}

.b102-site .b102-portfolio-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.b102-site .b102-portfolio-item:hover .b102-portfolio-image {
    transform: scale(1.05);
}

.b102-site .b102-placeholder-1 {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
}

.b102-site .b102-placeholder-2 {
    background: linear-gradient(135deg, #3A3A3A 0%, #2C2C2C 100%);
}

.b102-site .b102-placeholder-3 {
    background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
}

/* Projects Section */
.b102-site .b102-projects {
    padding: 120px 0;
    background: #ffffff;
}

.b102-site .b102-projects-header {
    margin-bottom: 60px;
}

.b102-site .b102-projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.b102-site .b102-project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--b102-radius);
    transition: transform 0.4s ease;
}

.b102-site .b102-project-card:hover {
    transform: translateY(-10px);
}

.b102-site .b102-project-image {
    height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.b102-site .b102-project-overlay {
    position: relative;
    z-index: 10;
}

.b102-site .b102-project-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.b102-site .b102-project-category {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.b102-site .b102-gradient-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
}

.b102-site .b102-gradient-2 {
    background: linear-gradient(135deg, #FF4500 0%, #8B2500 100%);
}

.b102-site .b102-gradient-3 {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.b102-site .b102-gradient-4 {
    background: linear-gradient(135deg, #FFA07A 0%, #FF6347 100%);
}

/* Contact Section */
.b102-site .b102-contact {
    padding: 120px 0;
    background: var(--b102-light);
    text-align: center;
}

.b102-site .b102-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.b102-site .b102-footer {
    background: var(--b102-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b102-site .b102-footer .b102-brand {
    color: #ffffff;
}

.b102-site .b102-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
}

.b102-site .b102-footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.b102-site .b102-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b102-site .b102-footer-link:hover {
    color: var(--b102-primary);
}

.b102-site .b102-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b102-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b102-site .b102-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b102-site .b102-hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .b102-site .b102-hero-aside {
        flex: 1;
        padding-top: 0;
    }

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

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

    .b102-site .b102-about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b102-site .b102-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .b102-site .b102-projects-list {
        grid-template-columns: 1fr;
    }

    .b102-site .b102-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b102-site .b102-hero {
        padding: 120px 0 60px;
    }

    .b102-site .b102-services-grid {
        grid-template-columns: 1fr;
    }

    .b102-site .b102-tools-grid {
        grid-template-columns: 1fr;
    }

    .b102-site .b102-nav-links {
        display: none !important;
    }
}

/* ========================================
   b103 (b103)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.b103-site {
    --b103-primary: #60A5FA;
    --b103-secondary: #3B82F6;
    --b103-primary-rgb: 96, 165, 250;
    --b103-secondary-rgb: 59, 130, 246;
    --b103-dark: #0F172A;
    --b103-darker: #020617;
    --b103-light: #1E293B;
    --b103-text: #F1F5F9;
    --b103-muted: #94A3B8;
    --b103-radius: 16px;
    --b103-gap: 32px;
    --b103-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --b103-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b103-font);
    color: var(--b103-text);
    background-color: var(--b103-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b103-site .b103-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b103-gap);
}

.b103-site .b103-section {
    padding: 100px 0;
}

/* Typography */
.b103-site .b103-title {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b103-text);
}

.b103-site .b103-title-hero {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.b103-site .b103-title-large {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.b103-site .b103-title-medium {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 400;
}

.b103-site .b103-highlight {
    color: var(--b103-primary);
}

/* Buttons */
.b103-site .b103-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
}

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

.b103-site .b103-btn-primary:hover {
    background: var(--b103-primary);
    color: var(--b103-dark);
    transform: translateY(-2px);
}

.b103-site .b103-btn-secondary {
    background: transparent;
    color: var(--b103-text);
    border: 1px solid rgba(241, 245, 249, 0.2);
}

.b103-site .b103-btn-secondary:hover {
    background: rgba(241, 245, 249, 0.05);
    border-color: var(--b103-text);
}

/* Navigation */
.b103-site .b103-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.05);
}

.b103-site .b103-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b103-text);
}

.b103-site .b103-nav-link {
    color: var(--b103-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b103-site .b103-nav-link:hover {
    color: var(--b103-text);
}

/* Hero Section */
.b103-site .b103-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
}

.b103-site .b103-hero-blur {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.b103-site .b103-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.b103-site .b103-hero-text {
    font-size: 1.25rem;
    color: var(--b103-muted);
    margin: 24px 0 0;
    font-weight: 300;
}

.b103-site .b103-hero-badge {
    position: absolute;
    bottom: 100px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(241, 245, 249, 0.05);
    border: 1px solid rgba(241, 245, 249, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.b103-site .b103-badge-icon {
    font-size: 1.25rem;
}

.b103-site .b103-badge-text {
    font-size: 0.875rem;
    color: var(--b103-text);
    font-weight: 500;
}

/* About Section */
.b103-site .b103-about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.b103-site .b103-link {
    color: var(--b103-muted);
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 24px;
}

.b103-site .b103-link:hover {
    color: var(--b103-primary);
}

/* Services Section */
.b103-site .b103-section-header {
    margin-bottom: 60px;
}

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

.b103-site .b103-service-card {
    background: var(--b103-light);
    border: 1px solid rgba(241, 245, 249, 0.05);
    border-radius: var(--b103-radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.b103-site .b103-service-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-5px);
}

.b103-site .b103-service-card-wide {
    grid-column: span 3;
}

.b103-site .b103-service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.b103-site .b103-service-icon {
    font-size: 2rem;
}

.b103-site .b103-service-meta {
    text-align: right;
}

.b103-site .b103-service-time {
    font-size: 0.75rem;
    color: var(--b103-muted);
    margin-bottom: 4px;
}

.b103-site .b103-service-status {
    font-size: 0.75rem;
    color: #10B981;
}

.b103-site .b103-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b103-text);
    margin-bottom: 12px;
}

.b103-site .b103-service-text {
    font-size: 0.9375rem;
    color: var(--b103-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.b103-site .b103-service-footer {
    display: flex;
    justify-content: flex-end;
}

.b103-site .b103-service-btn {
    padding: 8px 20px;
    background: rgba(241, 245, 249, 0.05);
    border: 1px solid rgba(241, 245, 249, 0.1);
    border-radius: 6px;
    color: var(--b103-text);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b103-site .b103-service-btn:hover {
    background: rgba(241, 245, 249, 0.1);
}

.b103-site .b103-service-wide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.b103-site .b103-service-btn-large {
    padding: 12px 32px;
    background: var(--b103-text);
    color: var(--b103-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.b103-site .b103-service-btn-large:hover {
    background: var(--b103-primary);
}

/* Stats Section */
.b103-site .b103-stats {
    padding: 80px 0;
    background: var(--b103-dark);
    border-top: 1px solid rgba(241, 245, 249, 0.05);
    border-bottom: 1px solid rgba(241, 245, 249, 0.05);
}

.b103-site .b103-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.b103-site .b103-stat-value {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--b103-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.b103-site .b103-stat-label {
    font-size: 0.9375rem;
    color: var(--b103-muted);
}

/* Projects Section */
.b103-site .b103-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.b103-site .b103-project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--b103-radius);
    transition: transform 0.4s ease;
}

.b103-site .b103-project-card:hover {
    transform: translateY(-10px);
}

.b103-site .b103-project-image {
    height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.b103-site .b103-project-overlay {
    position: relative;
    z-index: 10;
}

.b103-site .b103-project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.b103-site .b103-project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.b103-site .b103-gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.b103-site .b103-gradient-2 {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.b103-site .b103-gradient-3 {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* CTA Section */
.b103-site .b103-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--b103-dark);
}

.b103-site .b103-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.b103-site .b103-cta-text {
    font-size: 1.25rem;
    color: var(--b103-muted);
    margin-top: 24px;
}

/* Footer */
.b103-site .b103-footer {
    background: var(--b103-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(241, 245, 249, 0.05);
}

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

.b103-site .b103-footer-text {
    color: var(--b103-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b103-site .b103-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b103-text);
}

.b103-site .b103-footer-link {
    color: var(--b103-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b103-site .b103-footer-link:hover {
    color: var(--b103-primary);
}

.b103-site .b103-footer-bottom {
    border-top: 1px solid rgba(241, 245, 249, 0.05);
    padding-top: 32px;
    text-align: center;
    color: var(--b103-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b103-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b103-site .b103-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b103-site .b103-services-grid {
        grid-template-columns: 1fr;
    }

    .b103-site .b103-service-card-wide {
        grid-column: span 1;
    }

    .b103-site .b103-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .b103-site .b103-projects-grid {
        grid-template-columns: 1fr;
    }

    .b103-site .b103-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b103-site .b103-hero-badge {
        position: static;
        margin-top: 60px;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .b103-site .b103-section {
        padding: 80px 0;
    }

    .b103-site .b103-hero {
        padding: 120px 0 80px;
    }

    .b103-site .b103-nav-links {
        display: none !important;
    }

    .b103-site .b103-service-wide-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .b103-site .b103-stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   b104 (b104)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.b104-site {
    --b104-primary: #10B981;
    --b104-secondary: #059669;
    --b104-primary-rgb: 16, 185, 129;
    --b104-secondary-rgb: 5, 150, 105;
    --b104-dark: #111827;
    --b104-darker: #030712;
    --b104-light: #1F2937;
    --b104-text: #F9FAFB;
    --b104-muted: #9CA3AF;
    --b104-radius: 20px;
    --b104-gap: 32px;
    --b104-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    --b104-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b104-font);
    color: var(--b104-text);
    background-color: var(--b104-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b104-site .b104-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b104-gap);
}

.b104-site .b104-section {
    padding: 120px 0;
}

.b104-site .b104-section-dark {
    background: var(--b104-dark);
}

/* Typography */
.b104-site .b104-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b104-text);
}

.b104-site .b104-title-hero {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.b104-site .b104-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.b104-site .b104-title-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.b104-site .b104-section-text {
    font-size: 1.125rem;
    color: var(--b104-muted);
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* Buttons */
.b104-site .b104-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
}

.b104-site .b104-btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.b104-site .b104-btn-primary {
    background: var(--b104-primary);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(var(--b104-primary-rgb), 0.3);
}

.b104-site .b104-btn-primary:hover {
    background: var(--b104-secondary);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(var(--b104-primary-rgb), 0.4);
}

.b104-site .b104-btn-secondary {
    background: transparent;
    color: var(--b104-text);
    border: 1px solid rgba(249, 250, 251, 0.2);
}

.b104-site .b104-btn-secondary:hover {
    background: rgba(249, 250, 251, 0.05);
    border-color: var(--b104-text);
}

/* Navigation */
.b104-site .b104-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 250, 251, 0.05);
}

.b104-site .b104-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b104-text);
}

.b104-site .b104-brand-icon {
    width: 32px;
    height: 32px;
    background: var(--b104-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

.b104-site .b104-nav-link {
    color: var(--b104-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b104-site .b104-nav-link:hover {
    color: var(--b104-text);
}

/* Hero Section */
.b104-site .b104-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.b104-site .b104-hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}

.b104-site .b104-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(249, 250, 251, 0.05);
    border: 1px solid rgba(249, 250, 251, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--b104-muted);
    margin-bottom: 32px;
}

.b104-site .b104-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--b104-primary);
    border-radius: 50%;
}

.b104-site .b104-hero-content {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.b104-site .b104-hero-text {
    font-size: 1.25rem;
    color: var(--b104-muted);
    margin-top: 24px;
    line-height: 1.7;
}

.b104-site .b104-hero-preview {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.b104-site .b104-preview-window {
    background: var(--b104-light);
    border: 1px solid rgba(249, 250, 251, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--b104-shadow);
}

.b104-site .b104-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(3, 7, 18, 0.5);
    border-bottom: 1px solid rgba(249, 250, 251, 0.05);
}

.b104-site .b104-preview-content {
    display: flex;
    padding: 24px;
    gap: 24px;
    min-height: 400px;
}

.b104-site .b104-preview-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b104-site .b104-preview-item {
    height: 40px;
    background: rgba(249, 250, 251, 0.05);
    border-radius: 8px;
}

.b104-site .b104-preview-main {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.b104-site .b104-preview-card {
    background: rgba(249, 250, 251, 0.05);
    border-radius: 12px;
    height: 180px;
}

.b104-site .b104-partners {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.b104-site .b104-partner-item {
    font-size: 1.125rem;
    color: var(--b104-muted);
    font-weight: 500;
    opacity: 0.6;
}

/* Features Section */
.b104-site .b104-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

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

.b104-site .b104-feature-card {
    background: var(--b104-light);
    border: 1px solid rgba(249, 250, 251, 0.05);
    border-radius: var(--b104-radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.b104-site .b104-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
}

.b104-site .b104-feature-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.b104-site .b104-feature-card-image {
    grid-row: span 2;
}

.b104-site .b104-card-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.b104-site .b104-card-dark {
    background: var(--b104-darker);
}

.b104-site .b104-feature-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b104-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.b104-site .b104-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--b104-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.b104-site .b104-feature-text {
    font-size: 1rem;
    color: var(--b104-muted);
    line-height: 1.7;
}

.b104-site .b104-feature-text-small {
    font-size: 0.875rem;
    color: var(--b104-muted);
    line-height: 1.6;
}

.b104-site .b104-feature-image {
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.1) 0%, rgba(249, 250, 251, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b104-site .b104-feature-play {
    width: 60px;
    height: 60px;
    background: var(--b104-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.b104-site .b104-feature-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(249, 250, 251, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
}

.b104-site .b104-badge-check {
    width: 40px;
    height: 40px;
    background: var(--b104-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

.b104-site .b104-badge-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b104-text);
}

.b104-site .b104-badge-time {
    font-size: 0.75rem;
    color: var(--b104-muted);
}

.b104-site .b104-feature-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 24px;
}

.b104-site .b104-chart-bar {
    flex: 1;
    background: var(--b104-primary);
    border-radius: 4px;
    opacity: 0.8;
}

.b104-site .b104-feature-stat {
    font-size: 4rem;
    font-weight: 700;
    color: var(--b104-text);
    line-height: 1;
}

.b104-site .b104-feature-avatars {
    display: flex;
    gap: -12px;
    margin-bottom: 16px;
}

.b104-site .b104-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 2px solid var(--b104-light);
    border-radius: 50%;
    margin-left: -12px;
}

.b104-site .b104-avatar:first-child {
    margin-left: 0;
}

/* Testimonials Section */
.b104-site .b104-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b104-site .b104-testimonial-card {
    background: var(--b104-light);
    border: 1px solid rgba(249, 250, 251, 0.05);
    border-radius: var(--b104-radius);
    padding: 32px;
}

.b104-site .b104-testimonial-rating {
    color: #FCD34D;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.b104-site .b104-testimonial-text {
    font-size: 1rem;
    color: var(--b104-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.b104-site .b104-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.b104-site .b104-author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border-radius: 50%;
}

.b104-site .b104-author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--b104-text);
}

.b104-site .b104-author-title {
    font-size: 0.875rem;
    color: var(--b104-muted);
}

/* CTA Section */
.b104-site .b104-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--b104-dark);
}

.b104-site .b104-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.b104-site .b104-cta-text {
    font-size: 1.25rem;
    color: var(--b104-muted);
    margin-top: 24px;
}

/* Footer */
.b104-site .b104-footer {
    background: var(--b104-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(249, 250, 251, 0.05);
}

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

.b104-site .b104-footer-text {
    color: var(--b104-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b104-site .b104-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b104-text);
}

.b104-site .b104-footer-link {
    color: var(--b104-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b104-site .b104-footer-link:hover {
    color: var(--b104-primary);
}

.b104-site .b104-footer-bottom {
    border-top: 1px solid rgba(249, 250, 251, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--b104-muted);
    font-size: 0.875rem;
}

.b104-site .b104-footer-links {
    display: flex;
    gap: 32px;
}

.b104-site .b104-footer-link-small {
    color: var(--b104-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.b104-site .b104-footer-link-small:hover {
    color: var(--b104-text);
}

/* Animations */
@keyframes b104-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b104-site .b104-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b104-site .b104-features-grid {
        grid-template-columns: 1fr;
    }

    .b104-site .b104-feature-card-large,
    .b104-site .b104-feature-card-image {
        grid-column: span 1;
        grid-row: span 1;
    }

    .b104-site .b104-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .b104-site .b104-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b104-site .b104-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .b104-site .b104-section {
        padding: 80px 0;
    }

    .b104-site .b104-hero {
        padding: 120px 0 80px;
    }

    .b104-site .b104-nav-links {
        display: none !important;
    }

    .b104-site .b104-preview-content {
        flex-direction: column;
    }

    .b104-site .b104-preview-sidebar {
        flex: 1;
    }

    .b104-site .b104-preview-main {
        grid-template-columns: 1fr;
    }

    .b104-site .b104-partners {
        gap: 32px;
    }
}

/* ========================================
   b105 (b105)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.b105-site {
    --b105-primary: #2C2C2C;
    --b105-secondary: #666666;
    --b105-light: #F5F5F5;
    --b105-lighter: #FAFAFA;
    --b105-text: #333333;
    --b105-muted: #888888;
    --b105-border: #E0E0E0;
    --b105-radius: 0;
    --b105-gap: 32px;
    --b105-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --b105-font: 'Montserrat', -apple-system, sans-serif;

    font-family: var(--b105-font);
    color: var(--b105-text);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b105-site .b105-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b105-gap);
}

.b105-site .b105-section {
    padding: 100px 0;
}

.b105-site .b105-section-dark {
    background: var(--b105-primary);
    color: #ffffff;
}

.b105-site .b105-section-light {
    background: var(--b105-lighter);
}

/* Typography */
.b105-site .b105-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b105-primary);
    letter-spacing: 0.05em;
}

.b105-site .b105-title-hero {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.2em;
}

.b105-site .b105-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
}

.b105-site .b105-title-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

.b105-site .b105-text {
    font-size: 1rem;
    color: var(--b105-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.b105-site .b105-section-dark .b105-title {
    color: #ffffff;
}

.b105-site .b105-section-dark .b105-text {
    color: rgba(255, 255, 255, 0.8);
}

.b105-site .b105-divider {
    width: 60px;
    height: 2px;
    background: var(--b105-primary);
    margin: 32px auto;
}

/* Buttons */
.b105-site .b105-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--b105-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.b105-site .b105-btn-primary {
    background: #ffffff;
    color: var(--b105-primary);
    border: 2px solid #ffffff;
}

.b105-site .b105-btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.b105-site .b105-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.b105-site .b105-btn-secondary:hover {
    background: #ffffff;
    color: var(--b105-primary);
}

/* Hero Section */
.b105-site .b105-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b105-site .b105-hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B9DC3 0%, #DFE3EE 100%);
    background-size: cover;
    background-position: center;
}

.b105-site .b105-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.b105-site .b105-hero-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.b105-site .b105-hero .b105-title {
    color: #ffffff;
}

.b105-site .b105-hero-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin: 24px 0 40px;
    color: rgba(255, 255, 255, 0.9);
}

.b105-site .b105-hero-social {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.b105-site .b105-social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.b105-site .b105-social-link:hover {
    opacity: 0.7;
}

/* Navigation */
.b105-site .b105-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--b105-border);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.b105-site .b105-nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.b105-site .b105-nav-logo {
    width: 48px;
    height: 48px;
    border: 2px solid var(--b105-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--b105-primary);
}

.b105-site .b105-nav-link {
    color: var(--b105-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.b105-site .b105-nav-link:hover {
    color: var(--b105-primary);
}

/* About Section */
.b105-site .b105-about-content {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.b105-site .b105-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.b105-site .b105-service-item {
    text-align: center;
}

.b105-site .b105-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b105-primary);
}

.b105-site .b105-service-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b105-primary);
    letter-spacing: 0.1em;
}

/* Portfolio Section */
.b105-site .b105-portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b105-site .b105-portfolio-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b105-site .b105-logo-item {
    text-align: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.b105-site .b105-logo-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.b105-site .b105-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.b105-site .b105-logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
}

/* Testimonial Section */
.b105-site .b105-testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.b105-site .b105-testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--b105-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.b105-site .b105-testimonial-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.b105-site .b105-dot {
    width: 10px;
    height: 10px;
    background: var(--b105-border);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.b105-site .b105-dot-active {
    background: var(--b105-primary);
}

/* Recent Work Section */
.b105-site .b105-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.b105-site .b105-work-filters {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
}

.b105-site .b105-filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--b105-border);
    color: var(--b105-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b105-site .b105-filter-btn:hover,
.b105-site .b105-filter-active {
    background: var(--b105-primary);
    color: #ffffff;
    border-color: var(--b105-primary);
}

.b105-site .b105-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.b105-site .b105-work-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.b105-site .b105-work-item:hover {
    transform: translateY(-8px);
}

.b105-site .b105-work-image {
    height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.b105-site .b105-work-overlay {
    position: relative;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.b105-site .b105-work-item:hover .b105-work-overlay {
    opacity: 1;
}

.b105-site .b105-work-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.b105-site .b105-work-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.b105-site .b105-placeholder-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.b105-site .b105-placeholder-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.b105-site .b105-placeholder-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.b105-site .b105-placeholder-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Contact Section */
.b105-site .b105-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.b105-site .b105-footer {
    background: var(--b105-light);
    padding: 80px 0 40px;
}

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

.b105-site .b105-footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--b105-primary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.b105-site .b105-footer-text {
    color: var(--b105-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b105-site .b105-footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--b105-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.b105-site .b105-footer-link {
    color: var(--b105-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b105-site .b105-footer-link:hover {
    color: var(--b105-primary);
}

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

/* Animations */
@keyframes b105-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b105-site .b105-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b105-site .b105-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .b105-site .b105-portfolio-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b105-site .b105-portfolio-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .b105-site .b105-work-grid {
        grid-template-columns: 1fr;
    }

    .b105-site .b105-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b105-site .b105-section {
        padding: 80px 0;
    }

    .b105-site .b105-nav-content {
        flex-wrap: wrap;
        gap: 24px;
    }

    .b105-site .b105-services-grid {
        grid-template-columns: 1fr;
    }

    .b105-site .b105-portfolio-logos {
        grid-template-columns: 1fr;
    }

    .b105-site .b105-work-filters {
        flex-wrap: wrap;
    }
}

/* ========================================
   b106 (b106)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

.b106-site {
    --b106-font-sans: 'Inter', sans-serif;
    --b106-font-serif: 'Playfair Display', serif;

    --b106-bg: #FFFFFF;
    --b106-text-main: #111111;
    --b106-text-muted: #555555;

    --b106-gradient-1: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    --b106-gradient-glow: radial-gradient(circle at 50% 50%, rgba(255, 154, 158, 0.4) 0%, rgba(255, 255, 255, 0) 70%);

    --b106-radius-btn: 50px;
    --b106-gap: 24px;

    font-family: var(--b106-font-sans);
    background-color: var(--b106-bg);
    color: var(--b106-text-main);
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b106-site .b106-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--b106-gap);
    position: relative;
    z-index: 2;
}

/* Navigation */
.b106-site .b106-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.b106-site .b106-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b106-site .b106-brand {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--b106-text-main);
}

.b106-site .b106-nav-links {
    display: flex;
    gap: 32px;
}

.b106-site .b106-nav-link {
    text-decoration: none;
    color: var(--b106-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.b106-site .b106-nav-link:hover {
    color: var(--b106-text-main);
}

/* Buttons */
.b106-site .b106-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--b106-radius-btn);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.b106-site .b106-btn-outline {
    border: 1px solid #E0E0E0;
    color: var(--b106-text-main);
    background: transparent;
}

.b106-site .b106-btn-outline:hover {
    border-color: var(--b106-text-main);
    background: var(--b106-text-main);
    color: #fff;
}

.b106-site .b106-btn-primary {
    border: 1px solid var(--b106-text-main);
    color: var(--b106-text-main);
    background: transparent;
}

.b106-site .b106-btn-primary:hover {
    background: var(--b106-text-main);
    color: #fff;
}

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

.b106-site .b106-glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 154, 158, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(254, 207, 239, 0.2) 0%, transparent 50%);
    z-index: 0;
    filter: blur(60px);
}

.b106-site .b106-hero-content {
    max-width: 600px;
    margin: 0 auto 60px;
}

.b106-site .b106-subtitle {
    font-family: var(--b106-font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--b106-text-main);
    display: block;
    margin-bottom: 16px;
}

.b106-site .b106-title {
    color: var(--b106-text-main);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.b106-site .b106-title-large {
    font-family: var(--b106-font-sans);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.b106-site .b106-text {
    font-size: 1rem;
    color: var(--b106-text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.b106-site .b106-hero-image-wrapper {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    perspective: 1000px;
}

.b106-site .b106-phone-mockup {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
    border: 4px solid #333;
}

.b106-site .b106-phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Features Section */
.b106-site .b106-section {
    padding: 100px 0;
}

.b106-site .b106-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.b106-site .b106-title-medium {
    font-family: var(--b106-font-sans);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 500px;
}

.b106-site .b106-italic-serif {
    font-family: var(--b106-font-serif);
    font-style: italic;
    font-weight: 400;
    display: block;
    /* New line effect */
}

.b106-site .b106-feature-intro {
    max-width: 300px;
    font-size: 1rem;
    color: var(--b106-text-muted);
}

.b106-site .b106-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.b106-site .b106-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.b106-site .b106-card-text {
    font-size: 0.95rem;
    color: var(--b106-text-muted);
    line-height: 1.6;
}

/* Visual Section */
.b106-site .b106-visual-section {
    padding-bottom: 0;
}

.b106-site .b106-visual-container {
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.b106-site .b106-visual-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 50%, #fcb045 100%);
    position: relative;
}

/* Services Section */
.b106-site .b106-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.b106-site .b106-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.b106-site .b106-service-card {
    padding: 32px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.b106-site .b106-service-card:hover {
    border-color: var(--b106-text-main);
    transform: translateY(-4px);
}

.b106-site .b106-service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F0F0F0;
    margin-bottom: 16px;
    line-height: 1;
}

/* Stats Section */
.b106-site .b106-stats-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.b106-site .b106-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.b106-site .b106-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--b106-text-main);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Testimonials Section */
.b106-site .b106-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.b106-site .b106-testimonial-card {
    padding: 32px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    background: #fff;
}

.b106-site .b106-testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.b106-site .b106-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--b106-text-main);
    margin-bottom: 24px;
}

.b106-site .b106-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.b106-site .b106-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--b106-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.b106-site .b106-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--b106-text-main);
}

.b106-site .b106-author-role {
    font-size: 0.85rem;
    color: var(--b106-text-muted);
}

/* Pricing Section */
.b106-site .b106-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.b106-site .b106-pricing-card {
    padding: 40px 32px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.b106-site .b106-pricing-card:hover {
    border-color: var(--b106-text-main);
    transform: translateY(-4px);
}

.b106-site .b106-pricing-card-featured {
    border-color: var(--b106-text-main);
    border-width: 2px;
}

.b106-site .b106-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--b106-text-main);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b106-site .b106-pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.b106-site .b106-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b106-site .b106-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.b106-site .b106-price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.b106-site .b106-price-period {
    font-size: 1rem;
    color: var(--b106-text-muted);
}

.b106-site .b106-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.b106-site .b106-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.95rem;
    color: var(--b106-text-main);
}

.b106-site .b106-pricing-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.b106-site .b106-cta-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.b106-site .b106-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.b106-site .b106-footer {
    padding: 80px 0 40px;
    background: #111;
    color: #fff;
}

.b106-site .b106-footer .b106-brand {
    color: #fff;
}

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

.b106-site .b106-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #fff;
}

.b106-site .b106-footer-link {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.b106-site .b106-footer-link:hover {
    color: #fff;
}

.b106-site .b106-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #333;
}

.b106-site .b106-footer-social {
    display: flex;
    gap: 24px;
}

/* Animation */
.b106-site .b106-animate {
    opacity: 0;
    animation: b106-fadeUp 0.8s ease forwards;
}

@keyframes b106-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .b106-site .b106-nav-links {
        display: none;
    }

    .b106-site .b106-hero {
        padding-top: 100px;
    }

    .b106-site .b106-feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .b106-site .b106-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .b106-site .b106-footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .b106-site .b106-pricing-grid,
    .b106-site .b106-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   b107 (b107)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.b107-site {
    --b107-primary: #3B82F6;
    --b107-secondary: #60A5FA;
    --b107-accent: #FBBF24;
    --b107-primary-rgb: 59, 130, 246;
    --b107-secondary-rgb: 96, 165, 250;
    --b107-dark: #0F172A;
    --b107-darker: #020617;
    --b107-card: #1E293B;
    --b107-text: #F1F5F9;
    --b107-muted: #94A3B8;
    --b107-radius: 16px;
    --b107-gap: 32px;
    --b107-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --b107-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b107-font);
    color: var(--b107-text);
    background-color: var(--b107-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b107-site .b107-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b107-gap);
}

.b107-site .b107-section {
    padding: 120px 0;
}

.b107-site .b107-section-dark {
    background: var(--b107-dark);
}

/* Typography */
.b107-site .b107-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b107-text);
}

.b107-site .b107-title-hero {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.b107-site .b107-title-large {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.b107-site .b107-title-medium {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
}

.b107-site .b107-highlight {
    color: var(--b107-accent);
}

.b107-site .b107-underline {
    position: relative;
    display: inline-block;
}

.b107-site .b107-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--b107-accent);
}

.b107-site .b107-section-text {
    font-size: 1.125rem;
    color: var(--b107-muted);
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.7;
}

.b107-site .b107-text {
    font-size: 1rem;
    color: var(--b107-muted);
    line-height: 1.7;
}

.b107-site .b107-link {
    color: var(--b107-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.b107-site .b107-link:hover {
    color: var(--b107-secondary);
}

/* Buttons */
.b107-site .b107-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
}

.b107-site .b107-btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.b107-site .b107-btn-primary {
    background: #ffffff;
    color: var(--b107-dark);
}

.b107-site .b107-btn-primary:hover {
    background: var(--b107-accent);
    color: var(--b107-dark);
    transform: translateY(-2px);
}

.b107-site .b107-btn-secondary {
    background: transparent;
    color: var(--b107-text);
    border: 2px solid rgba(241, 245, 249, 0.2);
}

.b107-site .b107-btn-secondary:hover {
    background: rgba(241, 245, 249, 0.05);
    border-color: var(--b107-text);
}

/* Navigation */
.b107-site .b107-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.05);
}

.b107-site .b107-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--b107-text);
}

.b107-site .b107-nav-link {
    color: var(--b107-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b107-site .b107-nav-link:hover {
    color: var(--b107-text);
}

/* Hero Section */
.b107-site .b107-hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.b107-site .b107-hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}

.b107-site .b107-hero-content {
    max-width: 900px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 10;
}

.b107-site .b107-hero-text {
    font-size: 1.125rem;
    color: var(--b107-muted);
    margin-top: 32px;
    line-height: 1.7;
}

.b107-site .b107-partners {
    position: relative;
    z-index: 10;
}

.b107-site .b107-partners-label {
    font-size: 0.875rem;
    color: var(--b107-muted);
    margin-bottom: 32px;
}

.b107-site .b107-partners-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.b107-site .b107-partner-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b107-muted);
    opacity: 0.7;
}

/* Section Header */
.b107-site .b107-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Tabs */
.b107-site .b107-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.b107-site .b107-tab {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(241, 245, 249, 0.1);
    border-radius: 8px;
    color: var(--b107-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b107-site .b107-tab:hover,
.b107-site .b107-tab-active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--b107-primary);
    color: var(--b107-text);
}

/* Features Grid */
.b107-site .b107-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
}

.b107-site .b107-feature-card {
    background: var(--b107-card);
    border: 1px solid rgba(241, 245, 249, 0.05);
    border-radius: var(--b107-radius);
    padding: 40px;
    transition: all 0.3s ease;
}

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

.b107-site .b107-card-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.b107-site .b107-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b107-primary);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.b107-site .b107-feature-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b107-primary);
    font-size: 2rem;
    margin-bottom: 24px;
}

.b107-site .b107-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--b107-text);
    margin-bottom: 16px;
}

.b107-site .b107-feature-text {
    font-size: 1rem;
    color: var(--b107-muted);
    line-height: 1.7;
}

/* Services Section */
.b107-site .b107-services-layout {
    display: grid;
    gap: 80px;
}

.b107-site .b107-services-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.b107-site .b107-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b107-site .b107-service-item {
    padding: 32px;
    background: rgba(241, 245, 249, 0.02);
    border: 1px solid rgba(241, 245, 249, 0.05);
    border-radius: var(--b107-radius);
    transition: all 0.3s ease;
}

.b107-site .b107-service-item:hover {
    background: rgba(241, 245, 249, 0.05);
    transform: translateY(-5px);
}

.b107-site .b107-service-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--b107-primary);
    margin-bottom: 16px;
}

.b107-site .b107-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b107-text);
    margin-bottom: 12px;
}

.b107-site .b107-service-text {
    font-size: 0.9375rem;
    color: var(--b107-muted);
    line-height: 1.6;
}

/* Team Section */
.b107-site .b107-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.b107-site .b107-team-member {
    text-align: center;
}

.b107-site .b107-member-image {
    width: 100%;
    height: 280px;
    border-radius: var(--b107-radius);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
}

.b107-site .b107-placeholder-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.b107-site .b107-placeholder-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.b107-site .b107-placeholder-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.b107-site .b107-placeholder-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.b107-site .b107-member-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--b107-text);
    margin-bottom: 8px;
}

.b107-site .b107-member-role {
    font-size: 0.9375rem;
    color: var(--b107-muted);
}

/* CTA Section */
.b107-site .b107-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--b107-dark);
}

.b107-site .b107-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.b107-site .b107-cta-text {
    font-size: 1.25rem;
    color: var(--b107-muted);
    margin-top: 24px;
}

/* Footer */
.b107-site .b107-footer {
    background: var(--b107-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(241, 245, 249, 0.05);
}

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

.b107-site .b107-footer-text {
    color: var(--b107-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b107-site .b107-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b107-text);
}

.b107-site .b107-footer-link {
    color: var(--b107-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b107-site .b107-footer-link:hover {
    color: var(--b107-primary);
}

.b107-site .b107-footer-bottom {
    border-top: 1px solid rgba(241, 245, 249, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--b107-muted);
    font-size: 0.875rem;
}

.b107-site .b107-footer-links {
    display: flex;
    gap: 32px;
}

.b107-site .b107-footer-link-small {
    color: var(--b107-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.b107-site .b107-footer-link-small:hover {
    color: var(--b107-text);
}

/* Animations */
@keyframes b107-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b107-site .b107-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b107-site .b107-features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .b107-site .b107-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b107-site .b107-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .b107-site .b107-section {
        padding: 80px 0;
    }

    .b107-site .b107-hero {
        padding: 120px 0 80px;
    }

    .b107-site .b107-nav-links {
        display: none !important;
    }

    .b107-site .b107-tabs {
        flex-direction: column;
    }

    .b107-site .b107-services-grid {
        grid-template-columns: 1fr;
    }

    .b107-site .b107-team-grid {
        grid-template-columns: 1fr;
    }

    .b107-site .b107-partners-grid {
        gap: 32px;
    }
}

/* ========================================
   b108 (b108)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.b108-site {
    --b108-primary: #2D5F3F;
    --b108-secondary: #4A7C59;
    --b108-accent: #D97757;
    --b108-primary-rgb: 45, 95, 63;
    --b108-secondary-rgb: 74, 124, 89;
    --b108-accent-rgb: 217, 119, 87;
    --b108-dark: #1A3A2E;
    --b108-light: #F5F5F0;
    --b108-lighter: #FAFAF7;
    --b108-text: #2C3E35;
    --b108-muted: #6B7C73;
    --b108-border: #E0E5E0;
    --b108-radius: 12px;
    --b108-gap: 32px;
    --b108-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --b108-font: 'Poppins', -apple-system, sans-serif;

    font-family: var(--b108-font);
    color: var(--b108-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b108-site .b108-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b108-gap);
}

.b108-site .b108-section {
    padding: 100px 0;
}

.b108-site .b108-section-dark {
    background: var(--b108-primary);
    color: #ffffff;
}

.b108-site .b108-section-light {
    background: var(--b108-lighter);
}

/* Typography */
.b108-site .b108-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b108-dark);
}

.b108-site .b108-title-hero {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.b108-site .b108-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

.b108-site .b108-title-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.b108-site .b108-section-text {
    font-size: 1.125rem;
    color: var(--b108-muted);
    max-width: 700px;
    margin: 16px auto 0;
    text-align: center;
}

.b108-site .b108-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.b108-site .b108-section-dark .b108-title {
    color: #ffffff;
}

/* Buttons */
.b108-site .b108-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--b108-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
}

.b108-site .b108-btn-primary {
    background: var(--b108-accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(var(--b108-accent-rgb), 0.3);
}

.b108-site .b108-btn-primary:hover {
    background: #C66847;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--b108-accent-rgb), 0.4);
}



.b108-site .b108-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--b108-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--b108-text);
}

.b108-site .b108-icon-btn:hover {
    background: var(--b108-light);
    border-color: var(--b108-primary);
}

/* Navigation */
.b108-site .b108-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--b108-border);
}

.b108-site .b108-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b108-primary);
}

.b108-site .b108-nav-link {
    color: var(--b108-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b108-site .b108-nav-link:hover {
    color: var(--b108-primary);
}

/* Hero Section */
.b108-site .b108-hero {
    padding: 80px 0;
    background: var(--b108-light);
}

.b108-site .b108-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b108-site .b108-hero-description {
    font-size: 1.125rem;
    color: var(--b108-muted);
    margin: 24px 0 40px;
    line-height: 1.7;
}

.b108-site .b108-hero-image {
    position: relative;
}

.b108-site .b108-plant-showcase {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--b108-primary) 0%, var(--b108-secondary) 100%);
    border-radius: var(--b108-radius);
}

.b108-site .b108-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.b108-site .b108-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.b108-site .b108-feature-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: var(--b108-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b108-primary);
    flex-shrink: 0;
}

.b108-site .b108-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--b108-dark);
    margin-bottom: 4px;
}

.b108-site .b108-feature-text {
    font-size: 0.9375rem;
    color: var(--b108-muted);
}

/* Section Header */
.b108-site .b108-section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Product Filters */
.b108-site .b108-product-filters {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.b108-site .b108-filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--b108-border);
    border-radius: 50px;
    color: var(--b108-text);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b108-site .b108-filter-btn:hover,
.b108-site .b108-filter-active {
    background: var(--b108-primary);
    color: #ffffff;
    border-color: var(--b108-primary);
}

/* Products Grid */
.b108-site .b108-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b108-site .b108-product-card {
    background: #ffffff;
    border: 1px solid var(--b108-border);
    border-radius: var(--b108-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.b108-site .b108-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b108-shadow);
}

.b108-site .b108-product-image {
    width: 100%;
    height: 280px;
    border-radius: var(--b108-radius);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.b108-site .b108-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--b108-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.b108-site .b108-badge-sale {
    background: var(--b108-accent);
}

.b108-site .b108-product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--b108-dark);
    margin-bottom: 12px;
}

.b108-site .b108-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b108-primary);
    margin-bottom: 16px;
}

.b108-site .b108-price-old {
    font-size: 1rem;
    font-weight: 400;
    color: var(--b108-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.b108-site .b108-price-new {
    color: var(--b108-accent);
}

.b108-site .b108-placeholder-1 {
    background: linear-gradient(135deg, #A8D5BA 0%, #7FB69E 100%);
}

.b108-site .b108-placeholder-2 {
    background: linear-gradient(135deg, #8BC6A0 0%, #5FA778 100%);
}

.b108-site .b108-placeholder-3 {
    background: linear-gradient(135deg, #B8E6C9 0%, #8FD4A8 100%);
}

.b108-site .b108-placeholder-4 {
    background: linear-gradient(135deg, #7FB69E 0%, #5A9A7C 100%);
}

.b108-site .b108-placeholder-5 {
    background: linear-gradient(135deg, #9DD4B0 0%, #73B88F 100%);
}

.b108-site .b108-placeholder-6 {
    background: linear-gradient(135deg, #A3D9B5 0%, #7ABD94 100%);
}

.b108-site .b108-placeholder-7,
.b108-site .b108-placeholder-8,
.b108-site .b108-placeholder-9,
.b108-site .b108-placeholder-10 {
    background: linear-gradient(135deg, #8BC6A0 0%, #5FA778 100%);
}

/* About Section */
.b108-site .b108-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b108-site .b108-about-image {
    position: relative;
}

.b108-site .b108-about-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: var(--b108-radius);
}

/* Steps Grid */
.b108-site .b108-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b108-site .b108-step-card {
    text-align: center;
    padding: 40px 24px;
}

.b108-site .b108-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--b108-primary);
    opacity: 0.2;
    margin-bottom: 16px;
}

.b108-site .b108-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--b108-dark);
    margin-bottom: 12px;
}

.b108-site .b108-step-text {
    font-size: 0.9375rem;
    color: var(--b108-muted);
    line-height: 1.6;
}

/* Instagram Grid */
.b108-site .b108-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.b108-site .b108-instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--b108-radius);
    transition: transform 0.3s ease;
}

.b108-site .b108-instagram-item:hover {
    transform: scale(1.05);
}

.b108-site .b108-instagram-image {
    width: 100%;
    height: 280px;
}



/* Footer */
.b108-site .b108-footer {
    background: var(--b108-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b108-site .b108-footer .b108-brand {
    color: #ffffff;
}

.b108-site .b108-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.b108-site .b108-social-links {
    display: flex;
    gap: 20px;
}

.b108-site .b108-social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.b108-site .b108-social-link:hover {
    color: var(--b108-accent);
}

.b108-site .b108-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.b108-site .b108-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b108-site .b108-footer-link:hover {
    color: var(--b108-accent);
}

.b108-site .b108-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b108-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b108-site .b108-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b108-site .b108-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b108-site .b108-features-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .b108-site .b108-about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b108-site .b108-steps-grid {
        grid-template-columns: 1fr;
    }

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

    .b108-site .b108-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b108-site .b108-section {
        padding: 80px 0;
    }

    .b108-site .b108-nav-links {
        display: none !important;
    }

    .b108-site .b108-products-grid {
        grid-template-columns: 1fr;
    }

    .b108-site .b108-instagram-grid {
        grid-template-columns: 1fr;
    }


}

/* ========================================
   b109 (b109)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.b109-site {
    --b109-orange: #FF4D00;
    --b109-black: #050505;
    --b109-dark: #121212;
    --b109-gray: #1E1E1E;
    --b109-text: #FFFFFF;
    --b109-text-muted: #888888;
    --b109-radius: 24px;
    --b109-font: 'Inter', sans-serif;

    font-family: var(--b109-font);
    background-color: var(--b109-black);
    color: var(--b109-text);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

.b109-site a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.b109-site .b109-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.b109-site .b109-nav {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.b109-site .b109-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b109-site .b109-brand {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
}

.b109-site .b109-brand-icon {
    width: 12px;
    height: 12px;
    background: var(--b109-orange);
    border-radius: 50%;
    display: inline-block;
}

.b109-site .b109-nav-links {
    display: flex;
    gap: 32px;
}

.b109-site .b109-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.b109-site .b109-link:hover {
    color: var(--b109-orange);
}

.b109-site .b109-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.b109-site .b109-btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.b109-site .b109-btn-primary {
    background: var(--b109-orange);
    color: #fff;
}

.b109-site .b109-btn-primary:hover {
    background: #ff6a2b;
}

.b109-site .b109-btn-dark {
    background: transparent;
    color: #fff;
}

.b109-site .b109-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.b109-site .b109-btn-outline:hover {
    border-color: #fff;
}



/* Hero Section */
.b109-site .b109-hero {
    min-height: 80vh;
    padding-top: 120px;
    background: radial-gradient(circle at 80% 40%, rgba(255, 77, 0, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(135deg, #000 0%, #111 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.b109-site .b109-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, var(--b109-orange) 0%, transparent 60%);
    opacity: 0.8;
    filter: blur(80px);
    z-index: 0;
}

.b109-site .b109-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.b109-site .b109-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.2);
}

.b109-site .b109-title-large {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.b109-site .b109-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
}

.b109-site .b109-hero-btns {
    display: flex;
    gap: 16px;
}

.b109-site .b109-silhouette {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

/* Sections Global */
.b109-site .b109-section {
    padding: 100px 0;
}

.b109-site .b109-title-medium {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Bento Grid */
.b109-site .b109-bento-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 24px;
}

.b109-site .b109-card {
    border-radius: var(--b109-radius);
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.b109-site .b109-card-white {
    background: #fff;
    color: #000;
    padding: 32px;
}

.b109-site .b109-img-placeholder-light {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    border-radius: 16px;
    margin-bottom: 32px;
}

.b109-site .b109-avatars {
    display: flex;
    margin-bottom: 16px;
}

.b109-site .b109-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #fff;
    margin-right: -10px;
}

.b109-site .b109-card-title-dark {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.b109-site .b109-card-desc-dark {
    color: #555;
    font-size: 0.95rem;
}

.b109-site .b109-card-dark-img {
    background: var(--b109-gray);
    position: relative;
}

.b109-site .b109-card-dark-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.b109-site .b109-card-content-bottom {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
}

.b109-site .b109-icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
}

/* Tools Section */
.b109-site .b109-bg-darker {
    background: #0A0A0A;
}

.b109-site .b109-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.b109-site .b109-header-desc {
    max-width: 400px;
    color: var(--b109-text-muted);
}

.b109-site .b109-link-arrow {
    display: inline-block;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.b109-site .b109-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.b109-site .b109-feature-box {
    background: var(--b109-dark);
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.b109-site .b109-feature-box:hover {
    transform: translateY(-5px);
    background: var(--b109-gray);
}

.b109-site .b109-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--b109-orange);
    border-radius: 50%;
    margin-bottom: 24px;
}

.b109-site .b109-feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.b109-site .b109-feature-text {
    color: var(--b109-text-muted);
    font-size: 0.95rem;
}

/* News Section */
.b109-site .b109-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.b109-site .b109-blog-card {
    background: var(--b109-dark);
    border-radius: 20px;
    overflow: hidden;
}

.b109-site .b109-blog-img {
    width: 100%;
    height: 240px;
    background: #222;
}

.b109-site .b109-blog-content {
    padding: 32px;
}

.b109-site .b109-blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.b109-site .b109-blog-text {
    color: var(--b109-text-muted);
}

/* Footer */
.b109-site .b109-footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.b109-site .b109-footer-text {
    color: var(--b109-text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
}

.b109-site .b109-footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--b109-orange);
}

.b109-site .b109-footer-links-list a {
    display: block;
    color: var(--b109-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.b109-site .b109-footer-links-list a:hover {
    color: #fff;
}

.b109-site .b109-footer-contact p {
    color: var(--b109-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.b109-site .b109-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.b109-site .b109-footer-social {
    display: flex;
    gap: 24px;
}

.b109-site .b109-footer-social a {
    color: var(--b109-text-muted);
    font-size: 0.85rem;
}

.b109-site .b109-footer-social a:hover {
    color: #fff;
}

/* Animations */
.b109-site .b109-animate-fade {
    animation: b109FadeIn 1s ease forwards;
    opacity: 0;
}

.b109-site .b109-animate-up {
    animation: b109SlideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes b109FadeIn {
    to {
        opacity: 1;
    }
}

@keyframes b109SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .b109-site .b109-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b109-site .b109-hero-btns {
        justify-content: center;
    }

    .b109-site .b109-nav-links {
        display: none;
    }

    .b109-site .b109-bento-grid {
        grid-template-columns: 1fr;
    }

    .b109-site .b109-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b109-site .b109-footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* ========================================
   b110 (b110)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500&display=swap');

.b110-site {
    --b110-primary: #2D5F3F;
    --b110-secondary: #5A8A6E;
    --b110-primary-rgb: 45, 95, 63;
    --b110-secondary-rgb: 90, 138, 110;
    --b110-dark: #1A3A2E;
    --b110-light: #E8F4EF;
    --b110-text: #1F2937;
    --b110-muted: #6B7280;
    --b110-cream: #F5F3ED;
    --b110-radius: 20px;
    --b110-gap: 32px;
    --b110-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --b110-font-heading: 'Poppins', sans-serif;
    --b110-font-body: 'Inter', sans-serif;

    font-family: var(--b110-font-body);
    color: var(--b110-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b110-site .b110-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b110-gap);
}

.b110-site .b110-section {
    padding: 120px 0;
}

/* Typography */
.b110-site .b110-title {
    font-family: var(--b110-font-heading);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--b110-dark);
}

.b110-site .b110-title-large {
    font-size: clamp(3.5rem, 8vw, 7rem);
    letter-spacing: -2px;
}

.b110-site .b110-title-medium {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

.b110-site .b110-title-small {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.b110-site .b110-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b110-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.b110-site .b110-text {
    font-size: 1.125rem;
    color: var(--b110-muted);
    margin-bottom: 24px;
    line-height: 1.75;
}

/* Buttons */
.b110-site .b110-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--b110-font-body);
}

.b110-site .b110-btn-primary {
    background: var(--b110-cream);
    color: var(--b110-dark);
    border: 2px solid var(--b110-cream);
}

.b110-site .b110-btn-primary:hover {
    background: transparent;
    color: var(--b110-cream);
    transform: translateY(-2px);
}

.b110-site .b110-btn-secondary {
    background: transparent;
    color: var(--b110-cream);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.b110-site .b110-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--b110-cream);
}

/* Navigation */
.b110-site .b110-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 95, 63, 0.1);
    transition: all 0.3s ease;
}

.b110-site .b110-brand {
    font-family: var(--b110-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--b110-primary);
    letter-spacing: 0.5px;
}

.b110-site .b110-nav-link {
    color: var(--b110-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.b110-site .b110-nav-link:hover {
    color: var(--b110-primary);
}

/* Hero Section */
.b110-site .b110-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A3A2E 0%, #2D5F3F 50%, #3A6B4C 100%);
    position: relative;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

.b110-site .b110-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(90, 138, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 95, 63, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.b110-site .b110-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.b110-site .b110-hero .b110-title {
    color: #ffffff;
    margin-bottom: 28px;
}

.b110-site .b110-hero .b110-subtitle {
    color: var(--b110-cream);
}

.b110-site .b110-hero .b110-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Store Section */
.b110-site .b110-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.b110-site .b110-store-card {
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.b110-site .b110-store-card:hover {
    transform: translateY(-8px);
}

.b110-site .b110-store-image {
    width: 100%;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.b110-site .b110-store-card:hover .b110-store-image {
    box-shadow: 0 20px 60px rgba(45, 95, 63, 0.25);
    transform: scale(1.05);
}

.b110-site .b110-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b110-site .b110-image-indoor {
    background: linear-gradient(135deg, #2D5F3F 0%, #3A6B4C 100%);
}

.b110-site .b110-image-outdoor {
    background: linear-gradient(135deg, #5A8A6E 0%, #6B9D7B 100%);
}

.b110-site .b110-image-seeds {
    background: linear-gradient(135deg, #4A5D3F 0%, #5D7052 100%);
}

.b110-site .b110-image-pots {
    background: linear-gradient(135deg, #8A7563 0%, #9D8870 100%);
}

.b110-site .b110-store-title {
    font-family: var(--b110-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b110-dark);
}

/* About Section */
.b110-site .b110-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.b110-site .b110-about-card {
    padding: 40px 32px;
    background: rgba(45, 95, 63, 0.08);
    border-radius: var(--b110-radius);
    border: 1px solid rgba(45, 95, 63, 0.15);
    transition: all 0.4s ease;
}

.b110-site .b110-about-card:hover {
    background: rgba(45, 95, 63, 0.12);
    border-color: var(--b110-secondary);
    transform: translateY(-4px);
}

.b110-site .b110-about-card-title {
    font-family: var(--b110-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--b110-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.b110-site .b110-about-card-text {
    font-size: 1rem;
    color: var(--b110-muted);
    line-height: 1.7;
}

/* Gallery Section */
.b110-site .b110-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.b110-site .b110-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--b110-radius);
    transition: all 0.4s ease;
    cursor: pointer;
}

.b110-site .b110-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--b110-shadow);
}

.b110-site .b110-gallery-placeholder {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b110-site .b110-gallery-plant-1 {
    background: linear-gradient(135deg, #2D5F3F 0%, #1A3A2E 100%);
}

.b110-site .b110-gallery-plant-2 {
    background: linear-gradient(135deg, #3A6B4C 0%, #2D5F3F 100%);
}

.b110-site .b110-gallery-plant-3 {
    background: linear-gradient(135deg, #5A8A6E 0%, #3A6B4C 100%);
}

.b110-site .b110-gallery-plant-4 {
    background: linear-gradient(135deg, #4A5D3F 0%, #2D5F3F 100%);
}

/* Contact Section */
.b110-site .b110-contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.b110-site .b110-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.b110-site .b110-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.b110-site .b110-contact-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--b110-cream);
}

.b110-site .b110-contact-title {
    font-family: var(--b110-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.b110-site .b110-contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Footer */
.b110-site .b110-footer {
    background: #0F1F19;
    color: #ffffff;
    padding: 80px 0 40px;
}

.b110-site .b110-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.b110-site .b110-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.b110-site .b110-footer-title {
    font-family: var(--b110-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--b110-cream);
}

.b110-site .b110-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.b110-site .b110-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b110-site .b110-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes b110-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b110-site .b110-animate {
    opacity: 0;
    animation: b110-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .b110-site .b110-section {
        padding: 80px 0;
    }

    .b110-site .b110-hero {
        padding-top: 100px;
        min-height: 85vh;
    }

    .b110-site .b110-nav-links {
        display: none !important;
    }

    .b110-site .b110-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b110-site .b110-store-grid,
    .b110-site .b110-about-grid,
    .b110-site .b110-gallery-grid {
        grid-template-columns: 1fr;
    }

    .b110-site .b110-store-image {
        height: 280px;
    }

    .b110-site .b110-gallery-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .b110-site .b110-title-large {
        font-size: 2.5rem;
    }

    .b110-site .b110-title-medium {
        font-size: 1.875rem;
    }

    .b110-site .b110-store-image {
        height: 250px;
    }
}

/* ========================================
   b111 (b111)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.b111-site {
    --b111-primary: #C8FF00;
    --b111-secondary: #A8E600;
    --b111-accent: #00D9FF;
    --b111-primary-rgb: 200, 255, 0;
    --b111-secondary-rgb: 168, 230, 0;
    --b111-dark: #1A1D29;
    --b111-darker: #0F1117;
    --b111-card: #252836;
    --b111-text: #E8EAED;
    --b111-muted: #9CA3AF;
    --b111-radius: 16px;
    --b111-gap: 32px;
    --b111-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --b111-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b111-font);
    color: var(--b111-text);
    background-color: var(--b111-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b111-site .b111-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b111-gap);
}

.b111-site .b111-section {
    padding: 120px 0;
}

.b111-site .b111-section-light {
    background: var(--b111-primary);
    color: var(--b111-dark);
}

/* Typography */
.b111-site .b111-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b111-text);
}

.b111-site .b111-title-hero {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.b111-site .b111-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

.b111-site .b111-highlight {
    background: var(--b111-primary);
    color: var(--b111-dark);
    padding: 0 16px;
    border-radius: 8px;
}

.b111-site .b111-section-text {
    font-size: 1.125rem;
    color: var(--b111-dark);
    max-width: 700px;
    margin: 16px auto 0;
}

.b111-site .b111-text {
    font-size: 1rem;
    color: var(--b111-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.b111-site .b111-section-light .b111-title {
    color: var(--b111-dark);
}

/* Buttons */
.b111-site .b111-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.b111-site .b111-btn-primary {
    background: var(--b111-primary);
    color: var(--b111-dark);
}

.b111-site .b111-btn-primary:hover {
    background: var(--b111-secondary);
    transform: translateY(-2px);
}

.b111-site .b111-btn-secondary {
    background: transparent;
    color: var(--b111-text);
    border: 2px solid var(--b111-text);
}

.b111-site .b111-btn-secondary:hover {
    background: var(--b111-text);
    color: var(--b111-dark);
}



/* Navigation */
.b111-site .b111-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 234, 237, 0.1);
}

.b111-site .b111-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b111-text);
}

.b111-site .b111-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--b111-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b111-dark);
    font-weight: 800;
}

.b111-site .b111-nav-link {
    color: var(--b111-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b111-site .b111-nav-link:hover {
    color: var(--b111-primary);
}

/* Hero Section */
.b111-site .b111-hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--b111-darker) 0%, var(--b111-dark) 100%);
}

.b111-site .b111-hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.b111-site .b111-hero-text {
    font-size: 1.25rem;
    color: var(--b111-muted);
    margin: 32px 0 40px;
    line-height: 1.7;
}

.b111-site .b111-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--b111-card);
    border-radius: 50px;
    border: 1px solid rgba(232, 234, 237, 0.1);
    color: var(--b111-text);
    font-weight: 600;
}

.b111-site .b111-services-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 40px;
    background: var(--b111-primary);
    border-radius: var(--b111-radius);
    overflow-x: auto;
}

.b111-site .b111-service-tag {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--b111-dark);
    white-space: nowrap;
}

.b111-site .b111-service-divider {
    width: 6px;
    height: 6px;
    background: var(--b111-dark);
    border-radius: 50%;
    opacity: 0.3;
}

/* Problems Section */
.b111-site .b111-problems-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.b111-site .b111-problems-image {
    position: relative;
}

.b111-site .b111-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--b111-card);
    border-radius: var(--b111-radius);
}

.b111-site .b111-badge-circle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--b111-card);
    border-radius: 50px;
    border: 1px solid rgba(232, 234, 237, 0.1);
    margin-top: 32px;
}

.b111-site .b111-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.b111-site .b111-image-card {
    position: relative;
}

.b111-site .b111-image-placeholder-small {
    width: 100%;
    height: 350px;
    background: var(--b111-card);
    border-radius: var(--b111-radius);
}

/* Services Section */
.b111-site .b111-section-header {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.b111-site .b111-services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.b111-site .b111-service-highlight {
    background: var(--b111-dark);
    padding: 40px;
    border-radius: var(--b111-radius);
    border: 1px solid rgba(232, 234, 237, 0.1);
}

.b111-site .b111-service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--b111-primary);
    border-radius: var(--b111-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b111-dark);
    margin-bottom: 24px;
}

.b111-site .b111-service-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b111-text);
    margin-bottom: 24px;
}

.b111-site .b111-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.b111-site .b111-service-card {
    background: var(--b111-dark);
    padding: 32px;
    border-radius: var(--b111-radius);
    border: 1px solid rgba(232, 234, 237, 0.1);
    transition: all 0.3s ease;
}

.b111-site .b111-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--b111-primary);
}

.b111-site .b111-service-card-dark {
    background: var(--b111-darker);
}

.b111-site .b111-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 255, 0, 0.1);
    border-radius: var(--b111-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b111-primary);
    margin-bottom: 20px;
}

.b111-site .b111-service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--b111-text);
    margin-bottom: 16px;
}

.b111-site .b111-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b111-site .b111-service-list li {
    font-size: 0.9375rem;
    color: var(--b111-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.b111-site .b111-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--b111-primary);
    border-radius: 50%;
}

/* Stats Section */
.b111-site .b111-stats {
    padding: 80px 0;
    background: var(--b111-dark);
}

.b111-site .b111-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.b111-site .b111-stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--b111-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.b111-site .b111-stat-label {
    font-size: 1rem;
    color: var(--b111-muted);
}

/* CTA Section */
.b111-site .b111-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--b111-dark);
}

.b111-site .b111-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.b111-site .b111-cta-text {
    font-size: 1.25rem;
    color: var(--b111-muted);
    margin-top: 24px;
}

/* Footer */
.b111-site .b111-footer {
    background: var(--b111-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(232, 234, 237, 0.1);
}

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

.b111-site .b111-footer-text {
    color: var(--b111-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b111-site .b111-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b111-text);
}

.b111-site .b111-footer-link {
    color: var(--b111-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b111-site .b111-footer-link:hover {
    color: var(--b111-primary);
}

.b111-site .b111-footer-bottom {
    border-top: 1px solid rgba(232, 234, 237, 0.1);
    padding-top: 32px;
    text-align: center;
    color: var(--b111-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b111-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b111-site .b111-animate {
    opacity: 0;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b111-site .b111-problems-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b111-site .b111-images-row {
        grid-template-columns: 1fr;
    }

    .b111-site .b111-services-layout {
        grid-template-columns: 1fr;
    }

    .b111-site .b111-services-grid {
        grid-template-columns: 1fr;
    }

    .b111-site .b111-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .b111-site .b111-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b111-site .b111-section {
        padding: 80px 0;
    }

    .b111-site .b111-hero {
        padding: 120px 0 80px;
    }

    .b111-site .b111-nav-links {
        display: none !important;
    }

    .b111-site .b111-services-bar {
        padding: 20px 24px;
        gap: 20px;
    }

    .b111-site .b111-stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   b112 (b112)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

.b112-site {
    --b112-blue-light: #B0D0D8;
    --b112-blue-medium: #A3C3CB;
    --b112-blue-dark: #90B0B8;
    --b112-text-dark: #2C3E50;
    --b112-text-muted: #607D8B;
    --b112-white: #FFFFFF;
    --b112-offwhite: #F5F7FA;
    --b112-gap: 32px;
    --b112-font-serif: 'Playfair Display', serif;
    --b112-font-sans: 'Lato', sans-serif;

    font-family: var(--b112-font-sans);
    color: var(--b112-text-dark);
    background-color: var(--b112-white);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.b112-site * {
    box-sizing: border-box;
}

.b112-site a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.b112-site .b112-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b112-gap);
}

/* Typography */
.b112-site .b112-title-large {
    font-family: var(--b112-font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--b112-text-dark);
}

.b112-site .b112-title-medium {
    font-family: var(--b112-font-serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--b112-text-dark);
}

.b112-site .b112-subtitle {
    display: block;
    font-family: var(--b112-font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--b112-text-muted);
    margin-bottom: 16px;
}

.b112-site .b112-subtitle-small {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--b112-text-muted);
    margin-bottom: 16px;
    font-weight: 700;
}

.b112-site .b112-text {
    font-size: 1.05rem;
    color: var(--b112-text-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.b112-site .b112-text-hero {
    font-size: 1.2rem;
    color: var(--b112-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.b112-site .b112-text-sm {
    font-size: 0.95rem;
    color: var(--b112-text-muted);
}

.b112-site .b112-price {
    font-family: var(--b112-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--b112-text-dark);
}

/* Buttons & Links */
.b112-site .b112-btn-dark {
    display: inline-block;
    padding: 12px 28px;
    background: var(--b112-text-dark);
    color: var(--b112-white);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.b112-site .b112-btn-dark:hover {
    background: #1a2530;
    transform: translateY(-2px);
}

.b112-site .b112-btn-white {
    display: inline-block;
    padding: 12px 28px;
    background: var(--b112-white);
    color: var(--b112-text-dark);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.b112-site .b112-btn-white:hover {
    background: var(--b112-offwhite);
    transform: translateY(-2px);
}

.b112-site .b112-btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.b112-site .b112-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--b112-text-dark);
    margin-left: 24px;
}

.b112-site .b112-link-arrow::after {
    content: '→';
    transition: transform 0.3s;
}

.b112-site .b112-link-arrow:hover::after {
    transform: translateX(5px);
}



/* Navigation */
.b112-site .b112-nav {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.b112-site .b112-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b112-site .b112-brand {
    font-family: var(--b112-font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--b112-text-dark);
}

.b112-site .b112-nav-links {
    display: flex;
    gap: 40px;
}

.b112-site .b112-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--b112-text-dark);
}

.b112-site .b112-link:hover {
    color: var(--b112-text-muted);
}



/* Hero Section */
.b112-site .b112-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--b112-blue-light);
    overflow: hidden;
}

.b112-site .b112-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.b112-site .b112-hero-content {
    position: relative;
    z-index: 1;
    width: 50%;
    padding-right: 40px;
}

/* Sections & Split Layout */
.b112-site .b112-section {
    padding: 120px 0;
}

.b112-site .b112-bg-white {
    background-color: var(--b112-white);
}

.b112-site .b112-bg-blue {
    background-color: var(--b112-blue-light);
}

.b112-site .b112-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b112-site .b112-img-box {
    width: 100%;
    height: 600px;
    background-color: var(--b112-offwhite);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.b112-site .b112-img-box svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner Section */
.b112-site .b112-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-color: var(--b112-blue-dark);
    overflow: hidden;
}

.b112-site .b112-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.b112-site .b112-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */
.b112-site .b112-footer {
    padding: 80px 0 32px;
    background-color: var(--b112-white);
    border-top: 1px solid var(--b112-offwhite);
}

.b112-site .b112-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}

.b112-site .b112-footer-title {
    font-family: var(--b112-font-serif);
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--b112-text-dark);
}

.b112-site .b112-footer-link {
    display: block;
    color: var(--b112-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.b112-site .b112-footer-link:hover {
    color: var(--b112-text-dark);
}

.b112-site .b112-footer-text {
    display: block;
    color: var(--b112-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}



.b112-site .b112-footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--b112-text-muted);
    padding-top: 32px;
    border-top: 1px solid var(--b112-offwhite);
}

/* Animations */
.b112-site .b112-animate-fade {
    animation: b112FadeIn 1.2s ease forwards;
    opacity: 0;
}

.b112-site .b112-animate-up {
    animation: b112SlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes b112FadeIn {
    to {
        opacity: 1;
    }
}

@keyframes b112SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .b112-site .b112-hero-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .b112-site .b112-hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .b112-site .b112-hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .b112-site .b112-text-hero {
        margin: 0 auto 40px;
    }

    .b112-site .b112-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .b112-site .b112-grid-reversed {
        display: flex;
        flex-direction: column-reverse;
    }

    .b112-site .b112-text {
        margin: 0 auto 24px;
    }

    .b112-site .b112-split-text>div {
        justify-content: center;
    }

    .b112-site .b112-img-box {
        height: 400px;
    }

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

@media (max-width: 768px) {

    .b112-site .b112-nav-links,
    .b112-site .b112-nav-actions .b112-btn-dark {
        display: none;
    }

    .b112-site .b112-title-large {
        font-size: 2.5rem;
    }

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

/* ========================================
   b113 (b113)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.b113-site {
    --b113-primary: #00C9B7;
    --b113-secondary: #8B5CF6;
    --b113-primary-rgb: 0, 201, 183;
    --b113-secondary-rgb: 139, 92, 246;
    --b113-dark: #0A0A0A;
    --b113-light: #F8F9FA;
    --b113-text: #1F2937;
    --b113-muted: #6B7280;
    --b113-gradient-1: linear-gradient(135deg, #00C9B7 0%, #0EA5E9 100%);
    --b113-gradient-2: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --b113-gradient-3: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --b113-gradient-4: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --b113-gradient-hero: linear-gradient(135deg, #1E293B 0%, #334155 30%, #0F766E 60%, #0EA5E9 100%);
    --b113-radius: 24px;
    --b113-gap: 32px;
    --b113-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    --b113-font: 'Inter', sans-serif;

    font-family: var(--b113-font);
    color: var(--b113-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b113-site .b113-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b113-gap);
}

.b113-site .b113-section {
    padding: 140px 0;
}

/* Typography */
.b113-site .b113-title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--b113-dark);
}

.b113-site .b113-title-large {
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: -4px;
}

.b113-site .b113-title-medium {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -2px;
}

.b113-site .b113-title-small {
    font-size: 1.875rem;
    letter-spacing: -1px;
}

.b113-site .b113-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    display: block;
}

.b113-site .b113-section-subtitle {
    font-size: 1.25rem;
    color: var(--b113-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.b113-site .b113-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: var(--b113-font);
}

.b113-site .b113-btn-primary {
    background: #ffffff;
    color: var(--b113-dark);
}

.b113-site .b113-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.b113-site .b113-btn-hero {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 48px;
}

.b113-site .b113-btn-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.b113-site .b113-btn-large {
    padding: 20px 52px;
    font-size: 1.125rem;
}

/* Navigation */
.b113-site .b113-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.b113-site .b113-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.b113-site .b113-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.b113-site .b113-nav-link:hover {
    color: #ffffff;
}

/* Hero Section */
.b113-site .b113-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--b113-gradient-hero);
    position: relative;
    padding-top: 100px;
    text-align: center;
    overflow: hidden;
}

.b113-site .b113-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 201, 183, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
}

.b113-site .b113-hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    margin-bottom: 80px;
}

.b113-site .b113-hero .b113-title {
    color: #ffffff;
    margin-bottom: 40px;
}

.b113-site .b113-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.b113-site .b113-stat-item {
    text-align: left;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.b113-site .b113-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.b113-site .b113-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Features Section */
.b113-site .b113-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.b113-site .b113-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--b113-muted);
    margin-bottom: 32px;
}

.b113-site .b113-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.b113-site .b113-feature-card {
    padding: 48px;
    border-radius: var(--b113-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b113-site .b113-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.b113-site .b113-card-1 {
    background: var(--b113-gradient-1);
}

.b113-site .b113-card-2 {
    background: var(--b113-gradient-2);
}

.b113-site .b113-card-3 {
    background: var(--b113-gradient-3);
}

.b113-site .b113-card-4 {
    background: var(--b113-gradient-4);
}

.b113-site .b113-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b113-shadow);
}

.b113-site .b113-feature-content {
    position: relative;
    z-index: 2;
}

.b113-site .b113-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.b113-site .b113-feature-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.b113-site .b113-feature-number {
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    line-height: 1;
    text-align: right;
}

/* Courses Section */
.b113-site .b113-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.b113-site .b113-course-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--b113-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.b113-site .b113-course-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--b113-primary);
    transform: translateY(-4px);
}

.b113-site .b113-course-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--b113-primary);
    margin-bottom: 24px;
}

.b113-site .b113-course-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.b113-site .b113-course-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.b113-site .b113-course-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Process Section */
.b113-site .b113-process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    align-items: center;
}

.b113-site .b113-process-card {
    grid-column: span 2;
    padding: 48px 32px;
    background: var(--b113-light);
    border-radius: var(--b113-radius);
    text-align: center;
    transition: all 0.4s ease;
}

.b113-site .b113-process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b113-shadow);
}

.b113-site .b113-process-number {
    width: 60px;
    height: 60px;
    background: var(--b113-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 24px;
}

.b113-site .b113-process-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--b113-dark);
    margin-bottom: 12px;
}

.b113-site .b113-process-text {
    font-size: 1rem;
    color: var(--b113-muted);
    line-height: 1.6;
}

.b113-site .b113-process-arrow {
    grid-column: span 1;
    text-align: center;
    font-size: 2rem;
    color: var(--b113-primary);
    font-weight: 700;
}

/* FAQ Section */
.b113-site .b113-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.b113-site .b113-faq-item {
    padding: 40px;
    background: #ffffff;
    border-radius: var(--b113-radius);
    border: 2px solid var(--b113-light);
    transition: all 0.4s ease;
}

.b113-site .b113-faq-item:hover {
    border-color: var(--b113-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.b113-site .b113-faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b113-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.b113-site .b113-faq-answer {
    font-size: 1rem;
    color: var(--b113-muted);
    line-height: 1.7;
}

/* CTA Section */
.b113-site .b113-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.b113-site .b113-cta-text {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.b113-site .b113-footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
}

.b113-site .b113-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.b113-site .b113-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.b113-site .b113-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.b113-site .b113-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.b113-site .b113-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b113-site .b113-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Animations */
@keyframes b113-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b113-site .b113-animate {
    opacity: 0;
    animation: b113-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b113-site .b113-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .b113-site .b113-features-grid {
        grid-template-columns: 1fr;
    }

    .b113-site .b113-process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .b113-site .b113-process-card {
        grid-column: span 1;
    }

    .b113-site .b113-process-arrow {
        grid-column: span 1;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .b113-site .b113-section {
        padding: 80px 0;
    }

    .b113-site .b113-hero {
        padding-top: 100px;
        min-height: 90vh;
    }

    .b113-site .b113-nav-links {
        display: none !important;
    }

    .b113-site .b113-hero-stats {
        grid-template-columns: 1fr;
    }

    .b113-site .b113-courses-grid,
    .b113-site .b113-faq-grid {
        grid-template-columns: 1fr;
    }

    .b113-site .b113-feature-card {
        min-height: 300px;
    }

    .b113-site .b113-feature-number {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .b113-site .b113-title-large {
        font-size: 3rem;
    }

    .b113-site .b113-title-medium {
        font-size: 2rem;
    }
}

/* ========================================
   b114 (b114)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.b114-site {
    --b114-bg-dark: #121212;
    --b114-bg-card: #1A1A1A;
    --b114-text-main: #FFFFFF;
    --b114-text-muted: #A0A0A0;
    --b114-border: #2A2A2A;
    --b114-gap: 32px;
    --b114-font: 'Inter', sans-serif;

    font-family: var(--b114-font);
    color: var(--b114-text-main);
    background-color: var(--b114-bg-dark);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.b114-site * {
    box-sizing: border-box;
}

.b114-site a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.b114-site .b114-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b114-gap);
}

/* Typography */
.b114-site .b114-title-large {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.b114-site .b114-title-medium {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b114-site .b114-text {
    font-size: 1.1rem;
    color: var(--b114-text-muted);
    margin-bottom: 24px;
    max-width: 500px;
    font-weight: 300;
}

.b114-site .b114-text-sm {
    font-size: 0.9rem;
    color: var(--b114-text-muted);
}

.b114-site .b114-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--b114-text-muted);
    font-weight: 600;
}

/* Buttons & Links */
.b114-site .b114-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--b114-text-main);
    color: var(--b114-bg-dark);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.b114-site .b114-btn:hover {
    background: #E0E0E0;
}

.b114-site .b114-btn-outline {
    background: transparent;
    border: 1px solid var(--b114-text-main);
    color: var(--b114-text-main);
}

.b114-site .b114-btn-outline:hover {
    background: var(--b114-text-main);
    color: var(--b114-bg-dark);
}

.b114-site .b114-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--b114-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b114-site .b114-link:hover {
    color: var(--b114-text-main);
}

/* Navigation */
.b114-site .b114-nav {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--b114-border);
}

.b114-site .b114-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b114-site .b114-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.b114-site .b114-brand-icon {
    width: 20px;
    height: 20px;
    background: var(--b114-text-main);
    transform: rotate(45deg);
}

.b114-site .b114-nav-menu {
    display: flex;
    gap: 32px;
}

.b114-site .b114-nav-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Hero Section */
.b114-site .b114-hero {
    padding: 180px 0 100px;
    border-bottom: 1px solid var(--b114-border);
}

.b114-site .b114-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.b114-site .b114-hero-icon {
    margin-top: 40px;
    color: var(--b114-text-muted);
}

.b114-site .b114-hero-image {
    height: 500px;
    width: 100%;
}

/* Clients Strip */
.b114-site .b114-clients-strip {
    padding: 40px 0;
    border-bottom: 1px solid var(--b114-border);
}

.b114-site .b114-clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.b114-site .b114-client-logo {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--b114-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.b114-site .b114-logo-box {
    border: 1px solid var(--b114-border);
    padding: 8px 16px;
}

/* Sections */
.b114-site .b114-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--b114-border);
}

/* Services Section */
.b114-site .b114-services-grid {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    gap: 40px;
}

.b114-site .b114-service-item {
    padding-top: 24px;
}

.b114-site .b114-service-icon {
    margin-bottom: 32px;
    color: var(--b114-text-main);
    opacity: 0.8;
}

.b114-site .b114-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.b114-site .b114-service-text {
    font-size: 0.95rem;
    color: var(--b114-text-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* Featured Work Section */
.b114-site .b114-works-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 64px;
}

.b114-site .b114-works-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.b114-site .b114-work-item {
    position: relative;
}

.b114-site .b114-work-large {
    grid-column: span 2;
    height: 500px;
}

.b114-site .b114-work-item:not(.b114-work-large) {
    height: 300px;
}

.b114-site .b114-work-caption {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--b114-text-main);
    font-weight: 500;
}

.b114-site .b114-work-caption span:last-child {
    color: var(--b114-text-muted);
}

/* Image Placeholder */
.b114-site .b114-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--b114-bg-card);
    overflow: hidden;
}

.b114-site .b114-img-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.b114-site .b114-work-item:hover .b114-img-placeholder svg {
    transform: scale(1.05);
}

/* Footer */
.b114-site .b114-footer {
    padding: 60px 0;
    background-color: var(--b114-bg-dark);
}

/* Animations */
.b114-site .b114-animate-up {
    animation: b114SlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes b114SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .b114-site .b114-nav-menu {
        display: none;
    }

    .b114-site .b114-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b114-site .b114-hero-content {
        margin-bottom: 40px;
    }

    .b114-site .b114-text,
    .b114-site .b114-hero-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .b114-site .b114-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .b114-site .b114-services-label {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }

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

    .b114-site .b114-works-info {
        text-align: center;
        margin-bottom: 40px;
    }

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

    .b114-site .b114-work-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .b114-site .b114-title-large {
        font-size: 3rem;
    }

    .b114-site .b114-clients-grid {
        justify-content: center;
    }

    .b114-site .b114-services-grid {
        grid-template-columns: 1fr;
    }

    .b114-site .b114-services-label {
        grid-column: span 1;
    }
}


/* ========================================
   b115 (b115)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.b115-site {
    --b115-primary: #1E1B4B;
    --b115-secondary: #8B7FD5;
    --b115-accent: #A78BFA;
    --b115-primary-rgb: 30, 27, 75;
    --b115-secondary-rgb: 139, 127, 213;
    --b115-dark: #0F0E1A;
    --b115-light: #F5F3FF;
    --b115-light-purple: #E9E5FF;
    --b115-text: #1F2937;
    --b115-muted: #6B7280;
    --b115-gradient-purple: linear-gradient(135deg, #8B7FD5 0%, #A78BFA 100%);
    --b115-gradient-blue: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --b115-radius: 24px;
    --b115-radius-large: 32px;
    --b115-gap: 32px;
    --b115-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --b115-font: 'Inter', sans-serif;

    font-family: var(--b115-font);
    color: var(--b115-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b115-site .b115-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b115-gap);
}

.b115-site .b115-section {
    padding: 120px 0;
}

/* Typography */
.b115-site .b115-title {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--b115-dark);
}

.b115-site .b115-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -2px;
}

.b115-site .b115-title-medium {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -1.5px;
}

.b115-site .b115-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b115-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.b115-site .b115-section-text {
    font-size: 1.125rem;
    color: var(--b115-muted);
    line-height: 1.8;
}

/* Buttons */
.b115-site .b115-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    font-family: var(--b115-font);
}

.b115-site .b115-btn-primary {
    background: var(--b115-dark);
    color: #ffffff;
}

.b115-site .b115-btn-primary:hover {
    background: var(--b115-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.3);
}

.b115-site .b115-btn-secondary {
    background: var(--b115-dark);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 0.875rem;
}

.b115-site .b115-btn-secondary:hover {
    background: var(--b115-primary);
}

.b115-site .b115-btn-hero {
    background: var(--b115-dark);
    color: #ffffff;
    padding: 16px 40px;
    margin-top: 32px;
}

.b115-site .b115-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.b115-site .b115-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Navigation */
.b115-site .b115-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.b115-site .b115-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--b115-dark);
}

.b115-site .b115-nav-link {
    color: var(--b115-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.b115-site .b115-nav-link:hover {
    color: var(--b115-primary);
}

/* Hero Section */
.b115-site .b115-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #F5F3FF 0%, #ffffff 100%);
}

.b115-site .b115-hero-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--b115-light-purple);
    border-radius: var(--b115-radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.b115-site .b115-hero-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 32px;
    color: var(--b115-primary);
}

.b115-site .b115-hero-subtitle {
    font-size: 1.125rem;
    color: var(--b115-muted);
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.7;
}

.b115-site .b115-hero-visual {
    margin-top: 60px;
    height: 280px;
    position: relative;
}

.b115-site .b115-visual-landscape {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #8B7FD5 0%, #A78BFA 50%, #C4B5FD 100%);
    border-radius: var(--b115-radius);
    position: absolute;
    bottom: 0;
    left: 0;
}

.b115-site .b115-visual-coin {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    border: 8px solid var(--b115-light-purple);
}

.b115-site .b115-visual-coin-left {
    left: 80px;
}

.b115-site .b115-visual-coin-right {
    right: 80px;
}

/* About Section */
.b115-site .b115-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.b115-site .b115-about-text {
    font-size: 1.25rem;
    color: var(--b115-muted);
    line-height: 1.8;
}

/* Features Cards */
.b115-site .b115-features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.b115-site .b115-feature-card {
    padding: 48px 40px;
    border-radius: var(--b115-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.b115-site .b115-card-light {
    background: var(--b115-light);
}

.b115-site .b115-card-dark {
    background: var(--b115-dark);
}

.b115-site .b115-card-dark .b115-feature-card-title,
.b115-site .b115-card-dark .b115-feature-card-text {
    color: #ffffff;
}

.b115-site .b115-card-light .b115-feature-card-title {
    color: var(--b115-dark);
}

.b115-site .b115-card-light .b115-feature-card-text {
    color: var(--b115-text);
}

.b115-site .b115-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b115-shadow);
}

.b115-site .b115-feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.b115-site .b115-feature-card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: auto;
}

.b115-site .b115-feature-visual {
    width: 100%;
    height: 140px;
    margin-top: 32px;
    border-radius: 16px;
}

.b115-site .b115-visual-flower {
    background: linear-gradient(135deg, #C4B5FD 0%, #DDD6FE 100%);
}

/* Partners Section */
.b115-site .b115-partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.b115-site .b115-partners-label {
    font-size: 0.875rem;
    color: var(--b115-muted);
}

.b115-site .b115-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.b115-site .b115-partner-item {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b115-muted);
    opacity: 0.6;
}

/* Use Cases & Business Sections */
.b115-site .b115-usecases-grid,
.b115-site .b115-business-grid,
.b115-site .b115-treasury-grid,
.b115-site .b115-developers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b115-site .b115-business-text,
.b115-site .b115-treasury-text,
.b115-site .b115-developers-text {
    font-size: 1.125rem;
    color: var(--b115-muted);
    line-height: 1.8;
    margin: 24px 0 32px;
}

.b115-site .b115-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--b115-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.b115-site .b115-link-arrow:hover {
    gap: 12px;
}

.b115-site .b115-business-visual,
.b115-site .b115-treasury-visual {
    height: 500px;
    border-radius: var(--b115-radius);
    background: var(--b115-light);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px;
}

.b115-site .b115-visual-building {
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: var(--b115-radius);
}

.b115-site .b115-visual-vault {
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #8B7FD5 0%, #A78BFA 100%);
    border-radius: var(--b115-radius);
}

/* Developers Section */
.b115-site .b115-developers-features {
    display: flex;
    gap: 32px;
    margin: 32px 0;
}

.b115-site .b115-dev-feature {
    text-align: center;
}

.b115-site .b115-dev-icon {
    width: 60px;
    height: 60px;
    background: var(--b115-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--b115-primary);
    margin: 0 auto 12px;
    font-size: 0.875rem;
}

.b115-site .b115-dev-feature p {
    font-size: 0.875rem;
    color: var(--b115-muted);
}

.b115-site .b115-code-window {
    background: var(--b115-dark);
    border-radius: var(--b115-radius);
    overflow: hidden;
}

.b115-site .b115-code-header {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 8px;
}

.b115-site .b115-code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.b115-site .b115-code-content {
    padding: 32px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #E5E7EB;
    overflow-x: auto;
}

.b115-site .b115-code-keyword {
    color: #C084FC;
}

.b115-site .b115-code-string {
    color: #86EFAC;
}

.b115-site .b115-code-function {
    color: #60A5FA;
}

.b115-site .b115-code-number {
    color: #FCA5A5;
}

.b115-site .b115-code-comment {
    color: #6B7280;
}

/* CTA Section */
.b115-site .b115-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.b115-site .b115-cta-text {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0 40px;
}

.b115-site .b115-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.b115-site .b115-footer {
    background: var(--b115-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b115-site .b115-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 320px;
}

.b115-site .b115-footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.b115-site .b115-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.b115-site .b115-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b115-site .b115-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b115-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b115-site .b115-animate {
    opacity: 0;
    animation: b115-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .b115-site .b115-about-grid,
    .b115-site .b115-usecases-grid,
    .b115-site .b115-business-grid,
    .b115-site .b115-treasury-grid,
    .b115-site .b115-developers-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b115-site .b115-features-cards {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .b115-site .b115-section {
        padding: 80px 0;
    }

    .b115-site .b115-hero {
        padding: 120px 0 60px;
    }

    .b115-site .b115-hero-card {
        padding: 60px 32px;
    }

    .b115-site .b115-nav-links {
        display: none !important;
    }

    .b115-site .b115-visual-coin {
        width: 120px;
        height: 120px;
    }

    .b115-site .b115-visual-coin-left {
        left: 20px;
    }

    .b115-site .b115-visual-coin-right {
        right: 20px;
    }

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

    .b115-site .b115-developers-features {
        flex-direction: column;
        gap: 24px;
    }

    .b115-site .b115-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   b116 (b116)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b116-site {
    --b116-primary: #0066FF;
    --b116-secondary: #00C2FF;
    --b116-primary-rgb: 0, 102, 255;
    --b116-secondary-rgb: 0, 194, 255;
    --b116-dark: #000000;
    --b116-darker: #0A0A0A;
    --b116-card: #1A1A1A;
    --b116-text: #FFFFFF;
    --b116-muted: #999999;
    --b116-radius: 20px;
    --b116-gap: 32px;
    --b116-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --b116-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b116-font);
    color: var(--b116-text);
    background-color: var(--b116-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b116-site .b116-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b116-gap);
}

.b116-site .b116-section {
    padding: 120px 0;
}

/* Typography */
.b116-site .b116-title {
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--b116-text);
}

.b116-site .b116-title-hero {
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: -4px;
}

.b116-site .b116-title-large {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -3px;
}

.b116-site .b116-section-text {
    font-size: 1.125rem;
    color: var(--b116-muted);
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* Buttons */
.b116-site .b116-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9375rem;
}

.b116-site .b116-btn-primary {
    background: var(--b116-primary);
    color: #ffffff;
}

.b116-site .b116-btn-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.b116-site .b116-btn-white {
    background: #ffffff;
    color: var(--b116-dark);
}

.b116-site .b116-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.b116-site .b116-btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* Navigation */
.b116-site .b116-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b116-site .b116-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--b116-text);
    letter-spacing: -1px;
}

.b116-site .b116-nav-link {
    color: var(--b116-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.b116-site .b116-nav-link:hover {
    color: var(--b116-text);
}

/* Hero Section */
.b116-site .b116-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--b116-dark);
}

.b116-site .b116-hero-content {
    max-width: 900px;
}

.b116-site .b116-hero-text {
    font-size: 1.125rem;
    color: var(--b116-muted);
    line-height: 1.8;
    margin: 32px 0 40px;
    max-width: 700px;
}

.b116-site .b116-hero-badge {
    width: 80px;
    height: 80px;
    background: var(--b116-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Showcase Section */
.b116-site .b116-showcase {
    padding: 80px 0;
    background: var(--b116-dark);
}

.b116-site .b116-showcase-card {
    background: var(--b116-card);
    border-radius: var(--b116-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.b116-site .b116-showcase-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b116-site .b116-showcase-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.b116-site .b116-play-btn {
    width: 64px;
    height: 64px;
    background: var(--b116-primary);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.b116-site .b116-play-btn:hover {
    transform: scale(1.1);
    background: #0052CC;
}

.b116-site .b116-showcase-image {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 194, 255, 0.2) 100%);
    position: relative;
}

/* Stats Section */
.b116-site .b116-stats {
    padding: 80px 0;
    background: var(--b116-dark);
}

.b116-site .b116-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.b116-site .b116-stat-card {
    background: var(--b116-primary);
    border-radius: var(--b116-radius);
    padding: 40px 32px;
    text-align: center;
}

.b116-site .b116-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.b116-site .b116-stat-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 16px;
}

.b116-site .b116-stat-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Header */
.b116-site .b116-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Services Section */
.b116-site .b116-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b116-site .b116-service-card {
    border-radius: var(--b116-radius);
    padding: 48px 40px;
    transition: all 0.4s ease;
    position: relative;
}

.b116-site .b116-service-dark {
    background: var(--b116-card);
}

.b116-site .b116-service-blue {
    background: var(--b116-primary);
}

.b116-site .b116-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b116-shadow);
}

.b116-site .b116-service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.b116-site .b116-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.b116-site .b116-service-list li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
}

.b116-site .b116-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--b116-primary);
    border-radius: 50%;
}

.b116-site .b116-service-blue .b116-service-list li::before {
    background: #ffffff;
}

.b116-site .b116-service-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 32px;
}

/* Clients Section */
.b116-site .b116-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.b116-site .b116-client-logo {
    height: 120px;
    background: var(--b116-card);
    border-radius: var(--b116-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.b116-site .b116-client-logo:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--b116-primary);
}

.b116-site .b116-client-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b116-muted);
}

/* Features Section */
.b116-site .b116-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.b116-site .b116-feature-item {
    padding: 48px 40px;
    background: var(--b116-card);
    border-radius: var(--b116-radius);
    transition: all 0.4s ease;
}

.b116-site .b116-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.1);
}

.b116-site .b116-feature-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--b116-primary);
    margin-bottom: 24px;
}

.b116-site .b116-feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.b116-site .b116-feature-text {
    font-size: 1rem;
    color: var(--b116-muted);
    line-height: 1.7;
}

/* CTA Section */
.b116-site .b116-cta {
    padding: 120px 0;
    background: var(--b116-primary);
    text-align: center;
}

.b116-site .b116-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.b116-site .b116-cta-text {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 24px 0 40px;
}

/* Footer */
.b116-site .b116-footer {
    background: var(--b116-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.b116-site .b116-footer-text {
    color: var(--b116-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b116-site .b116-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b116-text);
}

.b116-site .b116-footer-link {
    color: var(--b116-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b116-site .b116-footer-link:hover {
    color: var(--b116-primary);
}

.b116-site .b116-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    color: var(--b116-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b116-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b116-site .b116-animate {
    opacity: 0;
    animation: b116-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b116-site .b116-showcase-card {
        grid-template-columns: 1fr;
    }

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

    .b116-site .b116-services-grid {
        grid-template-columns: 1fr;
    }

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

    .b116-site .b116-features-grid {
        grid-template-columns: 1fr;
    }

    .b116-site .b116-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b116-site .b116-section {
        padding: 80px 0;
    }

    .b116-site .b116-hero {
        padding-top: 120px;
    }

    .b116-site .b116-nav-links {
        display: none !important;
    }

    .b116-site .b116-stats-grid {
        grid-template-columns: 1fr;
    }

    .b116-site .b116-clients-grid {
        grid-template-columns: 1fr;
    }

    .b116-site .b116-showcase-content {
        padding: 40px 32px;
    }
}

/* ========================================
   b117 (b117)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b117-site {
    --b117-primary: #A78BFA;
    --b117-secondary: #C4F82A;
    --b117-primary-rgb: 167, 139, 250;
    --b117-secondary-rgb: 196, 248, 42;
    --b117-dark: #0A0A0A;
    --b117-darker: #000000;
    --b117-card: #1A1A1A;
    --b117-text: #FFFFFF;
    --b117-muted: #999999;
    --b117-radius: 24px;
    --b117-gap: 32px;
    --b117-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --b117-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b117-font);
    color: var(--b117-text);
    background-color: var(--b117-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b117-site .b117-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b117-gap);
}

.b117-site .b117-section {
    padding: 120px 0;
}

.b117-site .b117-section-dark {
    background: var(--b117-dark);
}

.b117-site .b117-section-light {
    background: var(--b117-darker);
}

/* Typography */
.b117-site .b117-title {
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--b117-text);
}

.b117-site .b117-title-hero {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -3px;
}

.b117-site .b117-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -2px;
}

.b117-site .b117-title-medium {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -2px;
}

.b117-site .b117-highlight {
    color: var(--b117-secondary);
}

/* Buttons */
.b117-site .b117-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.b117-site .b117-btn-primary {
    background: var(--b117-secondary);
    color: var(--b117-darker);
}

.b117-site .b117-btn-primary:hover {
    background: #B8E625;
    transform: translateY(-2px);
}

.b117-site .b117-btn-outline {
    background: transparent;
    color: var(--b117-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.b117-site .b117-btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* Navigation */
.b117-site .b117-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b117-site .b117-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--b117-text);
}

.b117-site .b117-brand svg {
    color: var(--b117-primary);
}

.b117-site .b117-nav-link {
    color: var(--b117-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.b117-site .b117-nav-link:hover {
    color: var(--b117-text);
}

/* Hero Section */
.b117-site .b117-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--b117-darker);
}

.b117-site .b117-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b117-site .b117-hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin: 32px 0 24px;
    line-height: 1.3;
}

.b117-site .b117-hero-text {
    font-size: 1rem;
    color: var(--b117-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.b117-site .b117-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.b117-site .b117-hero-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--b117-muted);
    font-size: 0.875rem;
}

.b117-site .b117-hero-time svg {
    color: var(--b117-secondary);
}

/* Hero Visual */
.b117-site .b117-hero-visual {
    position: relative;
    height: 600px;
}

.b117-site .b117-card {
    position: absolute;
    border-radius: var(--b117-radius);
    padding: 24px;
    transition: all 0.4s ease;
}

.b117-site .b117-card:hover {
    transform: translateY(-5px);
}

.b117-site .b117-card-purple {
    background: var(--b117-primary);
    color: var(--b117-darker);
    width: 280px;
    top: 0;
    left: 0;
}

.b117-site .b117-card-white {
    background: #ffffff;
    color: var(--b117-darker);
    width: 240px;
    top: 120px;
    right: 80px;
}

.b117-site .b117-card-purple-light {
    background: rgba(167, 139, 250, 0.2);
    border: 1px solid var(--b117-primary);
    width: 220px;
    top: 340px;
    right: 0;
}

.b117-site .b117-card-person {
    background: var(--b117-card);
    width: 200px;
    bottom: 80px;
    left: 40px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.b117-site .b117-card-amount {
    background: var(--b117-secondary);
    color: var(--b117-darker);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: 120px;
}

.b117-site .b117-card-header {
    margin-bottom: 16px;
}

.b117-site .b117-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b117-site .b117-card-title-dark {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--b117-darker);
}

.b117-site .b117-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b117-site .b117-card-list li {
    font-size: 0.875rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.b117-site .b117-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--b117-darker);
    border-radius: 50%;
}

.b117-site .b117-card-text {
    font-size: 0.875rem;
    color: var(--b117-darker);
    line-height: 1.6;
}

.b117-site .b117-card-text-small {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.b117-site .b117-card-icon {
    margin-top: 16px;
    color: var(--b117-darker);
}

.b117-site .b117-card-badge {
    width: 48px;
    height: 48px;
    background: var(--b117-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.b117-site .b117-person-image {
    width: 48px;
    height: 48px;
    background: var(--b117-primary);
    border-radius: 50%;
}

.b117-site .b117-person-text {
    font-size: 0.8125rem;
    line-height: 1.4;
}

.b117-site .b117-amount {
    font-size: 1.5rem;
    font-weight: 900;
}

/* Stats Section */
.b117-site .b117-stats-header {
    max-width: 600px;
    margin-bottom: 80px;
}

.b117-site .b117-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.b117-site .b117-stat-item {
    display: flex;
    gap: 32px;
}

.b117-site .b117-stat-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--b117-secondary);
    line-height: 1;
    opacity: 0.3;
}

.b117-site .b117-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--b117-secondary);
}

.b117-site .b117-stat-text {
    font-size: 1rem;
    color: var(--b117-muted);
    line-height: 1.7;
}

/* How It Works Section */
.b117-site .b117-works-header {
    max-width: 600px;
    margin-bottom: 80px;
}

.b117-site .b117-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.b117-site .b117-work-card {
    padding: 48px 40px;
    border-radius: var(--b117-radius);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.b117-site .b117-work-card-1 {
    background: var(--b117-primary);
    color: var(--b117-darker);
}

.b117-site .b117-work-card-2 {
    background: var(--b117-primary);
    color: var(--b117-darker);
}

.b117-site .b117-work-card-3 {
    background: var(--b117-primary);
    color: var(--b117-darker);
}

.b117-site .b117-work-card-4 {
    background: var(--b117-primary);
    color: var(--b117-darker);
}

.b117-site .b117-work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b117-shadow);
}

.b117-site .b117-work-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--b117-secondary);
    margin-bottom: 24px;
}

.b117-site .b117-work-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.b117-site .b117-work-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Section */
.b117-site .b117-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.b117-site .b117-feature-item {
    padding: 40px 32px;
    background: var(--b117-card);
    border-radius: var(--b117-radius);
    text-align: center;
    transition: all 0.4s ease;
}

.b117-site .b117-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(167, 139, 250, 0.1);
}

.b117-site .b117-feature-icon {
    margin-bottom: 24px;
    color: var(--b117-primary);
}

.b117-site .b117-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b117-site .b117-feature-text {
    font-size: 0.9375rem;
    color: var(--b117-muted);
    line-height: 1.6;
}

/* CTA Section */
.b117-site .b117-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.b117-site .b117-cta-text {
    font-size: 1.375rem;
    color: var(--b117-muted);
    margin: 24px 0 40px;
}

/* Footer */
.b117-site .b117-footer {
    background: var(--b117-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.b117-site .b117-footer-text {
    color: var(--b117-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b117-site .b117-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--b117-text);
}

.b117-site .b117-footer-link {
    color: var(--b117-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b117-site .b117-footer-link:hover {
    color: var(--b117-primary);
}

.b117-site .b117-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    color: var(--b117-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b117-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b117-site .b117-animate {
    opacity: 0;
    animation: b117-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b117-site .b117-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b117-site .b117-hero-visual {
        height: 500px;
    }

    .b117-site .b117-stats-grid {
        grid-template-columns: 1fr;
    }

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

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

    .b117-site .b117-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b117-site .b117-section {
        padding: 80px 0;
    }

    .b117-site .b117-hero {
        padding-top: 120px;
    }

    .b117-site .b117-nav-links {
        display: none !important;
    }

    .b117-site .b117-hero-visual {
        height: 400px;
    }

    .b117-site .b117-card {
        transform: scale(0.8);
    }

    .b117-site .b117-features-grid {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   b118 (b118)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.b118-site {
    --b118-bg: #FFFFFF;
    --b118-text: #0F0F0F;
    --b118-text-light: #666666;
    --b118-primary: #000000;
    --b118-accent: #8A2BE2;
    /* Violet/Purple */
    --b118-accent-light: #E6E6FA;
    --b118-card-bg: #F8F9FA;
    --b118-radius: 16px;
    --b118-gap: 24px;
    --b118-font: 'Inter', sans-serif;

    font-family: var(--b118-font);
    background-color: var(--b118-bg);
    color: var(--b118-text);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

.b118-site * {
    box-sizing: border-box;
}

.b118-site a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.b118-site .b118-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--b118-gap);
    position: relative;
    z-index: 2;
}

/* Navigation */
.b118-site .b118-nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.b118-site .b118-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b118-site .b118-brand {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b118-site .b118-logo-icon {
    width: 24px;
    height: 24px;
    background: var(--b118-primary);
    mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDJMMiA3bDEwIDUgMTAtNS0xMC01ek0yIDE3bDEwIDUgMTAtNS0xMC01TTIgMTJsMTAgNSAxMC01IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+');
    -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDJMMiA3bDEwIDUgMTAtNS0xMC01ek0yIDE3bDEwIDUgMTAtNS0xMC01TTIgMTJsMTAgNSAxMC01IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+');
    background-size: cover;
}

.b118-site .b118-nav-links {
    display: flex;
    gap: 32px;
}

.b118-site .b118-link {
    font-size: 0.9rem;
    color: var(--b118-text-light);
    font-weight: 500;
}

.b118-site .b118-link:hover {
    color: var(--b118-primary);
}

.b118-site .b118-btn-dark {
    background: var(--b118-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.b118-site .b118-btn-dark:hover {
    background: #333;
    transform: translateY(-1px);
}

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

.b118-site .b118-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.b118-site .b118-grid-shape {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    /* Simplified grid representation using repeating-linear-gradient */
    background-image:
        linear-gradient(rgba(138, 43, 226, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.b118-site .b118-hero-center-visual {
    margin: 0 auto 40px;
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
}

.b118-site .b118-hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.b118-site .b118-hero-text-left {
    text-align: left;
}

.b118-site .b118-hero-text-right {
    text-align: left;
}

.b118-site .b118-hero-action {
    text-align: center;
}

.b118-site .b118-title-hero {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.b118-site .b118-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.b118-site .b118-text-sm {
    font-size: 0.9rem;
    color: var(--b118-text-light);
    line-height: 1.5;
    max-width: 300px;
}

.b118-site .b118-btn-wide {
    padding: 12px 32px;
    font-size: 1rem;
}

.b118-site .b118-link-arrow {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--b118-text);
    margin-top: 8px;
    display: inline-block;
}

/* Bento Grid Section */
.b118-site .b118-section {
    padding: 80px 0;
}

.b118-site .b118-title-section {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 1.1;
}

.b118-site .b118-text-center {
    text-align: center;
}

.b118-site .b118-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.b118-site .b118-card {
    border-radius: var(--b118-radius);
    padding: 32px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.b118-site .b118-card:hover {
    transform: translateY(-5px);
}

.b118-site .b118-card-dark {
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b118-site .b118-card-light {
    background: var(--b118-card-bg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.b118-site .b118-card-large {
    min-height: 400px;
}

.b118-site .b118-card-title-light {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.b118-site .b118-card-text-light {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 80%;
}

.b118-site .b118-coin-graphic {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #000);
    border-radius: 50%;
    margin-top: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.b118-site .b118-coin-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 15%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.b118-site .b118-grid-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.b118-site .b118-card-content-side {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.b118-site .b118-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.b118-site .b118-card-text {
    font-size: 0.9rem;
    color: var(--b118-text-light);
    max-width: 200px;
}

/* Feature Section */
.b118-site .b118-border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.b118-site .b118-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.b118-site .b118-feature-text {
    flex: 1;
}

.b118-site .b118-title-medium {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.b118-site .b118-text {
    color: var(--b118-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.b118-site .b118-feature-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.b118-site .b118-abstract-shape {
    position: relative;
}

.b118-site .b118-label-tag {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--b118-text-light);
}

/* Existing Styles ... */

/* New Sections */
.b118-site .b118-bg-alt {
    background: #F0F2F5;
}

.b118-site .b118-bg-dark {
    background: #000;
    color: #fff;
}

.b118-site .b118-border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Stats Section */
.b118-site .b118-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.b118-site .b118-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #8A2BE2, #CBB4D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b118-site .b118-stat-label {
    font-size: 0.85rem;
    color: var(--b118-text-light);
    font-weight: 500;
}

/* Ecosystem Section */
.b118-site .b118-section-header {
    margin-bottom: 60px;
}

.b118-site .b118-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.b118-site .b118-tool-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--b118-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.b118-site .b118-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.b118-site .b118-tool-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.b118-site .b118-tool-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.b118-site .b118-tool-text {
    font-size: 0.9rem;
    color: var(--b118-text-light);
    line-height: 1.5;
}

/* Roadmap Section */
.b118-site .b118-roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.b118-site .b118-roadmap-item {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--b118-accent);
}

.b118-site .b118-roadmap-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--b118-accent);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.b118-site .b118-roadmap-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.b118-site .b118-roadmap-text {
    font-size: 0.9rem;
    color: var(--b118-text-light);
}

/* FAQ Section */
.b118-site .b118-faq-list {
    margin-top: 40px;
    text-align: left;
}

.b118-site .b118-faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.b118-site .b118-faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.b118-site .b118-faq-a {
    font-size: 0.95rem;
    color: var(--b118-text-light);
}

/* Expanded Footer */
.b118-site .b118-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    text-align: left;
    margin-bottom: 60px;
}

.b118-site .b118-footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    max-width: 280px;
}

.b118-site .b118-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b118-site .b118-footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b118-site .b118-footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.b118-site .b118-footer-col a:hover {
    color: var(--b118-accent);
}

.b118-site .b118-partners-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.b118-site .b118-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .b118-site .b118-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .b118-site .b118-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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


/* ========================================
   b119 (b119)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b119-site {
    --b119-primary: #FFC1E0;
    --b119-secondary: #FF8FC7;
    --b119-primary-rgb: 255, 193, 224;
    --b119-secondary-rgb: 255, 143, 199;
    --b119-dark: #000000;
    --b119-darker: #0A0A0A;
    --b119-card: #1A1A1A;
    --b119-text: #000000;
    --b119-text-light: #FFFFFF;
    --b119-muted: #666666;
    --b119-radius: 8px;
    --b119-gap: 32px;
    --b119-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --b119-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b119-font);
    color: var(--b119-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b119-site .b119-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b119-gap);
}

.b119-site .b119-section {
    padding: 100px 0;
}

.b119-site .b119-section-white {
    background: #ffffff;
}

.b119-site .b119-section-dark {
    background: var(--b119-dark);
    color: var(--b119-text-light);
}

.b119-site .b119-section-pink {
    background: var(--b119-primary);
}

/* Typography */
.b119-site .b119-title {
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.b119-site .b119-title-hero {
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: -4px;
}

.b119-site .b119-title-large {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -3px;
}

/* Buttons */
.b119-site .b119-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--b119-dark);
    font-size: 0.875rem;
}

.b119-site .b119-btn-outline {
    background: transparent;
    color: var(--b119-dark);
}

.b119-site .b119-btn-outline:hover {
    background: var(--b119-dark);
    color: #ffffff;
}

.b119-site .b119-btn-outline-dark {
    background: transparent;
    color: var(--b119-dark);
    border-color: var(--b119-dark);
}

.b119-site .b119-btn-outline-dark:hover {
    background: var(--b119-dark);
    color: #ffffff;
}

.b119-site .b119-btn-dark {
    background: var(--b119-dark);
    color: #ffffff;
    border-color: var(--b119-dark);
}

.b119-site .b119-btn-dark:hover {
    background: transparent;
    color: var(--b119-dark);
}

.b119-site .b119-btn-large {
    padding: 16px 48px;
    font-size: 1rem;
}

/* Navigation */
.b119-site .b119-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--b119-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.b119-site .b119-brand {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--b119-dark);
}

.b119-site .b119-nav-link {
    color: var(--b119-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.b119-site .b119-nav-link:hover {
    opacity: 0.6;
}

.b119-site .b119-social-icon {
    width: 32px;
    height: 32px;
    background: var(--b119-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b119-primary);
    transition: all 0.3s ease;
}

.b119-site .b119-social-icon:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.b119-site .b119-hero {
    padding: 140px 0 80px;
    background: var(--b119-primary);
}

.b119-site .b119-hero-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.b119-site .b119-hero-subtitle {
    font-size: 1.125rem;
    color: var(--b119-dark);
    margin: 24px 0 32px;
    line-height: 1.6;
}

.b119-site .b119-hero-services {
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.b119-site .b119-services-text {
    font-size: 0.9375rem;
    color: var(--b119-dark);
    text-align: center;
}

/* Work Section */
.b119-site .b119-work-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.b119-site .b119-work-subtitle {
    font-size: 1.125rem;
    color: var(--b119-muted);
    margin: 24px 0 32px;
    line-height: 1.7;
}

.b119-site .b119-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b119-site .b119-work-item {
    transition: all 0.4s ease;
}

.b119-site .b119-work-item:hover {
    transform: translateY(-5px);
}

.b119-site .b119-work-image {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    border-radius: var(--b119-radius);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.b119-site .b119-work-image-1 {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
}

.b119-site .b119-work-image-2 {
    background: linear-gradient(135deg, var(--b119-primary) 0%, var(--b119-secondary) 100%);
}

.b119-site .b119-work-image-3 {
    background: linear-gradient(135deg, #3A3A3A 0%, #2C2C2C 100%);
}

.b119-site .b119-work-item:hover .b119-work-image {
    transform: scale(1.02);
}

.b119-site .b119-work-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.b119-site .b119-work-link {
    font-size: 0.875rem;
    color: var(--b119-muted);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.b119-site .b119-work-link:hover {
    color: var(--b119-dark);
}

/* Method Section */
.b119-site .b119-method-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.b119-site .b119-method-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0 32px;
    line-height: 1.7;
}

.b119-site .b119-method-list {
    max-width: 900px;
}

.b119-site .b119-method-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.b119-site .b119-method-item:hover {
    padding-left: 20px;
}

.b119-site .b119-method-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--b119-text-light);
}

.b119-site .b119-method-toggle {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--b119-text-light);
}

.b119-site .b119-method-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

/* Services Section */
.b119-site .b119-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.b119-site .b119-service-card {
    padding: 40px 32px;
    background: #f9f9f9;
    border-radius: var(--b119-radius);
    text-align: center;
    transition: all 0.4s ease;
}

.b119-site .b119-service-card:hover {
    background: var(--b119-primary);
    transform: translateY(-5px);
}

.b119-site .b119-service-icon {
    margin-bottom: 24px;
    color: var(--b119-dark);
}

.b119-site .b119-service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b119-site .b119-service-text {
    font-size: 0.9375rem;
    color: var(--b119-muted);
    line-height: 1.6;
}

/* CTA Section */
.b119-site .b119-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.b119-site .b119-cta-text {
    font-size: 1.25rem;
    color: var(--b119-dark);
    margin: 24px 0 40px;
}

/* Footer */
.b119-site .b119-footer {
    background: #f9f9f9;
    padding: 80px 0 40px;
}

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

.b119-site .b119-footer-text {
    color: var(--b119-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.b119-site .b119-footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--b119-dark);
}

.b119-site .b119-footer-link {
    color: var(--b119-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.b119-site .b119-footer-link:hover {
    color: var(--b119-dark);
}

.b119-site .b119-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 32px;
    text-align: center;
    color: var(--b119-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b119-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b119-site .b119-animate {
    opacity: 0;
    animation: b119-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b119-site .b119-work-grid {
        grid-template-columns: 1fr;
    }

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

    .b119-site .b119-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .b119-site .b119-section {
        padding: 80px 0;
    }

    .b119-site .b119-hero {
        padding: 120px 0 60px;
    }

    .b119-site .b119-nav-links {
        display: none !important;
    }

    .b119-site .b119-services-grid {
        grid-template-columns: 1fr;
    }

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

    .b119-site .b119-method-title {
        font-size: 1.125rem;
    }
}

/* ========================================
   b120 (b120)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.b120-site {
    --b120-bg-main: #111111;
    --b120-bg-secondary: #1A1A1A;
    --b120-bg-card: #1E1E1E;
    --b120-text-white: #FFFFFF;
    --b120-text-muted: #A0A0A0;
    --b120-accent: #AEE9FF;
    --b120-border: #333333;
    --b120-gap: 32px;
    --b120-font: 'Inter', sans-serif;

    font-family: var(--b120-font);
    background-color: var(--b120-bg-main);
    color: var(--b120-text-white);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.b120-site * {
    box-sizing: border-box;
}

.b120-site a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.b120-site .b120-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b120-gap);
}

/* Typography */
.b120-site .b120-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.b120-site .b120-title-medium {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.b120-site .b120-text {
    font-size: 1.1rem;
    color: var(--b120-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.b120-site .b120-link-sm {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--b120-text-white);
    display: inline-flex;
    align-items: center;
}

.b120-site .b120-link-sm:hover {
    color: var(--b120-accent);
}

.b120-site .b120-text-center {
    text-align: center;
}

/* Buttons & Links */
.b120-site .b120-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--b120-accent);
    color: var(--b120-bg-main);
    border-radius: 4px;
    font-weight: 600;
}

.b120-site .b120-btn-primary:hover {
    background: #99d9ef;
    transform: translateY(-2px);
}

.b120-site .b120-btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--b120-border);
    color: var(--b120-text-white);
    border-radius: 4px;
    font-weight: 600;
}

.b120-site .b120-btn-outline:hover {
    border-color: var(--b120-text-white);
    background: var(--b120-bg-secondary);
}

.b120-site .b120-btn-text {
    font-weight: 600;
    color: var(--b120-text-white);
}

.b120-site .b120-btn-text:hover {
    color: var(--b120-accent);
}

.b120-site .b120-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--b120-text-muted);
}

.b120-site .b120-link:hover {
    color: var(--b120-text-white);
}

/* Navigation */
.b120-site .b120-nav {
    padding: 24px 0;
    border-bottom: 1px solid var(--b120-border);
}

.b120-site .b120-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b120-site .b120-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

.b120-site .b120-nav-menu {
    display: flex;
    gap: 32px;
}

.b120-site .b120-nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Hero Section */
.b120-site .b120-hero {
    padding: 100px 0;
}

.b120-site .b120-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.b120-site .b120-hero-btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.b120-site .b120-img-frame {
    width: 100%;
    height: 600px;
    background: var(--b120-bg-secondary);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.b120-site .b120-img-placeholder {
    width: 100%;
    height: 100%;
}

/* Logos Section */
.b120-site .b120-logos-strip {
    padding: 40px 0;
    border-top: 1px solid var(--b120-border);
    border-bottom: 1px solid var(--b120-border);
}

.b120-site .b120-logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.b120-site .b120-logo-item {
    font-weight: 700;
    color: var(--b120-text-muted);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Services Section */
.b120-site .b120-section {
    padding: 120px 0;
}

.b120-site .b120-services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.b120-site .b120-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.b120-site .b120-card {
    background: var(--b120-bg-card);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.b120-site .b120-card:hover {
    transform: translateY(-8px);
}

.b120-site .b120-card-accent {
    background: var(--b120-accent);
    color: var(--b120-bg-main);
}

.b120-site .b120-card-accent .b120-card-text,
.b120-site .b120-card-accent .b120-link-sm {
    color: var(--b120-bg-main);
}

.b120-site .b120-card-icon {
    margin-bottom: 24px;
}

.b120-site .b120-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b120-site .b120-card-text {
    font-size: 0.95rem;
    color: var(--b120-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Process Section */
.b120-site .b120-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.b120-site .b120-process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--b120-border);
    z-index: 0;
}

.b120-site .b120-process-step {
    position: relative;
    z-index: 1;
}

.b120-site .b120-step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--b120-bg-secondary);
    -webkit-text-stroke: 1px var(--b120-border);
    margin-bottom: 24px;
    background: var(--b120-bg-main);
    display: inline-block;
    padding: 0 10px;
}

.b120-site .b120-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b120-site .b120-step-text {
    font-size: 0.95rem;
    color: var(--b120-text-muted);
}

.b120-site .b120-bg-alt {
    background: var(--b120-bg-secondary);
}

/* Case Studies */
.b120-site .b120-case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.b120-site .b120-case-card {
    background: var(--b120-bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--b120-border);
}

.b120-site .b120-case-img {
    height: 300px;
}

.b120-site .b120-case-info {
    padding: 32px;
}

.b120-site .b120-case-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--b120-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.b120-site .b120-case-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b120-site .b120-case-text {
    font-size: 1rem;
    color: var(--b120-text-muted);
}

/* Testimonials */
.b120-site .b120-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.b120-site .b120-testimonial-card {
    background: var(--b120-bg-secondary);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--b120-border);
}

.b120-site .b120-testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 32px;
    color: var(--b120-text-white);
}

.b120-site .b120-testimonial-user strong {
    display: block;
    color: var(--b120-accent);
}

.b120-site .b120-testimonial-user span {
    font-size: 0.9rem;
    color: var(--b120-text-muted);
}

/* Footer */
.b120-site .b120-footer {
    padding: 100px 0 40px;
    background: #000;
    border-top: 1px solid var(--b120-border);
}

.b120-site .b120-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 80px;
}

.b120-site .b120-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b120-site .b120-footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--b120-accent);
}

.b120-site .b120-footer-col a,
.b120-site .b120-footer-col span {
    display: block;
    margin-bottom: 12px;
    color: var(--b120-text-muted);
    font-size: 0.95rem;
}

.b120-site .b120-footer-col a:hover {
    color: var(--b120-text-white);
}

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

/* Animations */
.b120-site .b120-animate-up {
    animation: b120SlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes b120SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .b120-site .b120-nav-menu,
    .b120-site .b120-nav-actions .b120-link {
        display: none;
    }

    .b120-site .b120-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b120-site .b120-hero-btns {
        justify-content: center;
    }

    .b120-site .b120-text,
    .b120-site .b120-services-intro .b120-text {
        margin-left: auto;
        margin-right: auto;
    }

    .b120-site .b120-services-layout {
        grid-template-columns: 1fr;
    }

    .b120-site .b120-services-intro {
        text-align: center;
        margin-bottom: 40px;
    }

    .b120-site .b120-process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b120-site .b120-process-grid::before {
        display: none;
    }

    .b120-site .b120-case-studies-grid,
    .b120-site .b120-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .b120-site .b120-footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .b120-site .b120-logos-grid {
        justify-content: center;
    }

    .b120-site .b120-services-grid {
        grid-template-columns: 1fr;
    }

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


/* ========================================
   b121 (b121)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@400;500;600;700&display=swap');

.b121-site {
    --b121-primary: #00FF00;
    --b121-secondary: #FF00FF;
    --b121-primary-rgb: 0, 255, 0;
    --b121-secondary-rgb: 255, 0, 255;
    --b121-dark: #000000;
    --b121-darker: #0A0A0A;
    --b121-card: #1A1A1A;
    --b121-text: #FFFFFF;
    --b121-muted: #00FF00;
    --b121-pink: #FF1493;
    --b121-radius: 0px;
    --b121-gap: 32px;
    --b121-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    --b121-font-pixel: 'Press Start 2P', cursive;
    --b121-font: 'Inter', sans-serif;

    font-family: var(--b121-font);
    color: var(--b121-text);
    background-color: var(--b121-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
    position: relative;
}

.b121-site .b121-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b121-gap);
}

.b121-site .b121-section {
    padding: 80px 0;
    position: relative;
}

/* Typography */
.b121-site .b121-title {
    font-family: var(--b121-font-pixel);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--b121-text);
    text-transform: uppercase;
}

.b121-site .b121-title-hero {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 8px;
    text-align: center;
}

.b121-site .b121-highlight {
    color: var(--b121-primary);
}

/* Buttons */
.b121-site .b121-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--b121-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--b121-primary);
    font-size: 0.875rem;
    font-family: var(--b121-font);
    background: transparent;
    color: var(--b121-text);
}

.b121-site .b121-btn-primary {
    background: var(--b121-primary);
    color: var(--b121-dark);
}

.b121-site .b121-btn-primary:hover {
    background: transparent;
    color: var(--b121-primary);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.b121-site .b121-btn-submit {
    background: var(--b121-primary);
    color: var(--b121-dark);
    padding: 12px 32px;
}

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

.b121-site .b121-btn-outline:hover {
    background: var(--b121-text);
    color: var(--b121-dark);
}

.b121-site .b121-btn-small {
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* Navigation */
.b121-site .b121-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--b121-dark);
    border-bottom: 2px solid var(--b121-primary);
}

.b121-site .b121-nav-icons {
    display: flex;
    gap: 12px;
}

.b121-site .b121-icon-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid var(--b121-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--b121-primary);
}

.b121-site .b121-icon-btn:hover {
    background: var(--b121-primary);
    color: var(--b121-dark);
}

.b121-site .b121-nav-symbols {
    display: flex;
    gap: 24px;
}

.b121-site .b121-symbol {
    font-family: var(--b121-font-pixel);
    font-size: 1rem;
    color: var(--b121-primary);
}

/* Hero Section */
.b121-site .b121-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.b121-site .b121-hero-subtitle {
    font-size: 1rem;
    color: var(--b121-muted);
    margin: 24px 0 12px;
}

.b121-site .b121-hero-date {
    font-size: 0.875rem;
    color: var(--b121-muted);
    margin-bottom: 60px;
}

.b121-site .b121-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.b121-site .b121-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--b121-text);
}

.b121-site .b121-feature-icon {
    color: var(--b121-primary);
    font-size: 1.5rem;
}

.b121-site .b121-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.b121-site .b121-cta-text {
    font-size: 0.9375rem;
    color: var(--b121-text);
}

/* Quiz Section */
.b121-site .b121-quiz-card {
    background: var(--b121-card);
    border: 4px solid var(--b121-primary);
    padding: 48px 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.b121-site .b121-quiz-header {
    margin-bottom: 32px;
}

.b121-site .b121-quiz-label {
    font-family: var(--b121-font-pixel);
    font-size: 0.75rem;
    color: var(--b121-primary);
}

.b121-site .b121-quiz-question {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 24px;
}

.b121-site .b121-quiz-hint {
    font-size: 0.875rem;
    color: var(--b121-primary);
    margin-bottom: 32px;
}

.b121-site .b121-quiz-input {
    display: flex;
    gap: 16px;
}

.b121-site .b121-input {
    flex: 1;
    padding: 12px 20px;
    background: var(--b121-dark);
    border: 2px solid var(--b121-primary);
    color: var(--b121-text);
    font-family: var(--b121-font);
    font-size: 1rem;
}

.b121-site .b121-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.b121-site .b121-quiz-badge {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.b121-site .b121-badge-border {
    border: 4px solid var(--b121-primary);
    padding: 4px;
    background: var(--b121-dark);
}

.b121-site .b121-badge-content {
    border: 2px solid var(--b121-primary);
    padding: 20px 24px;
    text-align: center;
    background: var(--b121-card);
}

.b121-site .b121-badge-title {
    font-family: var(--b121-font-pixel);
    font-size: 0.875rem;
    color: var(--b121-primary);
    display: block;
    margin-bottom: 8px;
}

.b121-site .b121-badge-subtitle {
    font-size: 0.75rem;
    color: var(--b121-text);
    display: block;
}

.b121-site .b121-quiz-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    border: 2px solid rgba(0, 255, 0, 0.2);
}

.b121-site .b121-info-text {
    font-size: 0.8125rem;
    color: var(--b121-muted);
    margin-bottom: 8px;
}

/* Banner Section */
.b121-site .b121-banner {
    padding: 60px 0;
    background: var(--b121-pink);
    text-align: center;
}

.b121-site .b121-banner-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b121-text);
    margin-bottom: 24px;
}

/* Events Section */
.b121-site .b121-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.b121-site .b121-event-card {
    background: var(--b121-card);
    border: 4px solid var(--b121-primary);
    padding: 40px 32px;
    position: relative;
}

.b121-site .b121-event-header {
    margin-bottom: 32px;
}

.b121-site .b121-event-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--b121-text);
    display: block;
    margin-top: 16px;
}

.b121-site .b121-event-badge {
    margin: 32px 0;
}

.b121-site .b121-event-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 255, 0, 0.2);
}

.b121-site .b121-event-info p {
    font-size: 0.8125rem;
    color: var(--b121-muted);
    margin-bottom: 8px;
}

/* Decorative Elements */
.b121-site .b121-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.b121-site .b121-deco {
    position: absolute;
    font-family: var(--b121-font-pixel);
    font-size: 1.5rem;
    color: var(--b121-primary);
    opacity: 0.2;
    animation: b121-float 3s ease-in-out infinite;
}

.b121-site .b121-deco-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.b121-site .b121-deco-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.b121-site .b121-deco-3 {
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
}

.b121-site .b121-deco-4 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.b121-site .b121-deco-5 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

/* Footer */
.b121-site .b121-footer {
    background: var(--b121-darker);
    padding: 40px 0;
    border-top: 2px solid var(--b121-primary);
    text-align: center;
}

.b121-site .b121-footer-text {
    font-size: 0.875rem;
    color: var(--b121-muted);
    margin-bottom: 8px;
}

/* Animations */
@keyframes b121-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes b121-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.b121-site .b121-animate {
    opacity: 0;
    animation: b121-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b121-site .b121-events-grid {
        grid-template-columns: 1fr;
    }

    .b121-site .b121-quiz-badge {
        position: static;
        transform: none;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .b121-site .b121-section {
        padding: 60px 0;
    }

    .b121-site .b121-hero {
        padding: 120px 0 60px;
    }

    .b121-site .b121-hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .b121-site .b121-quiz-input {
        flex-direction: column;
    }

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

/* New Sections */
.b121-site .b121-bg-alt {
    background: var(--b121-darker);
}

/* Rewards Detail */
.b121-site .b121-rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.b121-site .b121-reward-card {
    background: var(--b121-card);
    border: 4px solid var(--b121-secondary);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.b121-site .b121-reward-card:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    transform: translateY(-8px);
}

.b121-site .b121-reward-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.b121-site .b121-reward-title {
    font-family: var(--b121-font-pixel);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.b121-site .b121-reward-text {
    font-size: 0.8125rem;
    color: var(--b121-secondary);
    font-weight: 700;
}

/* Leaderboard */
.b121-site .b121-ranking-box {
    max-width: 800px;
    margin: 0 auto;
    border: 4px solid var(--b121-primary);
    padding: 60px 40px;
    background: var(--b121-darker);
}

.b121-site .b121-ranking-list {
    margin: 40px 0;
}

.b121-site .b121-ranking-item {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
    align-items: center;
}

.b121-site .b121-rank {
    font-family: var(--b121-font-pixel);
    color: var(--b121-primary);
}

.b121-site .b121-user {
    font-weight: 600;
}

.b121-site .b121-score {
    text-align: right;
    color: var(--b121-primary);
    font-family: var(--b121-font-pixel);
    font-size: 0.75rem;
}

.b121-site .b121-ranking-hint {
    font-size: 0.75rem;
    color: var(--b121-muted);
    text-align: center;
}

/* Steps Section */
.b121-site .b121-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.b121-site .b121-step-card {
    background: var(--b121-card);
    border: 2px dashed var(--b121-primary);
    padding: 32px;
    text-align: center;
}

.b121-site .b121-step-num {
    font-family: var(--b121-font-pixel);
    font-size: 0.75rem;
    color: var(--b121-dark);
    background: var(--b121-primary);
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 24px;
}

.b121-site .b121-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b121-site .b121-step-text {
    font-size: 0.8125rem;
    color: var(--b121-muted);
}

/* FAQ */
.b121-site .b121-faq-box {
    max-width: 800px;
    margin: 0 auto;
}

.b121-site .b121-faq-list {
    margin-top: 40px;
}

.b121-site .b121-faq-item {
    margin-bottom: 32px;
    padding: 24px;
    border-left: 4px solid var(--b121-secondary);
    background: var(--b121-card);
}

.b121-site .b121-faq-q {
    font-weight: 700;
    color: var(--b121-secondary);
    margin-bottom: 8px;
}

.b121-site .b121-faq-a {
    font-size: 0.875rem;
    color: var(--b121-text);
}

/* Updated Footer */
.b121-site .b121-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.b121-site .b121-footer-title {
    font-family: var(--b121-font-pixel);
    font-size: 0.75rem;
    color: var(--b121-primary);
    margin-bottom: 24px;
}

.b121-site .b121-footer-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: var(--b121-muted);
}

.b121-site .b121-footer-links a:hover {
    color: var(--b121-primary);
}

.b121-site .b121-footer-bottom {
    padding-top: 32px;
    border-top: 2px solid rgba(0, 255, 0, 0.1);
}

@media (max-width: 768px) {
    .b121-site .b121-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ========================================
   b122 (b122)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.b122-site {
    --b122-black: #111111;
    --b122-dark-grey: #1A1A1A;
    --b122-grey: #E5E5E5;
    --b122-light-grey: #F4F4F4;
    --b122-white: #FFFFFF;
    --b122-radius: 24px;
    --b122-gap: 24px;
    --b122-font: 'Inter', sans-serif;

    font-family: var(--b122-font);
    background-color: #EAEAEA;
    color: var(--b122-black);
    margin: 0;
    line-height: 1.4;
}

.b122-site * {
    box-sizing: border-box;
}

.b122-site .b122-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b122-gap);
}

/* Navigation */
.b122-site .b122-nav {
    padding: 24px 0;
    margin-bottom: 20px;
}

.b122-site .b122-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b122-site .b122-brand {
    font-weight: 600;
    letter-spacing: -0.5px;
    font-size: 1.1rem;
}

.b122-site .b122-nav-menu {
    display: flex;
    gap: 32px;
}

.b122-site .b122-nav-link {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.b122-site .b122-nav-link:hover {
    color: var(--b122-black);
}

.b122-site .b122-nav-date {
    font-size: 0.9rem;
    color: #666;
    background: var(--b122-white);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Buttons */
.b122-site .b122-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.b122-site .b122-btn-primary:hover {
    background: #333;
}

.b122-site .b122-btn-outline {
    background: transparent;
    color: var(--b122-black);
    border: 1px solid var(--b122-black);
}

.b122-site .b122-btn-outline:hover {
    background: var(--b122-black);
    color: var(--b122-white);
}

/* Hero Section */
.b122-site .b122-hero {
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.b122-site .b122-hero-tag {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 24px;
}

.b122-site .b122-hero-title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.b122-site .b122-hero-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
}

.b122-site .b122-hero-actions {
    display: flex;
    gap: 16px;
}

/* Section Headers */
.b122-site .b122-section {
    padding: 80px 0;
}

.b122-site .b122-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.b122-site .b122-section-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.b122-site .b122-section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

/* Main Grid Layout */
.b122-site .b122-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--b122-gap);
}

/* Base Tile Styles */
.b122-site .b122-tile {
    border-radius: var(--b122-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.b122-site .b122-tile-white {
    background-color: var(--b122-white);
    color: var(--b122-black);
}

.b122-site .b122-tile-dark {
    background-color: var(--b122-black);
    color: var(--b122-white);
}

/* 1. Stats Grid Tile */
.b122-site .b122-stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.b122-site .b122-stat-img-large {
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
    background: #333;
}

.b122-site .b122-placeholder-img {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBwcmVzZXJ2ZUFzcGVjdHJhdGlvPSJub25lIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iIzMzMyIvPjwvc3ZnPg==');
    background-size: cover;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.b122-site .b122-stat-box {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.b122-site .b122-bg-grey {
    background-color: var(--b122-grey);
}

.b122-site .b122-stat-num {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.b122-site .b122-stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

.b122-site .b122-icon-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* 2. Pain Points Tile */
.b122-site .b122-tile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.b122-site .b122-tag-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.b122-site .b122-tag-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
}

.b122-site .b122-heading-md {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.b122-site .b122-points-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: auto;
}

.b122-site .b122-point-card {
    background: #222;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.b122-site .b122-check-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b122-site .b122-check-icon::after {
    content: '✓';
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
}

.b122-site .b122-big-digit {
    font-size: 4rem;
    font-weight: 300;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
    color: #fff;
}

.b122-site .b122-point-desc {
    font-size: 0.9rem;
    color: #aaa;
}

/* 3. Big Number Tile */
.b122-site .b122-big-number-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b122-site .b122-huge-text {
    font-size: 10rem;
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: center;
    margin-top: 40px;
}

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

.b122-site .b122-text-xs {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.b122-site .b122-text-sm-muted {
    font-size: 0.9rem;
    color: #888;
    max-width: 250px;
    margin-left: auto;
}

/* 4. Title Card Tile */
.b122-site .b122-brand-sm {
    font-weight: 600;
    color: #999;
}

.b122-site .b122-capsule {
    border: 1px solid #ddd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: auto;
}

.b122-site .b122-main-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin: auto 0;
    letter-spacing: -2px;
}

.b122-site .b122-presenter {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

.b122-site .b122-card-footer {
    display: flex;
    gap: 60px;
    background: var(--b122-light-grey);
    margin: 0 -40px -40px;
    padding: 30px 40px;
}

.b122-site .b122-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 4px;
}

.b122-site .b122-value {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 5. Revenue Chart Tile */
.b122-site .b122-chart-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b122-site .b122-bar-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.b122-site .b122-bar {
    height: 40px;
    border-radius: 50px;
}

.b122-site .b122-bar-dark {
    background: #222;
}

.b122-site .b122-bar-grey {
    background: #999;
}

.b122-site .b122-bar-light {
    background: #E5E5E5;
}

.b122-site .b122-chart-footer {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.b122-site .b122-huge-num {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
}

.b122-site .b122-chart-label {
    font-size: 1rem;
    color: #666;
}

/* 6. Roadmap Tile */
.b122-site .b122-roadmap {
    margin: auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    padding-top: 40px;
}

.b122-site .b122-roadmap-line {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #555 0, #555 5px, transparent 5px, transparent 10px);
    z-index: 0;
}

.b122-site .b122-phase {
    position: relative;
    z-index: 1;
}

.b122-site .b122-phase-pill {
    background: #fff;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.b122-site .b122-phase-text {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

.b122-site .b122-heading-lg {
    font-size: 3rem;
    font-weight: 300;
    margin-top: auto;
}

/* Animations */
.b122-site .b122-animate-up {
    animation: b122SlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes b122SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.b122-site .b122-about {
    padding: 100px 0;
    background: var(--b122-white);
}

.b122-site .b122-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b122-site .b122-about-tag {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 24px;
}

.b122-site .b122-about-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.b122-site .b122-about-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.b122-site .b122-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b122-site .b122-about-stat {
    display: flex;
    flex-direction: column;
}

.b122-site .b122-about-stat-num {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.b122-site .b122-about-stat-label {
    font-size: 0.9rem;
    color: #666;
}

.b122-site .b122-about-image {
    height: 500px;
}

.b122-site .b122-placeholder-large {
    height: 100%;
    background: var(--b122-grey);
    border-radius: var(--b122-radius);
}

/* Services Section */
.b122-site .b122-services {
    padding: 100px 0;
}

.b122-site .b122-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.b122-site .b122-service-card {
    background: var(--b122-white);
    padding: 40px 32px;
    border-radius: var(--b122-radius);
    transition: all 0.3s ease;
}

.b122-site .b122-service-card:hover {
    transform: translateY(-5px);
}

.b122-site .b122-service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--b122-black);
}

.b122-site .b122-service-icon svg {
    width: 100%;
    height: 100%;
}

.b122-site .b122-service-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.b122-site .b122-service-text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.b122-site .b122-contact {
    padding: 100px 0;
}

.b122-site .b122-contact-card {
    background: var(--b122-black);
    color: var(--b122-white);
    padding: 80px 60px;
    border-radius: var(--b122-radius);
    max-width: 900px;
    margin: 0 auto;
}

.b122-site .b122-contact-tag {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 24px;
}

.b122-site .b122-contact-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.b122-site .b122-contact-text {
    font-size: 1.125rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 48px;
}

.b122-site .b122-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.b122-site .b122-contact-item {
    display: flex;
    flex-direction: column;
}

.b122-site .b122-contact-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b122-site .b122-contact-value {
    font-size: 1rem;
    color: var(--b122-white);
}

/* Footer */
.b122-site .b122-footer {
    background: var(--b122-black);
    color: var(--b122-white);
    padding: 80px 0 40px;
}

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

.b122-site .b122-footer-brand .b122-brand {
    margin-bottom: 24px;
    color: var(--b122-white);
}

.b122-site .b122-footer-text {
    font-size: 0.9375rem;
    color: #888;
    line-height: 1.7;
    max-width: 400px;
}

.b122-site .b122-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b122-site .b122-footer-link {
    display: block;
    font-size: 0.9375rem;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.b122-site .b122-footer-link:hover {
    color: var(--b122-white);
}

.b122-site .b122-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.b122-site .b122-footer-copyright {
    font-size: 0.875rem;
    color: #666;
}

.b122-site .b122-footer-social {
    display: flex;
    gap: 24px;
}

.b122-site .b122-social-link {
    font-size: 0.875rem;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.b122-site .b122-social-link:hover {
    color: var(--b122-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .b122-site .b122-nav-menu {
        display: none;
    }

    .b122-site .b122-hero-title {
        font-size: 3.5rem;
    }

    .b122-site .b122-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .b122-site .b122-contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .b122-site .b122-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .b122-site .b122-bento-grid {
        grid-template-columns: 1fr;
    }

    .b122-site .b122-tile {
        min-height: auto;
    }

    .b122-site .b122-huge-text {
        font-size: 6rem;
    }

    .b122-site .b122-stats-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .b122-site .b122-stat-img-large {
        grid-row: span 1;
        grid-column: span 2;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .b122-site .b122-hero-title {
        font-size: 2.5rem;
    }

    .b122-site .b122-hero-actions {
        flex-direction: column;
    }

    .b122-site .b122-services-grid {
        grid-template-columns: 1fr;
    }

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

    .b122-site .b122-footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}


/* ========================================
   b123 (b123)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b123-site {
    --b123-primary: #6366F1;
    --b123-secondary: #8B5CF6;
    --b123-accent: #EC4899;
    --b123-primary-rgb: 99, 102, 241;
    --b123-secondary-rgb: 139, 92, 246;
    --b123-dark: #1E1E1E;
    --b123-darker: #0A0A0A;
    --b123-card: #2A2A2A;
    --b123-light: #F5F5F5;
    --b123-text: #1F2937;
    --b123-text-light: #FFFFFF;
    --b123-muted: #6B7280;
    --b123-radius: 16px;
    --b123-radius-large: 24px;
    --b123-gap: 32px;
    --b123-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --b123-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b123-font);
    color: var(--b123-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b123-site .b123-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b123-gap);
}

.b123-site .b123-section {
    padding: 100px 0;
}

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

.b123-site .b123-section-cta {
    background: var(--b123-dark);
    color: var(--b123-text-light);
}

/* Typography */
.b123-site .b123-title {
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.b123-site .b123-title-hero {
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: -3px;
    color: var(--b123-text-light);
}

.b123-site .b123-title-large {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -2px;
}

.b123-site .b123-title-medium {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -1.5px;
}

/* Buttons */
.b123-site .b123-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.b123-site .b123-btn-primary {
    background: var(--b123-primary);
    color: #ffffff;
}

.b123-site .b123-btn-primary:hover {
    background: var(--b123-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.b123-site .b123-btn-light {
    background: #ffffff;
    color: var(--b123-dark);
}

.b123-site .b123-btn-light:hover {
    background: var(--b123-light);
    transform: translateY(-2px);
}

.b123-site .b123-btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.b123-site .b123-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.b123-site .b123-btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Navigation */
.b123-site .b123-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.b123-site .b123-brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--b123-dark);
}

.b123-site .b123-nav-link {
    color: var(--b123-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.b123-site .b123-nav-link:hover {
    color: var(--b123-primary);
}

/* Hero Section */
.b123-site .b123-hero {
    padding: 140px 0 100px;
    background: var(--b123-dark);
    position: relative;
    overflow: hidden;
}

.b123-site .b123-hero-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--b123-card) 0%, var(--b123-darker) 100%);
    border-radius: var(--b123-radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.b123-site .b123-hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.15;
}

.b123-site .b123-decoration-left {
    top: -50px;
    left: -50px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
}

.b123-site .b123-decoration-right {
    bottom: -50px;
    right: -50px;
    background: linear-gradient(135deg, var(--b123-accent) 0%, var(--b123-primary) 100%);
}

.b123-site .b123-hero-accent {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--b123-primary) 0%, var(--b123-accent) 100%);
    margin: 32px auto;
    border-radius: 2px;
}

.b123-site .b123-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trends Section */
.b123-site .b123-trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.b123-site .b123-trend-card {
    padding: 48px 40px;
    border-radius: var(--b123-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 280px;
}

.b123-site .b123-card-dark {
    background: var(--b123-dark);
    color: var(--b123-text-light);
}

.b123-site .b123-trend-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b123-shadow);
}

.b123-site .b123-trend-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    border-radius: 50%;
    opacity: 0.2;
}

.b123-site .b123-trend-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.b123-site .b123-trend-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* AI Marketing Section */
.b123-site .b123-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b123-site .b123-ai-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.b123-site .b123-ai-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--b123-light);
    border-radius: var(--b123-radius);
    transition: all 0.3s ease;
}

.b123-site .b123-ai-feature:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.b123-site .b123-ai-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.b123-site .b123-ai-feature p {
    font-size: 1rem;
    color: var(--b123-text);
    line-height: 1.6;
}

.b123-site .b123-ai-visual {
    height: 500px;
    background: var(--b123-dark);
    border-radius: var(--b123-radius-large);
    position: relative;
    overflow: hidden;
}

.b123-site .b123-visual-shape {
    position: absolute;
    border-radius: 50%;
}

.b123-site .b123-shape-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    top: 50px;
    left: 50px;
    opacity: 0.3;
}

.b123-site .b123-shape-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--b123-accent) 0%, var(--b123-primary) 100%);
    bottom: 80px;
    right: 80px;
    opacity: 0.3;
}

/* Sustainable Marketing Section */
.b123-site .b123-sustainable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b123-site .b123-sustainable-visual {
    height: 500px;
    background: var(--b123-dark);
    border-radius: var(--b123-radius-large);
    position: relative;
    overflow: hidden;
}

.b123-site .b123-shape-3 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--b123-secondary) 0%, var(--b123-accent) 100%);
    top: 80px;
    right: 60px;
    opacity: 0.3;
}

.b123-site .b123-shape-4 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    bottom: 60px;
    left: 60px;
    opacity: 0.3;
}

.b123-site .b123-sustainable-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.b123-site .b123-sustainable-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: var(--b123-radius);
    border: 2px solid var(--b123-light);
    transition: all 0.3s ease;
}

.b123-site .b123-sustainable-feature:hover {
    border-color: var(--b123-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.b123-site .b123-sustainable-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--b123-secondary) 0%, var(--b123-accent) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.b123-site .b123-sustainable-feature p {
    font-size: 1rem;
    color: var(--b123-text);
    line-height: 1.6;
}

/* Influencers Section */
.b123-site .b123-influencers-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.b123-site .b123-influencers-subtitle {
    font-size: 1.25rem;
    color: var(--b123-muted);
    margin-top: 20px;
    line-height: 1.7;
}

.b123-site .b123-influencers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b123-site .b123-influencer-card {
    padding: 48px 40px;
    border-radius: var(--b123-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 280px;
}

.b123-site .b123-card-accent {
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    color: var(--b123-text-light);
}

.b123-site .b123-influencer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--b123-shadow);
}

.b123-site .b123-influencer-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.b123-site .b123-influencer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.b123-site .b123-influencer-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Examples Section */
.b123-site .b123-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.b123-site .b123-example-card {
    padding: 48px 40px;
    background: #ffffff;
    border-radius: var(--b123-radius);
    border: 2px solid var(--b123-light);
    transition: all 0.4s ease;
}

.b123-site .b123-example-card:hover {
    border-color: var(--b123-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.b123-site .b123-example-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.b123-site .b123-example-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b123-site .b123-example-text {
    font-size: 1rem;
    color: var(--b123-muted);
    line-height: 1.7;
}

/* Recommendations Section */
.b123-site .b123-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.b123-site .b123-recommendation-card {
    padding: 48px 40px;
    background: var(--b123-dark);
    border-radius: var(--b123-radius);
    color: var(--b123-text-light);
    transition: all 0.4s ease;
}

.b123-site .b123-recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--b123-shadow);
}

.b123-site .b123-recommendation-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.b123-site .b123-recommendation-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b123-site .b123-recommendation-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA Section */
.b123-site .b123-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    position: relative;
}

.b123-site .b123-cta-decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.1;
}

.b123-site .b123-cta-decoration.b123-decoration-left {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--b123-primary) 0%, var(--b123-secondary) 100%);
}

.b123-site .b123-cta-decoration.b123-decoration-right {
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--b123-accent) 0%, var(--b123-primary) 100%);
}

.b123-site .b123-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0 40px;
    line-height: 1.7;
}

.b123-site .b123-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.b123-site .b123-footer {
    background: var(--b123-darker);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b123-site .b123-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 360px;
}

.b123-site .b123-footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.b123-site .b123-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.b123-site .b123-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b123-site .b123-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b123-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b123-site .b123-animate {
    opacity: 0;
    animation: b123-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .b123-site .b123-trends-grid,
    .b123-site .b123-influencers-grid,
    .b123-site .b123-examples-grid,
    .b123-site .b123-recommendations-grid {
        grid-template-columns: 1fr;
    }

    .b123-site .b123-ai-grid,
    .b123-site .b123-sustainable-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .b123-site .b123-section {
        padding: 80px 0;
    }

    .b123-site .b123-hero {
        padding: 120px 0 80px;
    }

    .b123-site .b123-hero-card,
    .b123-site .b123-cta-content {
        padding: 60px 32px;
    }

    .b123-site .b123-nav-links {
        display: none !important;
    }

    .b123-site .b123-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b123-site .b123-ai-visual,
    .b123-site .b123-sustainable-visual {
        height: 350px;
    }
}

/* ========================================
   b124 (b124)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Roboto+Condensed:wght@700&display=swap');

.b124-site {
    --b124-primary: #3D6B5A;
    --b124-secondary: #5A8A75;
    --b124-dark: #2C4A3E;
    --b124-light: #F5F5F0;
    --b124-beige: #E8E6DD;
    --b124-text: #2C3E50;
    --b124-muted: #6B7280;
    --b124-green-light: #7FA894;
    --b124-radius: 16px;
    --b124-radius-large: 24px;
    --b124-gap: 32px;
    --b124-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    --b124-font: 'Roboto', sans-serif;
    --b124-font-title: 'Roboto Condensed', sans-serif;

    font-family: var(--b124-font);
    color: var(--b124-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b124-site .b124-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b124-gap);
}

.b124-site .b124-section {
    padding: 100px 0;
}

/* Typography */
.b124-site .b124-title {
    font-family: var(--b124-font-title);
    font-weight: 900;
    line-height: 1.1;
    color: var(--b124-dark);
}

.b124-site .b124-title-hero {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 4px;
}

.b124-site .b124-section-title {
    font-family: var(--b124-font-title);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--b124-dark);
    margin-bottom: 60px;
}

/* Buttons */
.b124-site .b124-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--b124-font);
    text-transform: uppercase;
}

.b124-site .b124-btn-primary {
    background: var(--b124-dark);
    color: #ffffff;
    border-color: var(--b124-dark);
}

.b124-site .b124-btn-primary:hover {
    background: var(--b124-primary);
    border-color: var(--b124-primary);
}

.b124-site .b124-btn-outline {
    background: transparent;
    color: var(--b124-dark);
    border: 2px solid var(--b124-dark);
}

.b124-site .b124-btn-outline:hover {
    background: var(--b124-dark);
    color: #ffffff;
}

.b124-site .b124-btn-submit {
    width: 100%;
    margin-top: 8px;
}

/* Navigation */
.b124-site .b124-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.b124-site .b124-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--b124-font-title);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--b124-dark);
}

.b124-site .b124-brand-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--b124-dark);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--b124-primary), var(--b124-secondary));
}

.b124-site .b124-nav-link {
    color: var(--b124-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.b124-site .b124-nav-link:hover {
    color: var(--b124-primary);
}

/* Hero Section */
.b124-site .b124-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: var(--b124-primary);
}

.b124-site .b124-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--b124-dark) 0%, var(--b124-primary) 50%, var(--b124-secondary) 100%);
    opacity: 0.95;
}

.b124-site .b124-hero-card {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--b124-beige);
    border-radius: var(--b124-radius-large);
    padding: 48px;
}

.b124-site .b124-hero .b124-title-hero {
    color: var(--b124-dark);
    margin-bottom: 32px;
}

.b124-site .b124-hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--b124-radius);
    overflow: hidden;
}

.b124-site .b124-hero-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b124-primary) 0%, var(--b124-secondary) 100%);
}

.b124-site .b124-hero-caption {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: #ffffff;
}

.b124-site .b124-hero-caption p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.b124-site .b124-scroll-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b124-site .b124-scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Welcome Section */
.b124-site .b124-welcome-header {
    text-align: center;
    margin-bottom: 80px;
}

.b124-site .b124-welcome-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.b124-site .b124-welcome-img-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--b124-radius);
}

.b124-site .b124-img-player {
    background: linear-gradient(135deg, var(--b124-secondary) 0%, var(--b124-primary) 100%);
}

.b124-site .b124-img-equipment {
    background: linear-gradient(135deg, var(--b124-dark) 0%, var(--b124-primary) 100%);
}

.b124-site .b124-welcome-text {
    text-align: center;
}

.b124-site .b124-welcome-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--b124-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.b124-site .b124-welcome-desc {
    font-size: 1rem;
    color: var(--b124-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Services Section */
.b124-site .b124-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.b124-site .b124-service-card {
    text-align: center;
    transition: all 0.4s ease;
}

.b124-site .b124-service-card:hover {
    transform: translateY(-8px);
}

.b124-site .b124-service-image {
    width: 100%;
    height: 280px;
    border-radius: var(--b124-radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.b124-site .b124-service-img-placeholder {
    width: 100%;
    height: 100%;
}

.b124-site .b124-service-img-1 {
    background: linear-gradient(135deg, var(--b124-primary) 0%, var(--b124-secondary) 100%);
}

.b124-site .b124-service-img-2 {
    background: linear-gradient(135deg, var(--b124-secondary) 0%, var(--b124-green-light) 100%);
}

.b124-site .b124-service-img-3 {
    background: linear-gradient(135deg, var(--b124-dark) 0%, var(--b124-primary) 100%);
}

.b124-site .b124-service-title {
    font-family: var(--b124-font-title);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--b124-dark);
    margin-bottom: 12px;
}

.b124-site .b124-service-text {
    font-size: 0.95rem;
    color: var(--b124-muted);
    line-height: 1.6;
}

.b124-site .b124-services-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.b124-site .b124-nav-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid var(--b124-dark);
    border-radius: 4px;
    background: transparent;
    color: var(--b124-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b124-site .b124-nav-arrow:hover {
    background: var(--b124-dark);
    color: #ffffff;
}

/* News Section */
.b124-site .b124-news-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.b124-site .b124-news-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--b124-primary) 0%, var(--b124-secondary) 100%);
    border-radius: var(--b124-radius);
}

.b124-site .b124-news-text {
    font-size: 1rem;
    color: var(--b124-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.b124-site .b124-subscribe-form {
    max-width: 500px;
}

.b124-site .b124-form-group {
    margin-bottom: 20px;
}

.b124-site .b124-form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--b124-beige);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.b124-site .b124-form-input:focus {
    outline: none;
    border-color: var(--b124-primary);
}

.b124-site .b124-form-note {
    font-size: 0.875rem;
    color: var(--b124-muted);
    margin-top: 12px;
    text-align: center;
}

/* Locations Section */
.b124-site .b124-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b124-site .b124-location-card {
    text-align: center;
    transition: all 0.4s ease;
}

.b124-site .b124-location-card:hover {
    transform: translateY(-8px);
}

.b124-site .b124-location-image {
    width: 100%;
    height: 320px;
    border-radius: var(--b124-radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.b124-site .b124-location-img-placeholder {
    width: 100%;
    height: 100%;
}

.b124-site .b124-location-img-1 {
    background: linear-gradient(135deg, var(--b124-primary) 0%, var(--b124-dark) 100%);
}

.b124-site .b124-location-img-2 {
    background: linear-gradient(135deg, var(--b124-secondary) 0%, var(--b124-primary) 100%);
}

.b124-site .b124-location-img-3 {
    background: linear-gradient(135deg, var(--b124-green-light) 0%, var(--b124-secondary) 100%);
}

.b124-site .b124-location-name {
    font-family: var(--b124-font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b124-dark);
    margin-bottom: 12px;
}

.b124-site .b124-location-address {
    font-size: 0.95rem;
    color: var(--b124-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.b124-site .b124-location-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--b124-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.b124-site .b124-location-link:hover {
    color: var(--b124-dark);
}

/* Membership Section */
.b124-site .b124-membership-content {
    text-align: center;
}

.b124-site .b124-membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.b124-site .b124-membership-card {
    padding: 48px 32px;
    background: #ffffff;
    border: 2px solid var(--b124-beige);
    border-radius: var(--b124-radius);
    text-align: center;
    transition: all 0.4s ease;
}

.b124-site .b124-membership-card:hover {
    border-color: var(--b124-primary);
    transform: translateY(-8px);
    box-shadow: var(--b124-shadow);
}

.b124-site .b124-card-featured {
    background: var(--b124-light);
    border-color: var(--b124-dark);
    transform: scale(1.05);
}

.b124-site .b124-card-featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.b124-site .b124-membership-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--b124-beige);
    color: var(--b124-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.b124-site .b124-badge-premium {
    background: var(--b124-dark);
    color: #ffffff;
}

.b124-site .b124-membership-title {
    font-family: var(--b124-font-title);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--b124-dark);
    margin-bottom: 20px;
}

.b124-site .b124-membership-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--b124-primary);
    margin-bottom: 32px;
}

.b124-site .b124-membership-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--b124-muted);
}

.b124-site .b124-membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.b124-site .b124-membership-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--b124-beige);
    font-size: 0.95rem;
    color: var(--b124-text);
}

.b124-site .b124-membership-features li:last-child {
    border-bottom: none;
}

/* Footer */
.b124-site .b124-footer {
    background: var(--b124-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b124-site .b124-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 400px;
}

.b124-site .b124-footer-title {
    font-family: var(--b124-font-title);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;
}

.b124-site .b124-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.b124-site .b124-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b124-site .b124-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b124-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b124-site .b124-animate {
    opacity: 0;
    animation: b124-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b124-site .b124-welcome-content {
        grid-template-columns: 1fr;
    }

    .b124-site .b124-welcome-image-left,
    .b124-site .b124-welcome-image-right {
        display: none;
    }

    .b124-site .b124-services-grid,
    .b124-site .b124-locations-grid,
    .b124-site .b124-membership-grid {
        grid-template-columns: 1fr;
    }

    .b124-site .b124-news-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .b124-site .b124-section {
        padding: 80px 0;
    }

    .b124-site .b124-hero {
        padding-top: 100px;
    }

    .b124-site .b124-hero-card {
        padding: 32px;
    }

    .b124-site .b124-nav-links {
        display: none !important;
    }

    .b124-site .b124-card-featured {
        transform: scale(1);
    }

    .b124-site .b124-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   b125 (b125)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.b125-site {
    --b125-black: #111111;
    --b125-dark-grey: #1A1A1A;
    --b125-white: #FFFFFF;
    --b125-light: #F5F5F5;
    --b125-blue: #007BFF;
    --b125-border-light: #E0E0E0;
    --b125-border-dark: #333333;
    --b125-font: 'Inter', sans-serif;

    font-family: var(--b125-font);
    color: var(--b125-black);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

.b125-site * {
    box-sizing: border-box;
}

.b125-site .b125-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.b125-site .b125-nav {
    background: var(--b125-white);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--b125-border-light);
}

.b125-site .b125-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b125-site .b125-brand {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.b125-site .b125-nav-info {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* General Sections */
.b125-site .b125-section {
    padding: 100px 0;
    border-bottom: 1px solid transparent;
}

.b125-site .b125-bg-white {
    background-color: var(--b125-white);
    color: var(--b125-black);
    border-bottom: 1px solid var(--b125-border-light);
}

.b125-site .b125-bg-light {
    background-color: var(--b125-light);
    color: var(--b125-black);
    border-bottom: 1px solid var(--b125-border-light);
}

.b125-site .b125-bg-dark {
    background-color: var(--b125-black);
    color: var(--b125-white);
}

.b125-site .b125-border-top {
    border-top: 1px solid var(--b125-border-dark);
}

/* Headers */
.b125-site .b125-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid;
    border-color: inherit;
    /* Takes parent color */
}

.b125-site .b125-bg-dark .b125-section-header {
    border-color: var(--b125-border-dark);
}

.b125-site .b125-bg-white .b125-section-header,
.b125-site .b125-bg-light .b125-section-header {
    border-color: var(--b125-border-light);
}

.b125-site .b125-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.b125-site .b125-num {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.4;
}

/* Hero Section */
.b125-site .b125-hero-section {
    padding: 120px 0;
    text-align: center;
}

.b125-site .b125-logo-large {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -4px;
    line-height: 1;
}

.b125-site .b125-tagline {
    font-size: 1rem;
    letter-spacing: 4px;
    color: #666;
    margin-top: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.b125-site .b125-meta {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 60px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--b125-border-light);
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Structure Section */
.b125-site .b125-content-wrapper {
    max-width: 900px;
}

.b125-site .b125-subtext {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 32px;
}

.b125-site .b125-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.b125-site .b125-tag {
    background: var(--b125-white);
    color: var(--b125-black);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

/* Activities Section */
.b125-site .b125-subtext-blue {
    font-size: 1.1rem;
    color: var(--b125-blue);
    font-weight: 700;
    margin-bottom: 40px;
}

.b125-site .b125-activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.b125-site .b125-activity-item {
    border-left: 2px solid var(--b125-border-light);
    padding-left: 20px;
}

.b125-site .b125-activity-num {
    display: block;
    color: var(--b125-blue);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.b125-site .b125-activity-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Split Layouts (Trends, Metrics, Performance) */
.b125-site .b125-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.b125-site .b125-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.b125-site .b125-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.b125-site .b125-desc-sm {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.b125-site .b125-desc-light {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.b125-site .b125-desc-sm-light {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.b125-site .b125-visual-block {
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.b125-site .b125-metrics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b125-site .b125-metrics-list li {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.b125-site .b125-img-placeholder {
    width: 100%;
    height: 300px;
    background: #000 url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBwcmVzZXJ2ZUFzcGVjdHJhdGlvPSJub25lIj48cGF0aCBkPSJNMCAxMDAgUSA1MCA1MCAxMDAgMTAwIE0wIDgwIFE1MCAzMCAxMDAgODAiIHN0cm9rZT0iIzMzMyIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+PC9zdmc+');
    background-size: cover;
    border-radius: 4px;
}

.b125-site .b125-stat-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.b125-site .b125-stat-big {
    font-size: 6rem;
    font-weight: 800;
    color: var(--b125-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.b125-site .b125-stat-caption {
    font-size: 1rem;
    color: #999;
}

/* Table */
.b125-site .b125-table-wrapper {
    overflow-x: auto;
}

.b125-site .b125-table {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
    font-size: 0.9rem;
}

.b125-site .b125-table th {
    text-align: left;
    padding: 16px;
    border-bottom: 2px solid var(--b125-border-dark);
    color: var(--b125-white);
    font-weight: 700;
    text-transform: uppercase;
}

.b125-site .b125-table td {
    padding: 16px;
    border-bottom: 1px solid var(--b125-border-dark);
    vertical-align: top;
    line-height: 1.5;
}

.b125-site .b125-table td:first-child {
    font-weight: 600;
    color: var(--b125-blue);
    width: 20%;
}

/* Footer */
.b125-site .b125-footer {
    padding: 40px 0;
    background: var(--b125-light);
    text-align: center;
    border-top: 1px solid var(--b125-border-light);
}

.b125-site .b125-footer-brand {
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

/* Animation */
.b125-site .b125-animate-up {
    animation: b125SlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes b125SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 900px) {
    .b125-site .b125-meta {
        flex-direction: column;
        gap: 12px;
    }

    .b125-site .b125-activity-grid,
    .b125-site .b125-split-layout {
        grid-template-columns: 1fr;
    }

    .b125-site .b125-stat-block {
        text-align: left;
        margin-top: 40px;
    }
}


/* ========================================
   b126 (b126)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b126-site {
    --b126-black: #0A0A0A;
    --b126-dark: #1A1A1A;
    --b126-grey: #2A2A2A;
    --b126-light-grey: #E5E5E5;
    --b126-white: #FFFFFF;
    --b126-accent: #FF6B35;
    --b126-radius: 24px;
    --b126-radius-sm: 16px;
    --b126-gap: 24px;
    --b126-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --b126-font: 'Inter', -apple-system, sans-serif;

    font-family: var(--b126-font);
    color: var(--b126-black);
    background-color: var(--b126-light-grey);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b126-site .b126-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b126-gap);
}

.b126-site .b126-section {
    padding: 80px 0;
}

.b126-site .b126-section-dark {
    background: var(--b126-black);
}

/* Navigation */
.b126-site .b126-nav {
    background: var(--b126-black);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.b126-site .b126-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b126-site .b126-nav-links {
    display: flex;
    gap: 8px;
    background: var(--b126-dark);
    padding: 8px;
    border-radius: 50px;
}

.b126-site .b126-nav-link {
    color: var(--b126-white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.b126-site .b126-nav-active {
    background: var(--b126-white);
    color: var(--b126-black);
}

.b126-site .b126-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.b126-site .b126-nav-active:hover {
    background: var(--b126-white);
}

.b126-site .b126-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--b126-white);
    color: var(--b126-black);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.b126-site .b126-footer {
    background: var(--b126-black);
    padding: 60px 0 32px;
}

.b126-site .b126-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--b126-dark);
    padding: 20px 40px;
    border-radius: 50px;
    margin-bottom: 48px;
}

.b126-site .b126-footer-badge {
    color: var(--b126-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.b126-site .b126-footer-title {
    color: var(--b126-white);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.b126-site .b126-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.b126-site .b126-footer-col {
    color: var(--b126-white);
}

.b126-site .b126-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--b126-white);
}

.b126-site .b126-footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

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

.b126-site .b126-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Section */
.b126-site .b126-hero {
    padding: 40px 0 80px;
}

.b126-site .b126-hero-card {
    background: var(--b126-dark);
    border-radius: var(--b126-radius);
    padding: 40px;
    position: relative;
}

.b126-site .b126-hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.b126-site .b126-badge-number {
    width: 48px;
    height: 48px;
    background: var(--b126-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--b126-black);
}

.b126-site .b126-badge-text {
    color: var(--b126-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.b126-site .b126-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 32px;
}

.b126-site .b126-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--b126-white);
    line-height: 1;
    margin: 0 0 32px 0;
    letter-spacing: -2px;
}

.b126-site .b126-hero-slider {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.b126-site .b126-slider-track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: var(--b126-white);
    border-radius: 4px;
}

.b126-site .b126-slider-thumb {
    position: absolute;
    right: 40%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--b126-white);
    border-radius: 50%;
    border: 4px solid var(--b126-dark);
}

.b126-site .b126-collab-badge {
    text-align: right;
    color: var(--b126-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.b126-site .b126-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.b126-site .b126-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.b126-site .b126-btn-primary:hover {
    background: var(--b126-grey);
}

.b126-site .b126-btn-secondary {
    background: var(--b126-white);
    color: var(--b126-black);
}

.b126-site .b126-btn-secondary:hover {
    background: var(--b126-light-grey);
}

.b126-site .b126-hero-info {
    background: var(--b126-white);
    padding: 24px;
    border-radius: var(--b126-radius-sm);
    margin-bottom: 16px;
}

.b126-site .b126-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--b126-black);
}

.b126-site .b126-info-text {
    font-size: 0.9rem;
    color: var(--b126-grey);
    line-height: 1.6;
    margin: 0;
}

.b126-site .b126-view-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: var(--b126-white);
    color: var(--b126-black);
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b126-site .b126-view-more:hover {
    background: var(--b126-light-grey);
}

.b126-site .b126-hero-actions-bottom {
    display: flex;
    gap: 16px;
}

.b126-site .b126-action-btn {
    width: 56px;
    height: 56px;
    background: var(--b126-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b126-site .b126-action-btn:hover {
    transform: scale(1.1);
    background: var(--b126-light-grey);
}

/* Timeline Section */
.b126-site .b126-timeline-header {
    margin-bottom: 40px;
}

.b126-site .b126-timeline-nav {
    display: flex;
    gap: 16px;
    background: var(--b126-white);
    padding: 8px;
    border-radius: 50px;
    max-width: fit-content;
}

.b126-site .b126-timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b126-site .b126-timeline-active {
    background: var(--b126-black);
}

.b126-site .b126-timeline-item:hover {
    background: var(--b126-light-grey);
}

.b126-site .b126-timeline-active:hover {
    background: var(--b126-black);
}

.b126-site .b126-timeline-num {
    width: 32px;
    height: 32px;
    background: var(--b126-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.b126-site .b126-timeline-active .b126-timeline-num {
    background: var(--b126-white);
    color: var(--b126-black);
}

.b126-site .b126-timeline-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--b126-black);
}

.b126-site .b126-timeline-active .b126-timeline-text {
    color: var(--b126-white);
}

.b126-site .b126-timeline-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.b126-site .b126-timeline-card {
    background: var(--b126-dark);
    padding: 32px;
    border-radius: var(--b126-radius-sm);
}

.b126-site .b126-timeline-desc {
    color: var(--b126-white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.b126-site .b126-source {
    background: var(--b126-white);
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Gallery Section */
.b126-site .b126-gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.b126-site .b126-gallery-arrow {
    width: 56px;
    height: 56px;
    background: var(--b126-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.b126-site .b126-gallery-arrow:hover {
    transform: scale(1.1);
}

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

.b126-site .b126-gallery-item {
    aspect-ratio: 16/10;
    border-radius: var(--b126-radius-sm);
    overflow: hidden;
}

.b126-site .b126-gallery-image {
    width: 100%;
    height: 100%;
    background: var(--b126-dark);
    transition: all 0.3s ease;
}

.b126-site .b126-gallery-img-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.b126-site .b126-gallery-img-2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.b126-site .b126-gallery-img-3 {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.b126-site .b126-gallery-item:hover .b126-gallery-image {
    transform: scale(1.05);
}

.b126-site .b126-gallery-home {
    text-align: center;
}

.b126-site .b126-home-btn {
    width: 72px;
    height: 72px;
    background: var(--b126-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b126-site .b126-home-btn:hover {
    transform: scale(1.1);
}

/* Footer */
.b126-site .b126-footer {
    background: var(--b126-black);
    padding: 32px 0;
}

.b126-site .b126-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--b126-dark);
    padding: 20px 40px;
    border-radius: 50px;
}

.b126-site .b126-footer-badge {
    color: var(--b126-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.b126-site .b126-footer-title {
    color: var(--b126-white);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Animations */
@keyframes b126-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b126-site .b126-animate {
    opacity: 0;
    animation: b126-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b126-site .b126-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b126-site .b126-timeline-content {
        grid-template-columns: 1fr;
    }

    .b126-site .b126-gallery-grid {
        grid-template-columns: 1fr;
    }

    .b126-site .b126-timeline-nav {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .b126-site .b126-section {
        padding: 60px 0;
    }

    .b126-site .b126-nav-links {
        display: none;
    }

    .b126-site .b126-hero-card {
        padding: 24px;
    }

    .b126-site .b126-hero-actions {
        flex-direction: column;
    }

    .b126-site .b126-gallery-wrapper {
        flex-direction: column;
    }

    .b126-site .b126-footer-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .b126-site .b126-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   b127 (b127)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.b127-site {
    --b127-purple: #D4C5F9;
    --b127-black: #000000;
    --b127-white: #FFFFFF;
    --b127-light: #F5F5F5;
    --b127-grey: #666666;
    --b127-font: 'Inter', -apple-system, sans-serif;
    --b127-radius: 0;
    --b127-gap: 24px;

    font-family: var(--b127-font);
    color: var(--b127-black);
    background-color: var(--b127-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b127-site .b127-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b127-gap);
}

.b127-site .b127-section {
    padding: 100px 0;
}

.b127-site .b127-section-purple {
    background: var(--b127-purple);
}

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

/* Navigation */
.b127-site .b127-nav {
    background: var(--b127-white);
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.b127-site .b127-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b127-site .b127-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.b127-site .b127-nav-links {
    display: flex;
    gap: 40px;
}

.b127-site .b127-nav-link {
    color: var(--b127-black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.b127-site .b127-nav-link:hover {
    opacity: 0.6;
}

.b127-site .b127-nav-meta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Typography */
.b127-site .b127-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin: 0 0 60px 0;
    text-align: center;
    letter-spacing: 8px;
}

.b127-site .b127-title-large {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -4px;
}

.b127-site .b127-title-outline {
    -webkit-text-stroke: 2px var(--b127-black);
    -webkit-text-fill-color: transparent;
}

.b127-site .b127-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--b127-black);
}

/* Brand Identity Section */
.b127-site .b127-brand-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.b127-site .b127-brand-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.b127-site .b127-list-item {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 0;
    border-bottom: 1px solid var(--b127-black);
}

.b127-site .b127-number-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.b127-site .b127-number-card {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    border-radius: 24px;
}

.b127-site .b127-card-1 {
    background: var(--b127-purple);
    color: var(--b127-black);
}

.b127-site .b127-card-2 {
    background: var(--b127-black);
    color: var(--b127-white);
}

.b127-site .b127-card-3 {
    background: var(--b127-white);
    color: var(--b127-black);
    border: 2px solid var(--b127-black);
}

.b127-site .b127-card-4 {
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    color: var(--b127-black);
}

/* Social Media Section */
.b127-site .b127-social-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.b127-site .b127-table {
    border: 1px solid #E0E0E0;
    margin-bottom: 40px;
}

.b127-site .b127-table-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #E0E0E0;
}

.b127-site .b127-table-row:last-child {
    border-bottom: none;
}

.b127-site .b127-table-label {
    padding: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border-right: 1px solid #E0E0E0;
    background: #FAFAFA;
}

.b127-site .b127-table-value {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.b127-site .b127-description-box {
    background: #FAFAFA;
    padding: 32px;
    border: 1px solid #E0E0E0;
}

.b127-site .b127-description-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}

.b127-site .b127-description-text {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    color: var(--b127-grey);
}

.b127-site .b127-instagram-post {
    background: var(--b127-white);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.b127-site .b127-post-header {
    padding: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.b127-site .b127-post-user {
    font-weight: 600;
    font-size: 0.9rem;
}

.b127-site .b127-post-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--b127-purple) 0%, #E8DFF5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b127-site .b127-post-overlay {
    font-size: 4rem;
    font-weight: 900;
    color: var(--b127-black);
    letter-spacing: 4px;
}

.b127-site .b127-post-actions {
    padding: 16px;
    display: flex;
    gap: 16px;
}

.b127-site .b127-post-actions svg {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.b127-site .b127-post-actions svg:hover {
    opacity: 0.6;
}

/* Values Section */
.b127-site .b127-values-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.b127-site .b127-value-card {
    background: var(--b127-white);
    padding: 40px;
    border: 1px solid #E0E0E0;
}

.b127-site .b127-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.b127-site .b127-value-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--b127-grey);
}

.b127-site .b127-value-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.b127-site .b127-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.b127-site .b127-value-footer {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    color: var(--b127-grey);
}

.b127-site .b127-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    border: 1px solid #E0E0E0;
}

.b127-site .b127-empowerment-banner {
    background: var(--b127-black);
    padding: 32px 0;
    overflow: hidden;
}

.b127-site .b127-banner-text {
    color: var(--b127-white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    white-space: nowrap;
    animation: b127-scroll 20s linear infinite;
}

@keyframes b127-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.b127-site .b127-footer {
    background: var(--b127-black);
    color: var(--b127-white);
    padding: 80px 0 32px;
}

.b127-site .b127-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.b127-site .b127-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.b127-site .b127-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 12px 0;
}

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

.b127-site .b127-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Animations */
@keyframes b127-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b127-site .b127-animate {
    opacity: 0;
    animation: b127-fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .b127-site .b127-brand-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .b127-site .b127-social-grid {
        grid-template-columns: 1fr;
    }

    .b127-site .b127-values-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .b127-site .b127-nav-links {
        display: none;
    }

    .b127-site .b127-section {
        padding: 60px 0;
    }

    .b127-site .b127-brand-list {
        grid-template-columns: 1fr;
    }

    .b127-site .b127-number-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .b127-site .b127-table-row {
        grid-template-columns: 1fr;
    }

    .b127-site .b127-table-label {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }

    .b127-site .b127-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .b127-site .b127-banner-text {
        font-size: 1.5rem;
    }
}


/* ========================================
   b128 (b128)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Roboto+Condensed:wght@700;900&display=swap');

.b128-site {
    --b128-primary: #6B1B1B;
    --b128-burgundy: #8B2525;
    --b128-dark: #1A1A1A;
    --b128-light: #E8E6DD;
    --b128-cream: #F5F3E8;
    --b128-gray: #A8A8A8;
    --b128-text: #2C2C2C;
    --b128-muted: #6B6B6B;
    --b128-radius: 0;
    --b128-gap: 32px;
    --b128-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --b128-font: 'Roboto', sans-serif;
    --b128-font-title: 'Roboto Condensed', sans-serif;

    font-family: var(--b128-font);
    color: var(--b128-text);
    background-color: var(--b128-cream);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b128-site .b128-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b128-gap);
}

.b128-site .b128-section {
    padding: 100px 0;
}

/* Typography */
.b128-site .b128-title {
    font-family: var(--b128-font-title);
    font-weight: 900;
    line-height: 0.9;
    color: var(--b128-dark);
}

.b128-site .b128-title-hero {
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: -4px;
    color: var(--b128-primary);
}

.b128-site .b128-section-title {
    font-family: var(--b128-font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--b128-dark);
    margin-bottom: 60px;
}

/* Buttons */
.b128-site .b128-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--b128-font);
}

.b128-site .b128-btn-hero {
    background: var(--b128-cream);
    color: var(--b128-dark);
    border: 2px solid var(--b128-dark);
}

.b128-site .b128-btn-hero:hover {
    background: var(--b128-dark);
    color: var(--b128-cream);
}

/* Navigation */
.b128-site .b128-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--b128-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.b128-site .b128-brand {
    font-family: var(--b128-font-title);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--b128-dark);
}

.b128-site .b128-nav-link {
    color: var(--b128-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.b128-site .b128-nav-link:hover {
    color: var(--b128-primary);
}

.b128-site .b128-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--b128-text);
    cursor: pointer;
}

.b128-site .b128-menu-btn span:first-child {
    width: 20px;
    height: 2px;
    background: var(--b128-dark);
}

/* Hero Section */
.b128-site .b128-hero {
    padding: 140px 0 80px;
    background: var(--b128-cream);
}

.b128-site .b128-hero-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.b128-site .b128-hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--b128-text);
    margin-bottom: 16px;
}

.b128-site .b128-hero-desc {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--b128-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.b128-site .b128-hero-circle {
    width: 200px;
    height: 200px;
    border: 2px solid var(--b128-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b128-site .b128-circle-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--b128-text);
}

.b128-site .b128-hero-image {
    background: var(--b128-gray);
    padding: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.b128-site .b128-hero-car-image {
    width: 600px;
    height: 300px;
    background: linear-gradient(135deg, #D8D8D8 0%, #A8A8A8 100%);
    flex-shrink: 0;
}

/* Features Section */
.b128-site .b128-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.b128-site .b128-feature-image-large {
    height: 600px;
    background: var(--b128-gray);
}

.b128-site .b128-car-rear-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C8C8C8 0%, #9A9A9A 100%);
}

.b128-site .b128-feature-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.b128-site .b128-feature-image-small {
    height: 280px;
    background: var(--b128-gray);
}

.b128-site .b128-car-action-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8B8B8 0%, #8A8A8A 100%);
}

.b128-site .b128-feature-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.b128-site .b128-feature-title {
    font-family: var(--b128-font-title);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--b128-dark);
    margin-bottom: 16px;
}

.b128-site .b128-feature-text {
    font-size: 0.875rem;
    color: var(--b128-muted);
    line-height: 1.8;
}

.b128-site .b128-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b128-site .b128-feature-list li {
    font-size: 0.875rem;
    color: var(--b128-text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.b128-site .b128-feature-list li:last-child {
    border-bottom: none;
}

/* Stats Section */
.b128-site .b128-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b128-site .b128-stat-card {
    padding: 48px 40px;
    text-align: left;
}

.b128-site .b128-stat-neutral {
    background: #ffffff;
    border: 2px solid var(--b128-dark);
}

.b128-site .b128-stat-highlight {
    background: var(--b128-primary);
    color: #ffffff;
}

.b128-site .b128-stat-number {
    font-family: var(--b128-font-title);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.b128-site .b128-stat-highlight .b128-stat-number {
    color: #ffffff;
}

.b128-site .b128-stat-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

.b128-site .b128-stat-highlight .b128-stat-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Company Section */
.b128-site .b128-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b128-site .b128-company-image {
    width: 100%;
    height: 300px;
    background: var(--b128-light);
    margin: 40px 0;
}

.b128-site .b128-blueprint-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D8D8D8 0%, #B8B8B8 100%);
}

.b128-site .b128-company-text {
    font-size: 0.95rem;
    color: var(--b128-muted);
    line-height: 1.8;
}

/* Phone Mockup */
.b128-site .b128-phone-mockup {
    width: 380px;
    height: 780px;
    background: #1A1A1A;
    border-radius: 48px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.b128-site .b128-phone-content {
    width: 100%;
    height: 100%;
    background: var(--b128-cream);
    border-radius: 36px;
    overflow: hidden;
}

.b128-site .b128-phone-header {
    padding: 24px;
    text-align: center;
}

.b128-site .b128-phone-brand {
    font-family: var(--b128-font-title);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.b128-site .b128-phone-hero {
    background: var(--b128-gray);
    padding: 40px 20px;
    text-align: center;
}

.b128-site .b128-phone-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.b128-site .b128-phone-title {
    font-family: var(--b128-font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--b128-primary);
    margin-bottom: 20px;
}

.b128-site .b128-phone-car {
    width: 240px;
    height: 120px;
    background: linear-gradient(135deg, #D8D8D8 0%, #A8A8A8 100%);
    margin: 20px auto;
}

.b128-site .b128-phone-btn {
    padding: 12px 32px;
    background: var(--b128-cream);
    border: 2px solid var(--b128-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
}

.b128-site .b128-phone-stats {
    padding: 32px 20px;
}

.b128-site .b128-phone-stat-title {
    font-family: var(--b128-font-title);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
}

.b128-site .b128-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.b128-site .b128-phone-number {
    padding: 16px;
    background: #ffffff;
    border: 2px solid var(--b128-dark);
    font-family: var(--b128-font-title);
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
}

.b128-site .b128-phone-highlight {
    background: var(--b128-primary);
    color: #ffffff;
}

/* Performance Section */
.b128-site .b128-performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.b128-site .b128-performance-image {
    height: 500px;
}

.b128-site .b128-dashboard-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C8C8C8 0%, #9A9A9A 100%);
}

.b128-site .b128-performance-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.b128-site .b128-performance-card {
    background: #ffffff;
    padding: 32px;
}

.b128-site .b128-performance-img {
    height: 200px;
    margin-bottom: 24px;
}

.b128-site .b128-engine-detail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b128-burgundy) 0%, var(--b128-primary) 100%);
}

.b128-site .b128-performance-text {
    font-size: 0.875rem;
    color: var(--b128-muted);
    line-height: 1.7;
}

.b128-site .b128-performance-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--b128-dark);
    line-height: 1.6;
}

/* Footer */
.b128-site .b128-footer {
    background: var(--b128-light);
    padding: 80px 0 40px;
}

.b128-site .b128-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.b128-site .b128-footer-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--b128-muted);
    margin-top: 24px;
    line-height: 2;
}

.b128-site .b128-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.b128-site .b128-footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--b128-dark);
}

.b128-site .b128-footer-link {
    color: var(--b128-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.b128-site .b128-footer-link:hover {
    color: var(--b128-dark);
}

.b128-site .b128-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--b128-muted);
}

/* Animations */
@keyframes b128-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b128-site .b128-animate {
    opacity: 0;
    animation: b128-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .b128-site .b128-features-grid,
    .b128-site .b128-company-grid,
    .b128-site .b128-performance-grid {
        grid-template-columns: 1fr;
    }

    .b128-site .b128-hero-header {
        grid-template-columns: 1fr;
    }

    .b128-site .b128-hero-circle {
        margin: 0 auto;
    }

    .b128-site .b128-stats-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .b128-site .b128-section {
        padding: 60px 0;
    }

    .b128-site .b128-hero {
        padding-top: 120px;
    }

    .b128-site .b128-nav-links {
        display: none !important;
    }

    .b128-site .b128-hero-image {
        flex-direction: column;
        padding: 40px 20px;
    }

    .b128-site .b128-hero-car-image {
        width: 100%;
        height: 200px;
    }

    .b128-site .b128-feature-info {
        grid-template-columns: 1fr;
    }

    .b128-site .b128-footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b128-site .b128-phone-mockup {
        width: 320px;
        height: 660px;
    }
}

/* ========================================
   b129 (b129)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Courier+Prime:wght@400;700&display=swap');

.b129-site {
    --b129-green: #00FF00;
    --b129-pink: #FF00FF;
    --b129-black: #000000;
    --b129-bg: #F8F0E3;
    --b129-font-pixel: 'Press Start 2P', cursive;
    --b129-font-mono: 'Courier Prime', monospace;
    --b129-gap: 24px;
    --b129-border: 4px dashed var(--b129-black);

    font-family: var(--b129-font-mono);
    background-color: var(--b129-bg);
    color: var(--b129-black);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
    /* Retro grid background pattern */
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    image-rendering: pixelated;
}

.b129-site * {
    box-sizing: border-box;
}

.b129-site a {
    text-decoration: none;
    color: inherit;
}

.b129-site .b129-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b129-gap);
}

.b129-site .b129-text-center {
    text-align: center;
}

/* Typography */
.b129-site .b129-title-mega {
    font-family: var(--b129-font-pixel);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.b129-site .b129-title-md {
    font-family: var(--b129-font-pixel);
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.b129-site .b129-title-sm {
    font-family: var(--b129-font-pixel);
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.b129-site .b129-subtitle {
    font-family: var(--b129-font-pixel);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.b129-site .b129-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons & Links */
.b129-site .b129-btn-pink {
    display: inline-block;
    background: var(--b129-pink);
    color: var(--b129-black);
    font-family: var(--b129-font-pixel);
    font-size: 0.9rem;
    padding: 16px 24px;
    border: 4px solid var(--b129-black);
    box-shadow: 4px 4px 0 var(--b129-black);
    transition: all 0.2s;
}

.b129-site .b129-btn-pink:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--b129-black);
}

.b129-site .b129-link {
    font-family: var(--b129-font-pixel);
    font-size: 0.8rem;
    text-transform: uppercase;
    position: relative;
}

.b129-site .b129-link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--b129-green);
}

/* Navigation */
.b129-site .b129-nav {
    padding: 24px 0;
    border-bottom: var(--b129-border);
    background: var(--b129-bg);
}

.b129-site .b129-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b129-site .b129-brand {
    font-family: var(--b129-font-pixel);
    font-size: 1.5rem;
}

.b129-site .b129-nav-menu {
    display: flex;
    gap: 32px;
}

/* Sections */
.b129-site .b129-section {
    padding: 80px 0;
}

/* Hero Section */
.b129-site .b129-hero {
    padding: 100px 0 80px;
}

.b129-site .b129-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.b129-site .b129-pixel-dino {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    image-rendering: pixelated;
}

/* Intro & Stats Section */
.b129-site .b129-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.b129-site .b129-cloud-box {
    background: var(--b129-white);
    border: var(--b129-border);
    padding: 32px;
    position: relative;
    /* Cloud-like shape using multiple shadows/borders would be complex, 
       sticking to a retro dashed box for simplicity */
}

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

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

.b129-site .b129-stat-num {
    font-family: var(--b129-font-pixel);
    font-size: 1.8rem;
    color: var(--b129-green);
    display: block;
    margin-bottom: 8px;
}

.b129-site .b129-stat-label {
    font-family: var(--b129-font-mono);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Services Section */
.b129-site .b129-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.b129-site .b129-service-card {
    border: var(--b129-border);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.b129-site .b129-service-card:hover {
    transform: translateY(-5px);
}

.b129-site .b129-card-pink {
    background: var(--b129-pink);
}

.b129-site .b129-card-white {
    background: var(--b129-white);
}

.b129-site .b129-service-title {
    font-family: var(--b129-font-pixel);
    font-size: 0.9rem;
    margin-bottom: 16px;
    min-height: 40px;
    /* Ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.b129-site .b129-pixel-icon {
    margin-bottom: 16px;
    image-rendering: pixelated;
}

.b129-site .b129-service-text {
    font-size: 0.85rem;
}

/* Footer */
.b129-site .b129-footer {
    padding: 40px 0;
    border-top: var(--b129-border);
    font-family: var(--b129-font-pixel);
    font-size: 0.8rem;
}

/* Animations */
.b129-site .b129-animate-up {
    animation: b129SlideUp 0.6s steps(4, end) forwards;
    /* Stepped animation for retro feel */
    opacity: 0;
    transform: translateY(20px);
}

@keyframes b129SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .b129-site .b129-nav-menu {
        display: none;
    }

    .b129-site .b129-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b129-site .b129-intro-grid {
        grid-template-columns: 1fr;
    }

    .b129-site .b129-stats-grid {
        margin-top: 40px;
    }

    .b129-site .b129-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .b129-site .b129-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ========================================
   b130 (b130)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display:wght@400&display=swap');

.b130-site {
    --b130-primary: #C4B5FD;
    --b130-purple: #A78BFA;
    --b130-dark: #1A1A1A;
    --b130-light: #E9E5FF;
    --b130-bg: #F3F1FF;
    --b130-text: #1F2937;
    --b130-muted: #6B7280;
    --b130-radius: 16px;
    --b130-gap: 32px;
    --b130-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --b130-font: 'DM Sans', sans-serif;
    --b130-font-title: 'DM Serif Display', serif;

    font-family: var(--b130-font);
    color: var(--b130-text);
    background-color: var(--b130-bg);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b130-site .b130-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b130-gap);
}

.b130-site .b130-section {
    padding: 100px 0;
}

/* Typography */
.b130-site .b130-title {
    font-family: var(--b130-font-title);
    font-weight: 400;
    line-height: 1.1;
    color: var(--b130-dark);
}

.b130-site .b130-title-large {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -2px;
}

.b130-site .b130-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--b130-muted);
}

/* Buttons */
.b130-site .b130-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.b130-site .b130-btn-primary {
    background: var(--b130-purple);
    color: #ffffff;
}

.b130-site .b130-btn-primary:hover {
    background: #8B5CF6;
    transform: translateY(-2px);
}

.b130-site .b130-btn-secondary {
    background: transparent;
    color: var(--b130-dark);
    border: 2px solid var(--b130-dark);
}

.b130-site .b130-btn-secondary:hover {
    background: var(--b130-dark);
    color: #ffffff;
}

/* Navigation */
.b130-site .b130-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(243, 241, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.b130-site .b130-nav-info,
.b130-site .b130-nav-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
}

.b130-site .b130-brand {
    font-family: var(--b130-font-title);
    font-size: 2rem;
    color: var(--b130-dark);
}

.b130-site .b130-nav-explore {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--b130-dark);
    text-decoration: none;
}

/* Section Headers */
.b130-site .b130-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.b130-site .b130-section-page {
    font-size: 0.875rem;
    color: var(--b130-muted);
}

/* Hero Section */
.b130-site .b130-hero {
    padding: 140px 0 80px;
}

.b130-site .b130-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.b130-site .b130-hero-image {
    height: 500px;
    border-radius: var(--b130-radius);
    overflow: hidden;
}

.b130-site .b130-hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b130-purple) 0%, var(--b130-primary) 100%);
}

.b130-site .b130-hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.b130-site .b130-tag {
    padding: 6px 16px;
    background: var(--b130-light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b130-dark);
}

.b130-site .b130-hero-title {
    font-family: var(--b130-font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--b130-dark);
}

/* Dark Sections */
.b130-site .b130-section-dark {
    background: var(--b130-dark);
    color: #ffffff;
}

.b130-site .b130-section-dark .b130-title,
.b130-site .b130-section-dark .b130-section-label,
.b130-site .b130-section-dark .b130-section-page {
    color: #ffffff;
}

/* Testimonial Section */
.b130-site .b130-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 60px;
}

.b130-site .b130-testimonial-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.b130-site .b130-testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.b130-site .b130-testimonial-author {
    display: flex;
    gap: 20px;
    align-items: center;
}

.b130-site .b130-author-image {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.b130-site .b130-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.b130-site .b130-author-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Steps Section */
.b130-site .b130-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.b130-site .b130-step-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--b130-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.b130-site .b130-step-number {
    width: 48px;
    height: 48px;
    background: var(--b130-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.b130-site .b130-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.b130-site .b130-step-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.b130-site .b130-steps-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.b130-site .b130-step-image {
    height: 280px;
    border-radius: var(--b130-radius);
    overflow: hidden;
}

.b130-site .b130-step-img-placeholder {
    width: 100%;
    height: 100%;
}

.b130-site .b130-step-img-1 {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.b130-site .b130-step-img-2 {
    background: linear-gradient(135deg, #5B6370 0%, #3B4553 100%);
}

.b130-site .b130-step-img-3 {
    background: linear-gradient(135deg, #7B8290 0%, #5B6573 100%);
}

/* Budget Section */
.b130-site .b130-budget-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
}

.b130-site .b130-budget-image {
    height: 600px;
    border-radius: var(--b130-radius);
}

.b130-site .b130-budget-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b130-light) 0%, var(--b130-primary) 100%);
}

.b130-site .b130-budget-intro {
    font-family: var(--b130-font-title);
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 48px;
    color: var(--b130-dark);
}

.b130-site .b130-budget-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.b130-site .b130-breakdown-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--b130-muted);
    margin-bottom: 20px;
}

.b130-site .b130-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b130-site .b130-breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
}

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

.b130-site .b130-total-item {
    text-align: center;
}

.b130-site .b130-total-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--b130-muted);
    margin-bottom: 8px;
}

.b130-site .b130-total-amount {
    display: block;
    font-family: var(--b130-font-title);
    font-size: 2rem;
    color: var(--b130-dark);
}

/* Aims Section */
.b130-site .b130-aims-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
}

.b130-site .b130-aims-image {
    height: 500px;
    border-radius: var(--b130-radius);
}

.b130-site .b130-aims-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b130-light) 0%, var(--b130-primary) 100%);
}

.b130-site .b130-aims-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.b130-site .b130-aim-circle {
    aspect-ratio: 1;
    background: var(--b130-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
}

.b130-site .b130-aim-circle span {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--b130-dark);
    line-height: 1.4;
}

/* Team Section */
.b130-site .b130-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 60px;
}

.b130-site .b130-team-member {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.b130-site .b130-member-image {
    height: 400px;
    border-radius: var(--b130-radius);
}

.b130-site .b130-member-img-placeholder {
    width: 100%;
    height: 100%;
}

.b130-site .b130-member-img-1 {
    background: linear-gradient(135deg, var(--b130-purple) 0%, var(--b130-primary) 100%);
}

.b130-site .b130-member-img-2 {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.b130-site .b130-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--b130-dark);
    margin-bottom: 16px;
}

.b130-site .b130-member-bio {
    font-size: 0.95rem;
    color: var(--b130-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.b130-site .b130-member-roles {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.b130-site .b130-member-roles li {
    padding: 6px 16px;
    background: var(--b130-light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b130-dark);
}

/* Closing Section */
.b130-site .b130-closing-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.b130-site .b130-closing-title {
    font-family: var(--b130-font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-top: 40px;
}

.b130-site .b130-closing-image {
    height: 500px;
    border-radius: var(--b130-radius);
}

.b130-site .b130-closing-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--b130-primary) 0%, var(--b130-purple) 100%);
}

/* Footer */
.b130-site .b130-footer {
    background: var(--b130-dark);
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.b130-site .b130-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 400px;
}

.b130-site .b130-footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.b130-site .b130-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.b130-site .b130-footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.b130-site .b130-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
@keyframes b130-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b130-site .b130-animate {
    opacity: 0;
    animation: b130-fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .b130-site .b130-hero-grid,
    .b130-site .b130-testimonial-grid,
    .b130-site .b130-budget-grid,
    .b130-site .b130-aims-grid,
    .b130-site .b130-team-grid,
    .b130-site .b130-closing-grid {
        grid-template-columns: 1fr;
    }

    .b130-site .b130-steps-grid,
    .b130-site .b130-budget-breakdown {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .b130-site .b130-section {
        padding: 60px 0;
    }

    .b130-site .b130-hero {
        padding-top: 120px;
    }

    .b130-site .b130-nav .b130-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .b130-site .b130-nav-info,
    .b130-site .b130-nav-date {
        display: none;
    }

    .b130-site .b130-steps-images {
        grid-template-columns: 1fr;
    }

    .b130-site .b130-aims-circles {
        grid-template-columns: 1fr;
    }

    .b130-site .b130-budget-totals {
        grid-template-columns: 1fr;
    }

    .b130-site .b130-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   b131 (b131)
   ======================================== */

@import url('[https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Inter:wght@400;500;600&display=swap](https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Inter:wght@400;500;600&display=swap)');

.b131-site {
    --b131-black: #000000;
    --b131-white: #FFFFFF;
    --b131-grey: #F5F5F5;
    --b131-dark-grey: #111111;
    --b131-text-grey: #666666;
    --b131-gap: 40px;
    --b131-font-head: 'Oswald', sans-serif;
    --b131-font-body: 'Inter', sans-serif;

    font-family: var(--b131-font-body);
    background-color: var(--b131-white);
    color: var(--b131-black);
    margin: 0;
    line-height: 1.4;
    overflow-x: hidden;
}

.b131-site * {
    box-sizing: border-box;
}

.b131-site a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.b131-site .b131-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Utilities */
.b131-site .b131-bg-white {
    background-color: var(--b131-white);
    color: var(--b131-black);
}

.b131-site .b131-bg-black {
    background-color: var(--b131-black);
    color: var(--b131-white);
}

.b131-site .b131-bg-grey {
    background-color: var(--b131-grey);
    color: var(--b131-black);
}

.b131-site .b131-text-white {
    color: var(--b131-white);
}

/* Typography */
.b131-site .b131-big-logo {
    font-family: var(--b131-font-head);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 700;
    font-style: italic;
    line-height: 0.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -6px;
    color: var(--b131-black);
}

.b131-site .b131-title-xl {
    font-family: var(--b131-font-head);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.b131-site .b131-title-lg {
    font-family: var(--b131-font-head);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.b131-site .b131-subtitle {
    font-size: 1.2rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

.b131-site .b131-subtitle-sm {
    font-family: var(--b131-font-head);
    font-size: 1.5rem;
    color: var(--b131-text-grey);
    text-transform: lowercase;
    font-style: italic;
}

.b131-site .b131-desc-lg {
    font-size: 1.25rem;
    max-width: 500px;
    margin-bottom: 40px;
    color: #444;
}

.b131-site .b131-desc-md {
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 1.6;
}

.b131-site .b131-tiny-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.b131-site .b131-outlined-text {
    font-family: var(--b131-font-head);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
}

/* Navigation */
.b131-site .b131-nav {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    mix-blend-mode: difference;
    color: #fff;
}

.b131-site .b131-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b131-site .b131-logo-icon {
    width: 48px;
    height: 48px;
}

.b131-site .b131-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 32px;
}

/* Sections */
.b131-site .b131-section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Hero Section */
.b131-site .b131-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.b131-site .b131-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.b131-site .b131-hero-text {
    text-align: center;
    z-index: 2;
}

.b131-site .b131-hero-visual {
    width: 100%;
    max-width: 800px;
    margin-top: -60px;
    z-index: 1;
}

.b131-site .b131-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.b131-site .b131-line {
    width: 1px;
    height: 60px;
    background: var(--b131-black);
}

/* Split Layouts */
.b131-site .b131-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b131-site .b131-layout-reverse {
    direction: rtl;
}

.b131-site .b131-layout-reverse>* {
    direction: ltr;
}

.b131-site .b131-swoosh-sm {
    width: 24px;
    height: 24px;
}

.b131-site .b131-portrait-img {
    height: 600px;
    background: #ccc;
    position: relative;
}

.b131-site .b131-img-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bars */
.b131-site .b131-progress-container {
    width: 100%;
    margin-top: 40px;
}

.b131-site .b131-progress-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.b131-site .b131-bar-bg {
    width: 100%;
    height: 4px;
    background: #eee;
    position: relative;
}

.b131-site .b131-bar-fill {
    height: 100%;
    background: var(--b131-black);
    position: absolute;
    left: 0;
    top: 0;
}

/* Full Width Graphic Section */
.b131-site .b131-full-graphic {
    position: relative;
    text-align: center;
    padding: 100px 0;
}

.b131-site .b131-graphic-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* Sneaker Grid */
.b131-site .b131-sneaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b131-site .b131-sneaker-item {
    background: var(--b131-white);
    padding: 20px;
    transition: transform 0.3s;
}

.b131-site .b131-sneaker-item:hover {
    transform: translateY(-10px);
}

.b131-site .b131-shoe-box {
    width: 100%;
    height: 250px;
    background: #ddd;
    margin-bottom: 20px;
}

.b131-site .b131-shoe-red {
    background: #E74C3C;
}

.b131-site .b131-shoe-black {
    background: #333;
}

.b131-site .b131-shoe-white {
    background: #fff;
    border: 1px solid #eee;
}

.b131-site .b131-item-info h4 {
    font-family: var(--b131-font-head);
    font-size: 1.5rem;
    margin: 0 0 5px 0;
}

.b131-site .b131-item-info span {
    font-weight: 600;
    color: var(--b131-text-grey);
}

/* App Section */
.b131-site .b131-btn-black {
    display: inline-block;
    background: var(--b131-black);
    color: var(--b131-white);
    padding: 16px 32px;
    font-family: var(--b131-font-head);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.b131-site .b131-btn-black:hover {
    background: #333;
}

.b131-site .b131-phone-mockup {
    width: 300px;
    height: 600px;
    border: 8px solid #000;
    border-radius: 30px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
}

.b131-site .b131-screen {
    background: #f5f5f5;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.b131-site .b131-screen-header {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.b131-site .b131-screen-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.b131-site .b131-screen-card {
    background: #fff;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Legend Section */
.b131-site .b131-legend-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b131-site .b131-mj-large {
    height: 600px;
    background: #222;
}

/* Spotlight Section */
.b131-site .b131-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.b131-site .b131-color-list {
    display: flex;
    gap: 20px;
    font-family: var(--b131-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--b131-text-grey);
}

.b131-site .b131-shoe-hero {
    width: 100%;
    height: 500px;
    background: #3498DB;
}

/* Footer */
.b131-site .b131-footer {
    background: var(--b131-dark-grey);
    color: #fff;
    padding: 60px 0;
}

.b131-site .b131-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b131-site .b131-footer-links {
    display: flex;
    gap: 40px;
}

.b131-site .b131-footer-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.b131-site .b131-copy {
    color: #666;
    font-size: 0.8rem;
}

/* Animations */
.b131-site .b131-animate-up {
    animation: b131SlideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes b131SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {

    .b131-site .b131-split-layout,
    .b131-site .b131-legend-layout,
    .b131-site .b131-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b131-site .b131-hero-text {
        padding-top: 60px;
    }

    .b131-site .b131-sneaker-grid {
        grid-template-columns: 1fr;
    }

    .b131-site .b131-layout-reverse {
        direction: ltr;
    }

    .b131-site .b131-footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .b131-site .b131-outlined-text {
        font-size: 4rem;
    }
}

/* ========================================
   b132 (b132)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.b132-site {
    --b132-dark: #1A1A1A;
    --b132-darker: #0F0F0F;
    --b132-light: #FFFFFF;
    --b132-grey: #666666;
    --b132-border: #2A2A2A;
    --b132-accent: #4A4A4A;
    --b132-glow: rgba(255, 255, 255, 0.1);
    --b132-font: 'Inter', -apple-system, sans-serif;
    --b132-radius: 24px;
    --b132-gap: 24px;

    font-family: var(--b132-font);
    color: var(--b132-light);
    background-color: var(--b132-darker);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b132-site .b132-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b132-gap);
}

.b132-site .b132-section {
    padding: 60px 0;
}

/* Hero Section */
.b132-site .b132-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--b132-dark) 0%, var(--b132-darker) 70%);
    position: relative;
}

.b132-site .b132-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.b132-site .b132-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin: 0 0 16px 0;
    letter-spacing: -2px;
}

.b132-site .b132-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--b132-grey);
    margin-bottom: 80px;
}

.b132-site .b132-hero-visual {
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.b132-site .b132-planet {
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.1);
}

.b132-site .b132-planet::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--b132-light), transparent);
    border-radius: 50%;
}

.b132-site .b132-hero-timer {
    font-size: 0.875rem;
    color: var(--b132-grey);
}

/* Stats Grid */
.b132-site .b132-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.b132-site .b132-stat-card,
.b132-site .b132-visual-card,
.b132-site .b132-metrics-card {
    background: var(--b132-dark);
    border: 1px solid var(--b132-border);
    border-radius: var(--b132-radius);
    padding: 32px;
}

.b132-site .b132-stat-card {
    grid-column: span 1;
}

.b132-site .b132-visual-card {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b132-site .b132-metrics-card {
    grid-column: span 2;
}

.b132-site .b132-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.b132-site .b132-stat-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.b132-site .b132-stat-badge {
    background: var(--b132-light);
    color: var(--b132-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
}

.b132-site .b132-stat-desc {
    font-size: 0.875rem;
    color: var(--b132-grey);
    line-height: 1.6;
    margin-bottom: 16px;
}

.b132-site .b132-stat-note {
    font-size: 0.75rem;
    color: var(--b132-grey);
    line-height: 1.5;
    margin: 0;
}

.b132-site .b132-stones {
    display: flex;
    gap: 16px;
    align-items: center;
}

.b132-site .b132-stone {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--b132-accent) 0%, var(--b132-border) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.b132-site .b132-metrics-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.b132-site .b132-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.b132-site .b132-metric-item {
    border-left: 2px solid var(--b132-border);
    padding-left: 16px;
}

.b132-site .b132-metric-label {
    font-size: 0.75rem;
    color: var(--b132-grey);
    margin-bottom: 8px;
}

.b132-site .b132-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}

.b132-site .b132-metric-value span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--b132-grey);
}

/* Features Grid */
.b132-site .b132-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.b132-site .b132-feature-card,
.b132-site .b132-process-card,
.b132-site .b132-results-card {
    background: var(--b132-dark);
    border: 1px solid var(--b132-border);
    border-radius: var(--b132-radius);
    padding: 32px;
}

.b132-site .b132-feature-title,
.b132-site .b132-process-title,
.b132-site .b132-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 32px 0;
}

.b132-site .b132-phone-mockup {
    background: var(--b132-accent);
    border-radius: 32px;
    padding: 16px;
    margin-bottom: 24px;
}

.b132-site .b132-phone-screen {
    background: var(--b132-darker);
    border-radius: 24px;
    padding: 24px;
    min-height: 300px;
}

.b132-site .b132-chart-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--b132-border) 100%);
    border-radius: 12px;
}

.b132-site .b132-feature-stats {
    display: flex;
    gap: 32px;
}

.b132-site .b132-feature-stat {
    display: flex;
    flex-direction: column;
}

.b132-site .b132-stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.b132-site .b132-stat-label {
    font-size: 0.875rem;
    color: var(--b132-grey);
}

.b132-site .b132-process-list,
.b132-site .b132-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b132-site .b132-process-list li,
.b132-site .b132-results-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--b132-border);
    font-size: 0.875rem;
    color: var(--b132-grey);
}

.b132-site .b132-process-list li:last-child,
.b132-site .b132-results-list li:last-child {
    border-bottom: none;
}

/* Timeline Grid */
.b132-site .b132-timeline-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.b132-site .b132-timeline-card,
.b132-site .b132-roadmap-card {
    background: var(--b132-dark);
    border: 1px solid var(--b132-border);
    border-radius: var(--b132-radius);
    padding: 32px;
}

.b132-site .b132-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.b132-site .b132-timeline-badge {
    font-size: 0.75rem;
    color: var(--b132-grey);
}

.b132-site .b132-timeline-range {
    font-size: 0.75rem;
    color: var(--b132-grey);
}

.b132-site .b132-timeline-bar {
    height: 8px;
    background: var(--b132-border);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}

.b132-site .b132-timeline-progress {
    height: 100%;
    background: var(--b132-light);
}

.b132-site .b132-timeline-steps {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}

.b132-site .b132-step {
    padding: 8px 16px;
    background: var(--b132-accent);
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.b132-site .b132-roadmap-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 32px 0;
}

.b132-site .b132-roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.b132-site .b132-roadmap-year {
    border-left: 2px solid var(--b132-border);
    padding-left: 16px;
}

.b132-site .b132-year-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.b132-site .b132-year-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b132-light);
}

.b132-site .b132-year-value {
    font-size: 0.875rem;
    color: var(--b132-grey);
}

.b132-site .b132-year-goals {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b132-site .b132-year-goals li {
    font-size: 0.75rem;
    color: var(--b132-grey);
    margin-bottom: 8px;
}

.b132-site .b132-roadmap-footer {
    display: flex;
    gap: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--b132-border);
}

.b132-site .b132-roadmap-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Process Grid */
.b132-site .b132-process-grid {
    display: grid;
}

.b132-site .b132-process-flow {
    background: var(--b132-dark);
    border: 1px solid var(--b132-border);
    border-radius: var(--b132-radius);
    padding: 32px;
}

.b132-site .b132-flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.b132-site .b132-flow-badge {
    font-size: 0.75rem;
    color: var(--b132-grey);
}

.b132-site .b132-flow-time {
    font-size: 0.75rem;
    color: var(--b132-grey);
}

.b132-site .b132-flow-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
}

.b132-site .b132-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
}

.b132-site .b132-step-number {
    width: 48px;
    height: 48px;
    background: var(--b132-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.b132-site .b132-step-name {
    font-size: 0.75rem;
    text-align: center;
    color: var(--b132-grey);
}

.b132-site .b132-flow-arrow {
    font-size: 1.5rem;
    color: var(--b132-grey);
}

/* Footer */
.b132-site .b132-footer {
    background: var(--b132-dark);
    padding: 80px 0 32px;
    border-top: 1px solid var(--b132-border);
}

.b132-site .b132-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.b132-site .b132-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.b132-site .b132-footer-text {
    font-size: 0.875rem;
    color: var(--b132-grey);
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.b132-site .b132-footer-bottom {
    border-top: 1px solid var(--b132-border);
    padding-top: 32px;
    text-align: center;
}

.b132-site .b132-footer-bottom p {
    color: var(--b132-grey);
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
@keyframes b132-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b132-site .b132-animate {
    opacity: 0;
    animation: b132-fadeInUp 0.8s ease forwards;
}

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

    .b132-site .b132-metrics-card {
        grid-column: span 2;
    }

    .b132-site .b132-features-grid {
        grid-template-columns: 1fr;
    }

    .b132-site .b132-timeline-grid {
        grid-template-columns: 1fr;
    }

    .b132-site .b132-roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .b132-site .b132-section {
        padding: 40px 0;
    }

    .b132-site .b132-stats-grid {
        grid-template-columns: 1fr;
    }

    .b132-site .b132-roadmap-timeline {
        grid-template-columns: 1fr;
    }

    .b132-site .b132-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .b132-site .b132-flow-steps {
        flex-wrap: wrap;
    }
}


/* ========================================
   b133 (b133)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600&display=swap');

.b133-site {
    --b133-cream: #F2F0E4;
    --b133-blue: #6B8EAE;
    --b133-black: #1A1A1A;
    --b133-white: #FFFFFF;
    --b133-text: #333333;
    --b133-gap: 24px;
    --b133-font-display: 'Anton', sans-serif;
    --b133-font-body: 'Inter', sans-serif;

    font-family: var(--b133-font-body);
    background-color: var(--b133-cream);
    color: var(--b133-text);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

.b133-site * {
    box-sizing: border-box;
}

.b133-site a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.b133-site .b133-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b133-gap);
    position: relative;
}

/* Navigation */
.b133-site .b133-nav {
    background: var(--b133-cream);
    padding: 20px 0;
    border-bottom: 2px solid var(--b133-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.b133-site .b133-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b133-site .b133-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--b133-font-display);
    font-size: 1.5rem;
    color: var(--b133-blue);
}

.b133-site .b133-nav-links {
    display: flex;
    gap: 32px;
}

.b133-site .b133-nav-link {
    color: var(--b133-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.b133-site .b133-nav-link:hover {
    color: var(--b133-blue);
}


/* Top Strip */
.b133-site .b133-top-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 120px;
    border-bottom: 4px solid var(--b133-blue);
}

.b133-site .b133-strip-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(120%);
    border-right: 2px solid var(--b133-cream);
}

/* Header */
.b133-site .b133-header {
    padding: 20px 0 60px;
}

.b133-site .b133-mega-title {
    font-family: var(--b133-font-display);
    font-size: clamp(4rem, 15vw, 11rem);
    color: var(--b133-blue);
    line-height: 0.8;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.b133-site .b133-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--b133-blue);
    padding-top: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.b133-site .b133-brand-mark {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--b133-blue);
    font-weight: 600;
}

.b133-site .b133-store-info span {
    display: block;
    color: var(--b133-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.7rem;
}

.b133-site .b133-vinyl-text {
    font-family: var(--b133-font-display);
    font-size: 2rem;
    color: var(--b133-blue);
    line-height: 1;
    margin-left: auto;
}

/* Scatter Section */
.b133-site .b133-scatter-container {
    height: 600px;
    position: relative;
}

.b133-site .b133-scatter-img {
    position: absolute;
    transition: transform 0.3s ease;
}

.b133-site .b133-scatter-img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.b133-site .b133-pos-1 {
    top: 50px;
    left: 0;
    transform: rotate(-5deg);
}

.b133-site .b133-pos-2 {
    top: 150px;
    left: 40%;
    transform: rotate(5deg);
}

.b133-site .b133-pos-3 {
    bottom: 50px;
    right: 5%;
    transform: rotate(-2deg);
}

.b133-site .b133-img-frame {
    padding: 10px;
    background: var(--b133-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.b133-site .b133-img-frame img {
    display: block;
    max-width: 300px;
    height: auto;
}

.b133-site .b133-img-frame-sm {
    padding: 8px;
    background: var(--b133-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.b133-site .b133-img-frame-sm img {
    display: block;
    max-width: 150px;
    height: auto;
}

.b133-site .b133-sticker {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFD700;
    color: #000;
    font-family: var(--b133-font-display);
    padding: 5px 10px;
    transform: rotate(15deg);
    font-size: 1.2rem;
}

/* Blue Section */
.b133-site .b133-blue-section {
    background-color: var(--b133-blue);
    color: var(--b133-white);
    padding: 100px 0;
}

.b133-site .b133-quote-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.b133-site .b133-label-white {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.b133-site .b133-founder-name {
    font-family: var(--b133-font-display);
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1px;
}

.b133-site .b133-role {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.b133-site .b133-big-quote {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 40px;
}

.b133-site .b133-link-white {
    color: var(--b133-white);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

/* Product Section */
.b133-site .b133-section {
    padding: 100px 0;
}

.b133-site .b133-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.b133-site .b133-section-title {
    font-family: var(--b133-font-display);
    font-size: 2.5rem;
    color: var(--b133-blue);
}

.b133-site .b133-btn-blue {
    background: var(--b133-blue);
    color: var(--b133-white);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.b133-site .b133-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.b133-site .b133-product-card {
    background: var(--b133-white);
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.b133-site .b133-product-card:hover {
    transform: translateY(-5px);
}

.b133-site .b133-album-cover {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 16px;
}

.b133-site .b133-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b133-site .b133-product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.b133-site .b133-price {
    font-family: var(--b133-font-display);
    font-size: 1.5rem;
    color: var(--b133-text);
}

.b133-site .b133-album-details {
    text-align: right;
}

.b133-site .b133-artist {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.b133-site .b133-album-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.b133-site .b133-bottom-banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.b133-site .b133-bottom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.b133-site .b133-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--b133-font-display);
    font-size: 4rem;
    color: var(--b133-white);
    background: rgba(107, 142, 174, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.b133-site .b133-footer {
    background: var(--b133-black);
    color: var(--b133-white);
    padding: 80px 0 32px;
}

.b133-site .b133-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.b133-site .b133-footer-title {
    font-family: var(--b133-font-display);
    font-size: 1.25rem;
    margin: 0 0 20px 0;
    color: var(--b133-white);
}

.b133-site .b133-footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 12px 0;
}

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

.b133-site .b133-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
.b133-site .b133-animate-up {
    animation: b133SlideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.b133-site .b133-animate-fade {
    animation: b133FadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes b133SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes b133FadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .b133-site .b133-nav-links {
        display: none;
    }

    .b133-site .b133-top-strip {
        display: none;
    }

    .b133-site .b133-mega-title {
        font-size: 5rem;
    }

    .b133-site .b133-sub-header {
        flex-direction: column;
        gap: 12px;
    }

    .b133-site .b133-vinyl-text {
        margin-left: 0;
    }

    .b133-site .b133-scatter-container {
        height: 400px;
    }

    .b133-site .b133-pos-1 {
        left: 5%;
        width: 200px;
    }

    .b133-site .b133-pos-2 {
        left: 40%;
        top: 20px;
        width: 150px;
    }

    .b133-site .b133-pos-3 {
        right: 5%;
        bottom: 20px;
        width: 200px;
    }

    .b133-site .b133-quote-grid {
        grid-template-columns: 1fr;
    }

    .b133-site .b133-big-quote {
        font-size: 1.5rem;
    }

    .b133-site .b133-banner-overlay {
        font-size: 2rem;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .b133-site .b133-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   b134 (b134)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.b134-site {
    --b134-primary: #FF6B35;
    --b134-secondary: #FF4500;
    --b134-dark: #000000;
    --b134-card-bg: #1A1A1A;
    --b134-text: #FFFFFF;
    --b134-text-muted: #A0A0A0;
    --b134-gradient: linear-gradient(135deg, #FFA07A 0%, #FF8C69 50%, #FF6B35 100%);
    --b134-radius: 16px;
    --b134-gap: 32px;
    --b134-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --b134-font: 'Inter', sans-serif;

    font-family: var(--b134-font);
    color: var(--b134-text);
    background-color: var(--b134-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b134-site .b134-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--b134-gap);
}

.b134-site .b134-section {
    padding: 100px 0;
}

/* Navigation */
.b134-site .b134-nav {
    background: var(--b134-dark);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.b134-site .b134-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b134-site .b134-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--b134-primary);
}

.b134-site .b134-nav-links {
    display: flex;
    gap: 32px;
}

.b134-site .b134-nav-link {
    color: var(--b134-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.b134-site .b134-nav-link:hover {
    color: var(--b134-primary);
}

/* Hero Section */
.b134-site .b134-hero {
    padding: 120px 0;
    position: relative;
}

.b134-site .b134-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.b134-site .b134-hero-label {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--b134-primary);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.b134-site .b134-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.b134-site .b134-hero-desc {
    font-size: 1.125rem;
    color: var(--b134-text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}

.b134-site .b134-hero-visual {
    margin-top: 60px;
}

.b134-site .b134-hero-gradient {
    height: 300px;
    background: var(--b134-gradient);
    border-radius: var(--b134-radius);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* Services Section */
.b134-site .b134-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b134-site .b134-service-card {
    background: var(--b134-card-bg);
    padding: 40px;
    border-radius: var(--b134-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.b134-site .b134-service-card:hover {
    border-color: var(--b134-primary);
    transform: translateY(-8px);
    box-shadow: var(--b134-shadow);
}

.b134-site .b134-service-icon {
    color: var(--b134-primary);
    margin-bottom: 24px;
}

.b134-site .b134-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b134-site .b134-service-desc {
    font-size: 0.95rem;
    color: var(--b134-text-muted);
    line-height: 1.7;
}

/* Section Dark */
.b134-site .b134-section-dark {
    background: var(--b134-card-bg);
}

.b134-site .b134-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

/* Capabilities Section */
.b134-site .b134-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.b134-site .b134-capability-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--b134-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.b134-site .b134-capability-card:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--b134-primary);
    transform: translateY(-4px);
}

.b134-site .b134-capability-number {
    width: 60px;
    height: 60px;
    background: var(--b134-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.b134-site .b134-capability-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.b134-site .b134-capability-text {
    font-size: 0.95rem;
    color: var(--b134-text-muted);
    line-height: 1.7;
}

/* Stats Section */
.b134-site .b134-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.b134-site .b134-stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--b134-card-bg);
    border-radius: var(--b134-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.b134-site .b134-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--b134-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.b134-site .b134-stat-label {
    font-size: 0.95rem;
    color: var(--b134-text-muted);
    line-height: 1.4;
}

.b134-site .b134-impact-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.b134-site .b134-impact-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--b134-text-muted);
}

/* Footer */
.b134-site .b134-footer {
    background: var(--b134-card-bg);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.b134-site .b134-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.b134-site .b134-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--b134-primary);
}

.b134-site .b134-footer-text {
    font-size: 0.875rem;
    color: var(--b134-text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.b134-site .b134-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
}

.b134-site .b134-footer-bottom p {
    color: var(--b134-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
@keyframes b134FadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b134-site .b134-animate {
    opacity: 0;
    animation: b134FadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .b134-site .b134-services-grid {
        grid-template-columns: 1fr;
    }

    .b134-site .b134-capabilities-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .b134-site .b134-nav-links {
        display: none;
    }

    .b134-site .b134-section {
        padding: 60px 0;
    }

    .b134-site .b134-hero {
        padding: 80px 0;
    }

    .b134-site .b134-stats-grid {
        grid-template-columns: 1fr;
    }

    .b134-site .b134-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   b135 (b135)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

.b135-site {
    --b135-primary: #FF3B3B;
    --b135-dark: #000000;
    --b135-white: #FFFFFF;
    --b135-gray: #F5F5F5;
    --b135-light-gray: #E8E8E8;
    --b135-text: #1A1A1A;
    --b135-muted: #666666;
    --b135-radius: 16px;
    --b135-gap: 24px;
    --b135-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --b135-font: 'Montserrat', sans-serif;

    font-family: var(--b135-font);
    color: var(--b135-text);
    background-color: var(--b135-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: block;
}

.b135-site .b135-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--b135-gap);
}

.b135-site .b135-section {
    padding: 40px 0;
}

/* Hero */
.b135-site .b135-hero {
    padding: 60px 0 40px;
    background: var(--b135-light-gray);
}

.b135-site .b135-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--b135-primary);
    text-transform: uppercase;
    text-align: center;
}

/* Main Product Card */
.b135-site .b135-main-card {
    background: var(--b135-white);
    border-radius: var(--b135-radius);
    overflow: hidden;
    box-shadow: var(--b135-shadow);
}

.b135-site .b135-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 450px;
}

.b135-site .b135-main-left {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b135-site .b135-main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 16px;
}

.b135-site .b135-title-red {
    color: var(--b135-primary);
}

.b135-site .b135-title-black {
    color: var(--b135-dark);
}

.b135-site .b135-main-subtitle {
    font-size: 1.125rem;
    color: var(--b135-primary);
    font-weight: 500;
    margin-bottom: 32px;
}

.b135-site .b135-elements {
    display: flex;
    gap: 12px;
}

.b135-site .b135-element {
    padding: 8px 16px;
    border: 2px solid var(--b135-text);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.b135-site .b135-main-visual {
    background: linear-gradient(135deg, var(--b135-white) 0%, var(--b135-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.b135-site .b135-bottle-container {
    width: 200px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b135-site .b135-bottle {
    width: 140px;
    height: 280px;
    background: linear-gradient(180deg, var(--b135-primary) 0%, #CC0000 100%);
    border-radius: 20px 20px 40px 40px;
    position: relative;
}

.b135-site .b135-bottle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: var(--b135-primary);
    border-radius: 8px 8px 0 0;
}

.b135-site .b135-main-right {
    background: var(--b135-dark);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}

.b135-site .b135-stat-group {
    text-align: center;
}

.b135-site .b135-stat-bar {
    height: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    overflow: hidden;
}

.b135-site .b135-bar-full {
    background: var(--b135-primary);
}

.b135-site .b135-bar-full::before {
    content: '';
    display: flex;
    width: 100%;
    background: repeating-linear-gradient(90deg,
            var(--b135-primary),
            var(--b135-primary) 8px,
            var(--b135-white) 8px,
            var(--b135-white) 10px);
}

.b135-site .b135-bar-empty {
    background: var(--b135-white);
}

.b135-site .b135-bar-empty::before {
    content: '';
    display: flex;
    width: 100%;
    background: repeating-linear-gradient(90deg,
            var(--b135-white),
            var(--b135-white) 8px,
            var(--b135-dark) 8px,
            var(--b135-dark) 10px);
}

.b135-site .b135-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--b135-white);
    margin-bottom: 8px;
}

.b135-site .b135-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Grid */
.b135-site .b135-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.b135-site .b135-product-card {
    background: var(--b135-white);
    border-radius: var(--b135-radius);
    overflow: hidden;
    box-shadow: var(--b135-shadow);
}

/* Card Styles */
.b135-site .b135-card-white {
    background: var(--b135-white);
}

.b135-site .b135-card-visual {
    height: 200px;
    background: linear-gradient(135deg, var(--b135-primary) 0%, #FF6B6B 100%);
}

.b135-site .b135-card-content {
    padding: 32px;
}

.b135-site .b135-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--b135-primary);
    margin-bottom: 24px;
}

.b135-site .b135-types-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b135-site .b135-type-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.b135-site .b135-type-number {
    font-weight: 700;
    color: var(--b135-text);
    flex-shrink: 0;
}

.b135-site .b135-type-text {
    font-size: 0.95rem;
    color: var(--b135-muted);
    line-height: 1.5;
}

.b135-site .b135-type-highlight {
    background: var(--b135-primary);
    padding: 12px;
    border-radius: 8px;
}

.b135-site .b135-type-highlight .b135-type-number,
.b135-site .b135-type-highlight .b135-type-text {
    color: var(--b135-white);
}

/* Split Card */
.b135-site .b135-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.b135-site .b135-card-left {
    padding: 32px;
}

.b135-site .b135-vitamin-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--b135-primary);
    margin-bottom: 16px;
}

.b135-site .b135-vitamin-subtitle {
    font-size: 0.95rem;
    color: var(--b135-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.b135-site .b135-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b135-site .b135-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.b135-site .b135-benefit-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--b135-primary);
    flex-shrink: 0;
}

.b135-site .b135-benefit-text {
    font-size: 0.875rem;
    color: var(--b135-muted);
    line-height: 1.5;
}

.b135-site .b135-card-right {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.b135-site .b135-bg-red {
    background: var(--b135-primary);
}

.b135-site .b135-product-visual {
    width: 120px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 16px;
}

.b135-site .b135-composition-label {
    color: var(--b135-white);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Vitamin D Card */
.b135-site .b135-card-header {
    padding: 32px 32px 0;
}

.b135-site .b135-card-body {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.b135-site .b135-composition-box {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.b135-site .b135-composition-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.b135-site .b135-composition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b135-site .b135-composition-list li {
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--b135-muted);
    position: relative;
    padding-left: 16px;
}

.b135-site .b135-composition-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--b135-primary);
    border-radius: 50%;
}

.b135-site .b135-vitamin-visual {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 200px;
    background: linear-gradient(135deg, #444 0%, #222 100%);
    border-radius: 12px;
}

.b135-site .b135-benefits-grid {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b135-site .b135-benefit-stat {
    display: flex;
    gap: 12px;
    align-items: center;
}

.b135-site .b135-stat-percent {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--b135-primary);
    flex-shrink: 0;
}

.b135-site .b135-stat-desc {
    font-size: 0.8rem;
    color: var(--b135-muted);
    line-height: 1.4;
}

/* Omega Card */
.b135-site .b135-card-omega {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.b135-site .b135-omega-left {
    padding: 32px;
    background: var(--b135-gray);
}

.b135-site .b135-omega-visual {
    height: 180px;
    background: linear-gradient(135deg, #FFF 0%, #EEE 100%);
    border-radius: 12px;
    margin: 24px 0;
}

.b135-site .b135-omega-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b135-site .b135-omega-benefit {
    display: flex;
    gap: 12px;
    align-items: center;
}

.b135-site .b135-omega-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--b135-primary);
    flex-shrink: 0;
}

.b135-site .b135-omega-text {
    font-size: 0.875rem;
    color: var(--b135-muted);
}

.b135-site .b135-omega-right {
    padding: 32px;
    background: var(--b135-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b135-site .b135-omega-bottle {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    border-radius: 12px;
}

.b135-site .b135-omega-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.b135-site .b135-omega-detail,
.b135-site .b135-omega-dosage,
.b135-site .b135-omega-ratio {
    font-size: 0.75rem;
    color: var(--b135-muted);
    line-height: 1.4;
}

/* Magnesium Card */
.b135-site .b135-magnesium-visual {
    height: 200px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
    position: relative;
}

.b135-site .b135-magnesium-content {
    padding: 32px;
}

.b135-site .b135-magnesium-benefits {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.b135-site .b135-mag-benefit {
    flex: 1;
}

.b135-site .b135-mag-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--b135-primary);
    display: block;
    margin-bottom: 8px;
}

.b135-site .b135-mag-text {
    font-size: 0.8rem;
    color: var(--b135-muted);
    line-height: 1.4;
}

.b135-site .b135-magnesium-note {
    font-size: 0.875rem;
    color: var(--b135-text);
    font-weight: 600;
}

.b135-site .b135-capsule-visual {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--b135-primary) 0%, #FF6B6B 100%);
    border-radius: 60px;
    margin-top: 24px;
}

/* L-Citrulline Card */
.b135-site .b135-card-citrulline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
}

.b135-site .b135-citrulline-left {
    padding: 32px;
    background: var(--b135-gray);
    display: flex;
    align-items: center;
}

.b135-site .b135-health-title {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b135-site .b135-health-text {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: 8px;
}

.b135-site .b135-health-text:nth-child(2) {
    color: var(--b135-primary);
}

.b135-site .b135-citrulline-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
}

.b135-site .b135-chain-visual {
    width: 120px;
    height: 400px;
    background: linear-gradient(180deg, #333 0%, #111 100%);
    border-radius: 60px;
}

.b135-site .b135-citrulline-right {
    padding: 32px;
}

.b135-site .b135-citrulline-benefits {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b135-site .b135-cit-benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.b135-site .b135-cit-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--b135-primary);
    flex-shrink: 0;
}

.b135-site .b135-cit-text {
    font-size: 0.875rem;
    color: var(--b135-muted);
    line-height: 1.5;
}

/* Footer */
.b135-site .b135-footer {
    padding: 60px 0;
    background: var(--b135-white);
    border-top: 1px solid var(--b135-light-gray);
}

.b135-site .b135-footer-content {
    text-align: center;
}

.b135-site .b135-footer-text {
    font-size: 1rem;
    color: var(--b135-text);
    font-weight: 600;
    margin-bottom: 12px;
}

.b135-site .b135-footer-note {
    font-size: 0.875rem;
    color: var(--b135-muted);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .b135-site .b135-main-content {
        grid-template-columns: 1fr;
    }

    .b135-site .b135-products-grid {
        grid-template-columns: 1fr;
    }

    .b135-site .b135-card-split,
    .b135-site .b135-card-omega,
    .b135-site .b135-card-citrulline {
        grid-template-columns: 1fr;
    }

    .b135-site .b135-card-body {
        grid-template-columns: 1fr;
    }

    .b135-site .b135-composition-box {
        grid-column: 1;
        grid-row: auto;
    }

    .b135-site .b135-vitamin-visual,
    .b135-site .b135-benefits-grid {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .b135-site .b135-hero-title {
        font-size: 1.75rem;
    }

    .b135-site .b135-main-title {
        font-size: 3rem;
    }

    .b135-site .b135-magnesium-benefits {
        flex-direction: column;
    }
}

/* ========================================
   b136 (b136)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

.b136-site {
    --b136-bg: #F2F2F2;
    --b136-black: #111111;
    --b136-white: #FFFFFF;
    --b136-orange: #FF4500;
    --b136-border: #111111;
    --b136-radius: 24px;
    --b136-gap: 24px;
    --b136-font: 'Manrope', sans-serif;

    font-family: var(--b136-font);
    background-color: var(--b136-bg);
    color: var(--b136-black);
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
    /* Paper Texture Overlay */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

.b136-site * {
    box-sizing: border-box;
}

.b136-site a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.b136-site .b136-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--b136-gap);
}

/* Navigation */
.b136-site .b136-nav {
    padding: 24px 0;
}

.b136-site .b136-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b136-site .b136-brand {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b136-site .b136-logo-dot {
    width: 24px;
    height: 12px;
    background: var(--b136-black);
    border-radius: 20px;
    border: 2px solid var(--b136-black);
    background-image: radial-gradient(circle, #fff 2px, transparent 2px);
    background-size: 6px 6px;
}

.b136-site .b136-nav-lang {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Shared Card Styles */
.b136-site .b136-section {
    padding-bottom: 40px;
}

.b136-site .b136-card {
    background: var(--b136-white);
    border: 2px solid var(--b136-border);
    border-radius: var(--b136-radius);
    padding: 40px;
    position: relative;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.b136-site .b136-section-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Hero Section */
.b136-site .b136-hero-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 500px;
    align-items: center;
}

.b136-site .b136-sticker-orange {
    display: inline-block;
    background: var(--b136-orange);
    color: var(--b136-black);
    padding: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    transform: rotate(-10deg);
    margin-bottom: 20px;
}

.b136-site .b136-title-xl {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.b136-site .b136-btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--b136-black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
}

.b136-site .b136-btn-outline:hover {
    background: var(--b136-black);
    color: var(--b136-white);
}

.b136-site .b136-hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b136-site .b136-cloud {
    position: absolute;
    border: 2px solid var(--b136-black);
    background: var(--b136-white);
    border-radius: 50px;
    z-index: 0;
}

.b136-site .b136-cloud-1 {
    width: 80px;
    height: 40px;
    bottom: 50px;
    left: 20px;
}

.b136-site .b136-cloud-2 {
    width: 60px;
    height: 30px;
    top: 50px;
    right: 20px;
}

.b136-site .b136-illustration-cat {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 300px;
}

/* Stats Section */
.b136-site .b136-label {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
}

.b136-site .b136-desc-lg {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 800px;
}

.b136-site .b136-highlight {
    background: var(--b136-orange);
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
}

.b136-site .b136-stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.b136-site .b136-stat-box {
    border: 2px solid var(--b136-black);
    padding: 16px 32px;
    border-radius: 16px;
    text-align: center;
    background: var(--b136-white);
    box-shadow: 4px 4px 0 var(--b136-black);
}

.b136-site .b136-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.b136-site .b136-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pricing Section */
.b136-site .b136-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.b136-site .b136-price-card {
    padding: 32px;
    border-radius: var(--b136-radius);
    border: 2px solid var(--b136-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.b136-site .b136-card-black {
    background: var(--b136-black);
    color: var(--b136-white);
}

.b136-site .b136-card-white {
    background: var(--b136-white);
}

.b136-site .b136-price-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.b136-site .b136-price-unit {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.b136-site .b136-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.b136-site .b136-price-list li {
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
}

.b136-site .b136-price-list li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.b136-site .b136-price-tag {
    padding: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid currentColor;
    border-radius: 50px;
    text-transform: uppercase;
}

.b136-site .b136-tag-orange {
    background: var(--b136-orange);
    color: var(--b136-white);
    border-color: var(--b136-orange);
}

/* Target Audience */
.b136-site .b136-section-heading {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.b136-site .b136-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b136-site .b136-audience-item {
    text-align: left;
}

.b136-site .b136-icon-box {
    margin-bottom: 20px;
}

.b136-site .b136-role-tag {
    display: inline-block;
    padding: 6px 12px;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 12px;
    transform: rotate(-2deg);
}

.b136-site .b136-bg-orange {
    background: var(--b136-orange);
}

.b136-site .b136-bg-black {
    background: var(--b136-black);
    transform: rotate(2deg);
}

.b136-site .b136-role-desc {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Benefits Section */
.b136-site .b136-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.b136-site .b136-benefit-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--b136-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.b136-site .b136-dot-orange {
    background: var(--b136-orange);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Market Data */
.b136-site .b136-market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.b136-site .b136-market-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.b136-site .b136-fire-icon {
    font-size: 1.5rem;
}

.b136-site .b136-market-item strong {
    font-size: 1.5rem;
    display: block;
}

.b136-site .b136-map-visual {
    background: var(--b136-black);
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b136-site .b136-map-visual svg path {
    fill: #fff;
}

/* Footer Card */
.b136-site .b136-footer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--b136-white);
}

.b136-site .b136-title-lg {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.b136-site .b136-socials {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.b136-site .b136-social-circle {
    width: 40px;
    height: 40px;
    background: var(--b136-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Animation */
.b136-site .b136-animate-up {
    animation: b136SlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes b136SlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .b136-site .b136-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 0;
    }

    .b136-site .b136-hero-visual {
        margin-top: 40px;
    }

    .b136-site .b136-pricing-grid {
        grid-template-columns: 1fr;
    }

    .b136-site .b136-audience-grid {
        grid-template-columns: 1fr;
    }

    .b136-site .b136-market-grid {
        grid-template-columns: 1fr;
    }

    .b136-site .b136-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .b136-site .b136-socials {
        justify-content: center;
    }
}