/* Pro100Osago Business Section Styles */
:root {
    --ios-blue: #0071E3;
    --ios-gray-bg: #F5F5F7;
    --ios-text: #1d1d1f;
    --ios-text-secondary: #86868b;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 10px 30px rgba(0,0,0,0.12);
}

.biz-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 60px; /* Header spacing */
}

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

.biz-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.biz-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.biz-hero__title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 200; /* Thin */
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.biz-hero__subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.biz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 99px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    cursor: pointer;
}

.biz-btn--primary {
    background: #fff;
    color: #000;
    margin-right: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.biz-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.biz-btn--outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.biz-btn--outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}

/* Sections */
.biz-section {
    padding: 100px 0;
}

.biz-section--light {
    background: #fff;
}

.biz-section--gray {
    background: var(--ios-gray-bg);
}

.biz-section__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.biz-h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--ios-text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.biz-desc {
    font-size: 20px;
    color: var(--ios-text-secondary);
    line-height: 1.5;
}

/* Cards Grid */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.biz-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.biz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.biz-card__top-border {
    height: 12px;
    width: 100%;
}

.biz-card__content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.biz-card__icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    background: var(--ios-blue); /* fallback */
}

.biz-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ios-text);
}

.biz-card__text {
    font-size: 16px;
    color: var(--ios-text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.biz-card__link {
    margin-top: auto;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Slider (Simple CSS Snap) */
.biz-slider-container {
    overflow-x: auto;
    padding: 20px; /* room for shadow */
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.biz-slider-container::-webkit-scrollbar {
    display: none;
}

.biz-slide {
    flex: 0 0 300px;
    scroll-snap-align: center;
}

/* Calculators */
.calc-card {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

/* Accordion */
.biz-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.biz-details {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.biz-summary {
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.biz-summary::-webkit-details-marker {
    display: none;
}

.biz-summary::after {
    content: '+';
    font-size: 24px;
    color: var(--ios-text-secondary);
    transition: transform 0.2s;
}

.biz-details[open] .biz-summary::after {
    transform: rotate(45deg);
}

.biz-details__body {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.biz-list-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ios-text);
}

.biz-check {
    color: #34C759;
}

/* Responsive */
@media (max-width: 768px) {
    .biz-hero__title { font-size: 40px; }
    .biz-grid { grid-template-columns: 1fr; }
    .biz-btn { width: 100%; margin-right: 0; margin-bottom: 10px; }
}
