/**
 * OkutSat marketing pages — layout, grids, media placeholders.
 * Tokens from okutsat-marketing.css via html[data-mkt-theme].
 */

.page-wrapper:has(.mkt-page),
.page-wrapper:has(.pm-page) {
    --site-radius: var(--mkt-radius, 14px);
    --site-radius-lg: var(--mkt-radius-lg, 22px);
    --site-shadow: var(--mkt-shadow, 0 6px 20px rgba(0, 0, 0, 0.08));
    --success: #3d9b7a;
}

.page-wrapper:has(.mkt-page) .logo-text,
.page-wrapper:has(.mkt-page) .site-logo-text,
.page-wrapper:has(.pm-page) .logo-text,
.page-wrapper:has(.pm-page) .site-logo-text {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--primary);
    font-family: 'Source Serif 4', Georgia, serif;
}

.page-wrapper:has(.mkt-page) .btn-primary,
.page-wrapper:has(.pm-page) .btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.22);
}

.page-wrapper:has(.mkt-page) .btn-primary:hover,
.page-wrapper:has(.pm-page) .btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.28);
}

.page-wrapper:has(.mkt-page) .main-nav a::after,
.page-wrapper:has(.pm-page) .main-nav a::after {
    background: var(--primary);
}

.page-wrapper:has(.mkt-page) .footer-newsletter,
.page-wrapper:has(.pm-page) .footer-newsletter {
    background: var(--primary);
}

.page-wrapper:has(.mkt-page) .mkt-badge,
.page-wrapper:has(.pm-page) .mkt-badge {
    background: rgba(26, 95, 74, 0.1);
    color: var(--primary);
}

.mkt-page .page-content > main.mkt-page,
.mkt-page main.mkt-page {
    display: block;
}

.mkt-container {
    max-width: var(--mkt-container, 1180px);
    margin: 0 auto;
    padding: 0 var(--mkt-gutter, 1.25rem);
}

.mkt-narrow {
    max-width: 720px;
}

.mkt-center {
    text-align: center;
}

.mkt-mt {
    margin-top: 1.5rem;
}

.mkt-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.mkt-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.mkt-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.mkt-link:hover {
    text-decoration: underline;
}

.mkt-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(26, 95, 74, 0.1);
    color: var(--primary);
    margin-bottom: 0.65rem;
}
.mkt-badge--horeca {
    background: rgba(196, 92, 38, 0.12);
    color: #a34a1a;
}

.mkt-checklist {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
}
.mkt-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.45rem;
    color: var(--text-light);
}
.mkt-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Hero — asymmetric split default */
.mkt-hero {
    background: var(--mkt-bg, var(--bg-color));
    color: var(--mkt-text, var(--text));
    padding: var(--mkt-section-y-hero, clamp(5rem, 10vw, 8rem)) 0 var(--mkt-section-y, clamp(3.5rem, 6vw, 5.5rem));
    position: relative;
    overflow: hidden;
}
.mkt-hero--split {
    background: var(--mkt-bg, var(--bg-color));
    border-bottom: 1px solid var(--mkt-surface-border, var(--site-border));
}
.mkt-hero--split .mkt-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--mkt-hero-gap, clamp(2rem, 5vw, 4rem));
    align-items: center;
}
.mkt-hero--split .mkt-hero__copy {
    padding-left: clamp(0rem, 2vw, 1.5rem);
    border-left: 3px solid var(--mkt-accent, var(--accent-warm));
}
.mkt-hero--light {
    background: var(--mkt-bg-muted, var(--bg-secondary));
}
.mkt-hero--compact {
    padding: var(--mkt-section-y-tight, clamp(3.5rem, 6vw, 5rem)) 0 var(--mkt-section-y-tight, clamp(2.5rem, 4vw, 3.5rem));
}
.mkt-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.mkt-hero__inner:has(.mkt-hero__media) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.mkt-hero__title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--text);
}
.mkt-hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: var(--text-light);
    max-width: 36rem;
    margin-bottom: 1.5rem;
}
.mkt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.mkt-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--site-border, rgba(26, 31, 46, 0.08));
}
.mkt-hero__stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    animation: mkt-stat-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.mkt-hero__stat:nth-child(2) strong { animation-delay: 0.08s; }
.mkt-hero__stat:nth-child(3) strong { animation-delay: 0.16s; }
@keyframes mkt-stat-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.mkt-hero__stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Sections */
.mkt-section {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}
.mkt-section--tight {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}
.mkt-section--airy {
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.mkt-section--alt {
    background: var(--bg-secondary);
}
.mkt-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.mkt-section-head--left {
    text-align: left;
}
.mkt-section-head__title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600;
    margin-bottom: 0.65rem;
    letter-spacing: -0.015em;
}
.mkt-section-head__lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}
.mkt-section-head--left .mkt-section-head__lead {
    margin-left: 0;
}

/* Media slots */
.mkt-media-slot {
    margin: 0;
}
.mkt-media-slot__frame {
    aspect-ratio: var(--mkt-aspect, 16 / 9);
    border-radius: var(--site-radius-lg, 22px);
    overflow: hidden;
    border: 1px solid var(--site-border, rgba(15, 23, 42, 0.08));
    background: var(--bg-secondary);
    box-shadow: var(--site-shadow, 0 14px 40px rgba(15, 23, 42, 0.08));
    position: relative;
}
.mkt-media-slot__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mkt-media-slot__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--mkt-bg-muted, #e8eaed);
    color: var(--mkt-text-muted, var(--text-light));
    min-height: 180px;
}
.mkt-media-slot__placeholder--video {
    background: var(--mkt-surface-tint, #e2e4e8);
}
.mkt-media-slot__play {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--mkt-bg-elevated, rgba(232, 230, 225, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--mkt-primary, var(--primary));
    box-shadow: var(--mkt-shadow-sm, 0 4px 12px rgba(15, 23, 42, 0.1));
}
.mkt-media-slot__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: rgba(26, 95, 74, 0.08);
    color: var(--primary);
}
.mkt-media-slot__tag {
    font-size: 0.82rem;
    font-weight: 600;
}
.mkt-media-slot__caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.55rem;
    text-align: center;
}
.mkt-media-slot--wide .mkt-media-slot__frame {
    max-width: 960px;
    margin: 0 auto;
}
.mkt-media-slot--card .mkt-media-slot__frame {
    border-radius: var(--site-radius, 14px);
}

/* Feature rows — alternating 2-col, not identical 3-card grid */
.mkt-feature-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}
.mkt-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border-radius: var(--site-radius-lg, 22px);
    border: 1px solid var(--site-border, rgba(26, 31, 46, 0.08));
    background: var(--bg-color);
    box-shadow: var(--site-shadow, 0 14px 40px rgba(26, 31, 46, 0.06));
}
.mkt-feature-row:nth-child(even) {
    background: var(--bg-secondary);
}
.mkt-feature-row:nth-child(even) .mkt-feature-row__body {
    order: 2;
}
.mkt-feature-row:nth-child(even) .mkt-feature-row__aside {
    order: 1;
}
.mkt-feature-row__icon {
    display: block;
    margin-bottom: 0.65rem;
    line-height: 1;
}
.mkt-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: rgba(26, 95, 74, 0.1);
    color: var(--primary);
    flex-shrink: 0;
}
.mkt-icon-box--lg {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
}
.mkt-icon-box .mkt-icon-svg,
.mkt-media-slot__icon .mkt-icon-svg {
    width: 1.35rem;
    height: 1.35rem;
}
.mkt-icon-box--lg .mkt-icon-svg {
    width: 1.65rem;
    height: 1.65rem;
}
.mkt-feature-row__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1.25rem;
    border-radius: var(--site-radius, 14px);
    background: var(--mkt-bg-muted, #e8eaed);
    border: 1px dashed var(--mkt-surface-border, var(--site-border));
}
.mkt-feature-row__aside--icon {
    background: var(--bg-secondary);
    border-style: solid;
    border-color: var(--site-border, rgba(26, 31, 46, 0.08));
}
.mkt-feature-row__aside .mkt-media-slot {
    width: 100%;
    margin: 0;
}
.mkt-feature-row__aside .mkt-media-slot__frame {
    box-shadow: none;
}
.mkt-feature-row__body h2,
.mkt-feature-row__body h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 600;
    margin-bottom: 0.45rem;
    letter-spacing: -0.015em;
}
.mkt-feature-row__body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

/* Module grids (inner pages) */
.mkt-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.mkt-module-card {
    background: var(--bg-color);
    border: 1px solid var(--site-border, rgba(15, 23, 42, 0.08));
    border-radius: var(--site-radius-lg, 22px);
    padding: 1.5rem;
    box-shadow: var(--site-shadow);
    transition: transform 0.2s ease;
}
.mkt-module-card:hover {
    transform: translateY(-3px);
}
.mkt-module-card__icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}
.mkt-module-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.mkt-module-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.mkt-module-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.mkt-module-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    scroll-margin-top: 90px;
}
.mkt-module-detail:nth-child(even) .mkt-module-detail__media {
    order: -1;
}
.mkt-module-detail__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.mkt-module-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Sector */
.mkt-sector-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.mkt-sector-card {
    background: var(--bg-color);
    border-radius: var(--site-radius-lg, 22px);
    border: 1px solid var(--site-border);
    overflow: hidden;
    box-shadow: var(--site-shadow);
}
.mkt-sector-card__body {
    padding: 1.5rem;
}
.mkt-sector-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.mkt-sector-block--reverse .mkt-sector-block__media {
    order: -1;
}

.mkt-compare-table-wrap {
    overflow-x: auto;
}
.mkt-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: var(--site-radius-lg, 22px);
    overflow: hidden;
    border: 1px solid var(--site-border);
}
.mkt-compare-table th,
.mkt-compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--site-border);
}
.mkt-compare-table th {
    background: var(--bg-secondary);
    font-weight: 700;
}
.mkt-compare-table tr:last-child td {
    border-bottom: none;
}

/* Testimonials & references */
/* Testimonials — staggered 2-col, not identical card grid */
.mkt-testimonial-grid,
.mkt-reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    align-items: start;
}
.mkt-testimonial-grid .mkt-testimonial:nth-child(2) {
    transform: translateY(1.25rem);
}
.mkt-testimonial-grid .mkt-testimonial:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 62%;
    margin-left: auto;
    margin-right: 0;
    transform: translateY(0.5rem);
}
.mkt-testimonial,
.mkt-reference-card {
    background: var(--bg-color);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg, 22px);
    padding: 1.5rem;
    box-shadow: var(--site-shadow);
}
.mkt-testimonial__stars,
.mkt-reference-card__stars {
    color: #f39c12;
    margin-bottom: 0.65rem;
}
.mkt-testimonial footer,
.mkt-reference-card footer {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.mkt-testimonial footer strong,
.mkt-reference-card footer strong {
    display: block;
    color: var(--text);
}
.mkt-testimonial footer span,
.mkt-reference-card footer span {
    color: var(--text-light);
}
.mkt-reference-card blockquote {
    font-style: italic;
    color: var(--text);
    margin: 0;
}

/* Blog */
.mkt-cms-hint {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--site-radius, 14px);
    border: 1px dashed var(--site-border);
}
.mkt-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.mkt-blog-card {
    background: var(--bg-color);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg, 22px);
    overflow: hidden;
    box-shadow: var(--site-shadow);
    display: flex;
    flex-direction: column;
}
.mkt-blog-card__media-link {
    text-decoration: none;
    color: inherit;
}
.mkt-blog-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mkt-blog-card__cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.mkt-blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.mkt-blog-card h3 a {
    color: var(--text);
    text-decoration: none;
}
.mkt-blog-card h3 a:hover {
    color: var(--primary);
}
.mkt-blog-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    flex: 1;
}
.mkt-blog-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--site-border);
}

.mkt-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}
.mkt-inline-form input {
    flex: 1;
    min-width: 220px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius, 14px);
    font: inherit;
}

.mkt-blog-article__back a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.mkt-blog-article__title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin: 0.5rem 0 0.75rem;
    letter-spacing: -0.02em;
}
.mkt-blog-article__meta {
    margin-bottom: 1.5rem;
}
.mkt-blog-article__cover {
    margin-bottom: 1.75rem;
}

/* Contact */
.mkt-contact__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.mkt-contact__info {
    background: var(--primary);
    color: #fff;
    border-radius: var(--site-radius-lg, 22px);
    padding: 2rem;
}
.mkt-contact__info h2 {
    margin-bottom: 1.25rem;
}
.mkt-contact__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.mkt-contact__list li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}
.mkt-contact__icon {
    font-size: 1.35rem;
}
.mkt-contact__list a {
    color: #fff;
}
.mkt-contact__list strong {
    display: block;
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 0.15rem;
}
.mkt-contact__form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg, 22px);
    padding: 2rem;
    box-shadow: var(--site-shadow);
}
.mkt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.mkt-form__group {
    margin-bottom: 1rem;
}
.mkt-form__group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}
.mkt-form__group input,
.mkt-form__group select,
.mkt-form__group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius, 14px);
    font: inherit;
    background: var(--bg-color);
    color: var(--text);
}
.mkt-alert {
    padding: 0.85rem 1rem;
    border-radius: var(--site-radius, 14px);
    margin-bottom: 1rem;
    font-weight: 500;
}
.mkt-alert--success {
    background: #d4edda;
    color: #155724;
}
.mkt-alert--error {
    background: #f8d7da;
    color: #721c24;
}

.mkt-social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.mkt-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.mkt-social-links a:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* CTA band */
.mkt-cta-band {
    background: var(--primary);
    color: #fff;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    text-align: center;
}
.mkt-cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.65rem;
}
.mkt-cta-band p {
    opacity: 0.95;
    max-width: 560px;
    margin: 0 auto 1.25rem;
}
.mkt-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.mkt-trust {
    padding: 2.5rem 0;
    background: var(--bg-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .mkt-hero__inner:has(.mkt-hero__media),
    .mkt-hero--split .mkt-hero__inner,
    .mkt-feature-row,
    .mkt-sector-block,
    .mkt-module-detail,
    .mkt-contact__grid,
    .mkt-testimonial-grid,
    .mkt-reference-grid {
        grid-template-columns: 1fr;
    }
    .mkt-testimonial-grid .mkt-testimonial:nth-child(2),
    .mkt-testimonial-grid .mkt-testimonial:nth-child(3) {
        transform: none;
        max-width: none;
        margin-left: 0;
        grid-column: auto;
    }
    .mkt-hero--split .mkt-hero__copy {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--mkt-accent, var(--accent-warm));
        padding-top: 1.25rem;
    }
    .mkt-feature-row:nth-child(even) .mkt-feature-row__body,
    .mkt-feature-row:nth-child(even) .mkt-feature-row__aside {
        order: 0;
    }
    .mkt-module-detail:nth-child(even) .mkt-module-detail__media,
    .mkt-sector-block--reverse .mkt-sector-block__media {
        order: 0;
    }
    .mkt-form__row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mkt-hero__stat strong {
        animation: none;
    }
    .mkt-module-card:hover,
    .mkt-feature-row {
        transition: none;
    }
}

@media (max-width: 600px) {
    .mkt-hero {
        padding: 3.5rem 0 3rem;
    }
    .mkt-section {
        padding: 3rem 0;
    }
}
