/* =================================================================
   ObirMenu - Tanıtım Sayfası
   Kurumsal renkler: #f5b934 (sarı/altın) + #151515 (siyah)
   UI/UX: Modern SaaS, premium-warm aesthetic
   ================================================================= */

:root {
    --om-yellow: #f5b934;
    --om-yellow-soft: #fdf1d6;
    --om-yellow-glow: #fff6df;
    --om-yellow-deep: #e0a821;
    --om-dark: #151515;
    --om-dark-2: #1f1f1f;
    --om-dark-3: #0f0f0f;
    --om-text: #1a1a1a;
    --om-text-muted: #4b4b4b;
    --om-text-soft: #6b6b6b;
    --om-border: rgba(21, 21, 21, 0.08);
    --om-border-strong: rgba(21, 21, 21, 0.14);
    --om-orange: #ff6d4d;
    --om-shadow-sm: 0 4px 18px rgba(21, 21, 21, 0.06);
    --om-shadow-md: 0 10px 30px rgba(21, 21, 21, 0.08);
    --om-shadow-lg: 0 18px 50px rgba(21, 21, 21, 0.12);
    --om-shadow-xl: 0 24px 70px rgba(21, 21, 21, 0.18);
    --om-radius-sm: 12px;
    --om-radius: 18px;
    --om-radius-lg: 24px;
    --om-container: 1200px;
}

/* =========================== BASE =========================== */
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: var(--om-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

.om-text-accent { color: var(--om-yellow); }

.font-signika { font-family: 'Signika', sans-serif !important; letter-spacing: -0.01em; }
.font-caveat  { font-family: 'Caveat', cursive !important; }

/* Reusable script accent */
.om-script {
    display: inline-block;
    color: var(--om-yellow);
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 8px;
}
.om-script-dark { color: var(--om-yellow); }

/* Reveal animation */
.om-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.om-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================== BUTTONS =========================== */
.om-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}
.om-btn i { font-size: 1.05em; line-height: 1; }
.om-btn-lg { padding: 15px 30px; font-size: 1rem; }
.om-btn-xl { padding: 18px 36px; font-size: 1.05rem; }

.om-btn-primary {
    background: var(--om-yellow);
    color: var(--om-dark);
    border-color: var(--om-yellow);
    box-shadow: 0 8px 22px rgba(245, 185, 52, 0.35);
}
.om-btn-primary:hover {
    background: var(--om-dark);
    color: var(--om-yellow);
    border-color: var(--om-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 21, 21, 0.25);
}

.om-btn-dark-outline {
    background: transparent;
    color: var(--om-dark);
    border-color: var(--om-dark);
}
.om-btn-dark-outline:hover {
    background: var(--om-dark);
    color: #fff;
    transform: translateY(-2px);
}

.om-btn-light-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.om-btn-light-outline:hover {
    background: #fff;
    color: var(--om-dark);
    border-color: #fff;
    transform: translateY(-2px);
}

.om-btn-ghost {
    background: transparent;
    color: var(--om-dark);
    border-color: var(--om-border-strong);
}
.om-btn-ghost:hover {
    background: var(--om-yellow-soft);
    border-color: var(--om-yellow);
    color: var(--om-dark);
}

/* =========================== NAV =========================== */
.om-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.om-nav.is-scrolled {
    border-bottom-color: var(--om-border);
    box-shadow: 0 4px 18px rgba(21, 21, 21, 0.04);
}
.om-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.om-nav-brand img {
    width: 160px;
    height: auto;
    display: block;
}
.om-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.om-nav-links a {
    color: var(--om-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color .2s ease;
}
.om-nav-links a:hover {
    color: var(--om-dark);
}
.om-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--om-yellow);
    border-radius: 2px;
    transition: right .25s ease;
}
.om-nav-links a:hover::after { right: 0; }

.om-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Giriş yapmış kullanıcı adı: sarı birincil buton, uzun isimler kısaltılır */
.om-nav-user-btn {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.om-nav-user-btn--mobile {
    max-width: none;
}
.om-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--om-border-strong);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--om-dark);
}

.om-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: #fff;
    border-top: 1px solid var(--om-border);
}
.om-mobile-menu a {
    padding: 12px 0;
    color: var(--om-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--om-border);
}

/* =========================== HERO =========================== */
.om-hero {
    position: relative;
    padding: 80px 0 140px;
    background:
        radial-gradient(circle at 12% 18%, var(--om-yellow-soft) 0%, transparent 55%),
        radial-gradient(circle at 88% 12%, var(--om-yellow-glow) 0%, transparent 50%),
        #ffffff;
    overflow: hidden;
}
.om-hero-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 185, 52, 0.25) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.om-hero-grain {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(21, 21, 21, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.om-hero .container { position: relative; z-index: 1; }

.om-pill-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--om-yellow);
    color: var(--om-dark);
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(245, 185, 52, 0.18);
    margin-bottom: 22px;
    transform: rotate(-1.5deg);
}
.om-pill-note i { color: var(--om-yellow); font-size: 1.1rem; }
.om-pill-note .font-caveat {
    font-size: 1.45rem;
    line-height: 1;
    color: var(--om-dark);
}

.om-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--om-dark);
    margin-bottom: 20px;
}

.om-hero-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--om-text-muted);
    max-width: 560px;
    margin-bottom: 32px;
}

.om-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.om-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--om-border);
}
.om-trust-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--om-yellow);
    font-size: 1.05rem;
}
.om-trust-text {
    font-size: 0.95rem;
    color: var(--om-text-muted);
    line-height: 1.4;
}
.om-trust-text strong {
    color: var(--om-dark);
    font-weight: 700;
}
.om-trust-sub {
    font-size: 0.82rem;
    color: var(--om-text-soft);
}

/* Hero mockup */
.om-hero-right { display: flex; justify-content: center; }
.om-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 18px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--om-shadow-xl);
    border: 1px solid var(--om-border);
}
.om-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.om-mockup-blob {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 185, 52, 0.22) 0%, transparent 60%);
    z-index: -1;
    filter: blur(40px);
}
.om-mockup-badge {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--om-dark);
    border: 1px solid var(--om-border);
    box-shadow: var(--om-shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.om-mockup-badge i { color: var(--om-yellow); }
.om-badge-ai {
    top: -14px;
    right: 24px;
    animation: omFloat 3.4s ease-in-out infinite;
}
.om-badge-qr {
    bottom: -14px;
    left: 24px;
    animation: omFloat 3.8s ease-in-out infinite reverse;
}
@keyframes omFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* =========================== STATS STRIP =========================== */
.om-stats-wrap {
    margin-top: -90px;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}
.om-stats {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    box-shadow: var(--om-shadow-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.om-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.om-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--om-yellow-soft);
    color: var(--om-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}
.om-stat-value {
    font-family: 'Signika', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    color: var(--om-dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.om-stat-label {
    color: var(--om-text-soft);
    font-size: 0.92rem;
    font-weight: 500;
}
.om-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--om-border);
}

/* =========================== LOGO BAR =========================== */
.om-logobar {
    padding: 24px 0 60px;
    text-align: center;
}
.om-logobar-title {
    color: var(--om-text-soft);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.om-logobar-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.om-logobar-track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-wrap: nowrap;
    gap: 44px;
    animation: omLogoSliderRight 60s linear infinite;
}
.om-logobar-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    gap: 8px;
    padding-top: 8px;
}
.om-logobar-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.om-logobar-badge {
    position: absolute;
    top: -4px;
    right: 0;
    background: var(--om-yellow);
    color: var(--om-dark);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(21, 21, 21, 0.12);
}
.om-logobar-logo {
    height: 72px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.om-logobar-name {
    display: block;
    margin-top: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--om-dark);
    line-height: 1.25;
    text-align: center;
    max-width: 220px;
}
.om-logobar-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
.om-logobar-link:hover .om-logobar-logo,
.om-logobar-link:focus-visible .om-logobar-logo {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
.om-logobar-link:focus-visible {
    outline: 2px solid var(--om-yellow);
    outline-offset: 4px;
    border-radius: 8px;
}

@keyframes omLogoSliderRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* =========================== SECTION COMMON =========================== */
.om-section { padding: 88px 0; }
.om-section-soft { background: #fafaf7; }
.om-section-cream {
    background: linear-gradient(180deg, #fff 0%, var(--om-yellow-soft) 100%);
}

.om-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.om-section-title {
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--om-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.om-section-sub {
    font-size: 1.05rem;
    color: var(--om-text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 580px;
}

/* =========================== CARDS =========================== */
.om-card {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius);
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
}
.om-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--om-shadow-md);
    border-color: rgba(245, 185, 52, 0.4);
}

.om-cards-grid .om-card { padding: 32px 26px; }

.om-modul-card {
    overflow: hidden;
    padding-top: 84px !important;
}
.om-modul-card::before {
    content: "";
    position: absolute;
    top: -44px;
    left: -44px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(245, 185, 52, 0.28) 0%, rgba(245, 185, 52, 0.08) 42%, transparent 72%);
    z-index: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.om-modul-card:hover::before {
    transform: scale(1.08);
    opacity: 0.95;
}
.om-modul-icon {
    position: absolute;
    top: 16px;
    left: 18px;
    color: rgba(26, 26, 26, 0.16);
    display: inline-flex;
    font-size: 2.5rem;
    line-height: 1;
    z-index: 0;
    transition: color .25s ease, transform .25s ease;
}
.om-modul-card:hover .om-modul-icon {
    color: rgba(26, 26, 26, 0.24);
    transform: translateY(-2px) scale(1.03);
}
.om-modul-card .om-card-title,
.om-modul-card .om-card-text,
.om-modul-card .om-card-link,
.om-modul-card .om-card-badge {
    position: relative;
    z-index: 1;
}

.om-card-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--om-orange);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.06em;
}
.om-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--om-dark);
    margin-bottom: 8px;
}
.om-card-text {
    color: var(--om-text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 56px;
}
.om-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--om-dark);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: gap .2s ease, color .2s ease;
}
.om-card-link i { font-size: 0.9rem; }
.om-card-link:hover {
    color: var(--om-yellow-deep);
    gap: 10px;
}

/* =========================== SHOWCASE =========================== */
.om-showcase-image {
    position: relative;
    padding: 30px;
}
.om-showcase-blob {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, var(--om-yellow-soft) 0%, transparent 65%);
    border-radius: 30% 70% 65% 35% / 40% 50% 50% 60%;
    z-index: 0;
}
.om-showcase-blob-alt {
    background: radial-gradient(circle at 70% 50%, rgba(245, 185, 52, 0.18) 0%, transparent 60%);
    border-radius: 60% 40% 35% 65% / 55% 45% 55% 45%;
}
.om-showcase-frame {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--om-radius-lg);
    border: 1px solid var(--om-border);
    box-shadow: var(--om-shadow-lg);
    overflow: hidden;
    padding: 14px;
}
.om-showcase-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.om-showcase-title {
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    font-weight: 700;
    color: var(--om-dark);
    line-height: 1.2;
    margin: 8px 0 22px;
    letter-spacing: -0.01em;
}

.om-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}
.om-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--om-text);
    font-size: 1rem;
}
.om-check-list li i {
    color: var(--om-yellow);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* =========================== STEPS =========================== */
.om-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: flex-start;
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}
.om-step {
    text-align: center;
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius);
    padding: 36px 26px 28px;
    box-shadow: var(--om-shadow-sm);
    position: relative;
}
.om-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--om-dark);
    color: var(--om-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Signika', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    box-shadow: 0 12px 22px rgba(21, 21, 21, 0.18);
    border: 4px solid var(--om-yellow-soft);
}
.om-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--om-dark);
    margin-bottom: 6px;
}
.om-step-text {
    color: var(--om-text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}
.om-step-line {
    width: 50px;
    height: 2px;
    background-image: linear-gradient(90deg, var(--om-yellow) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    align-self: center;
    margin-top: 30px;
}

/* =========================== TESTIMONIALS =========================== */
.om-quote-card {
    padding: 30px 26px;
}
.om-quote-stars {
    color: var(--om-yellow);
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}
.om-quote-mark {
    color: var(--om-yellow);
    font-size: 2.2rem;
    line-height: 1;
    display: block;
    opacity: 0.5;
}
.om-quote-text {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--om-text);
    margin: 8px 0 22px;
}
.om-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--om-border);
    padding-top: 18px;
}
.om-quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--om-yellow);
    color: var(--om-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Signika', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}
.om-quote-name {
    font-weight: 700;
    color: var(--om-dark);
    font-size: 0.98rem;
    line-height: 1.2;
}
.om-quote-role {
    color: var(--om-text-soft);
    font-size: 0.82rem;
    margin-top: 3px;
}

/* =========================== REFERANSLAR =========================== */
.om-ref-card {
    padding: 22px 18px;
    text-align: center;
}
.om-ref-logo-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.om-ref-logo {
    max-width: 100%;
    max-height: 145px;
    object-fit: contain;
    filter: grayscale(0.85);
    opacity: 0.85;
    transition: filter .25s ease, opacity .25s ease;
}
.om-ref-card:hover .om-ref-logo {
    filter: grayscale(0);
    opacity: 1;
}
.om-ref-name {
    color: var(--om-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    min-height: 38px;
}
.om-ref-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--om-yellow);
    color: var(--om-dark);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* =========================== PRICING TEASER =========================== */
.om-pricing-teaser {
    position: relative;
    background: linear-gradient(135deg, var(--om-dark-2) 0%, var(--om-dark) 60%, #000 100%);
    color: #fff;
    border-radius: 28px;
    padding: 64px 32px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--om-shadow-xl);
}
.om-pricing-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 185, 52, 0.35) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}
.om-pricing-teaser .om-script { color: var(--om-yellow); position: relative; }
.om-pricing-title {
    font-size: clamp(1.85rem, 3.6vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    position: relative;
}
.om-pricing-text {
    color: #d8d8d8;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
}
.om-pricing-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}
.om-pricing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    color: #b8b8b8;
    font-size: 0.9rem;
    position: relative;
}
.om-pricing-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.om-pricing-trust i {
    color: var(--om-yellow);
}

/* =========================== FAQ =========================== */
.om-faq .om-faq-item {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.om-faq .accordion-button {
    background: #fff;
    color: var(--om-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
    border: 0;
    border-radius: 14px !important;
    box-shadow: none !important;
}
.om-faq .accordion-button:not(.collapsed) {
    background: var(--om-yellow-soft);
    color: var(--om-dark);
    border-radius: 14px 14px 0 0 !important;
}
.om-faq .accordion-button::after {
    content: "\F4FE";
    font-family: "bootstrap-icons";
    background: none;
    color: var(--om-yellow);
    font-size: 1.2rem;
    width: auto;
    height: auto;
    transition: transform .25s ease;
    transform: rotate(0);
}
.om-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    color: var(--om-dark);
}
.om-faq .accordion-body {
    padding: 0 22px 20px;
    color: var(--om-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* =========================== BIG CTA BAND =========================== */
.om-cta-band {
    position: relative;
    padding: 96px 0;
    background: var(--om-dark);
    color: #fff;
    overflow: hidden;
}
.om-cta-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 185, 52, 0.22) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}
.om-cta-blob-1 { top: -180px; left: -120px; }
.om-cta-blob-2 { bottom: -180px; right: -120px; }
.om-cta-band .container { position: relative; z-index: 1; }
.om-cta-band .om-script { color: var(--om-yellow); }
.om-cta-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.om-cta-text {
    color: #c9c9c9;
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* =========================== FOOTER =========================== */
.om-footer {
    background: var(--om-dark-3);
    color: #d6d6d6;
    padding: 64px 0 28px;
}
.om-footer-top { padding-bottom: 32px; }
.om-footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 16px;
}
.om-footer-tag {
    color: #a8a8a8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 18px;
}
.om-footer-social {
    display: flex;
    gap: 10px;
}
.om-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    font-size: 1.05rem;
}
.om-footer-social a:hover {
    background: var(--om-yellow);
    color: var(--om-dark);
    transform: translateY(-2px);
}

.om-footer h4 {
    color: #fff;
    font-family: 'Signika', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.om-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.om-footer ul li { margin-bottom: 8px; }
.om-footer ul a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 0.93rem;
    transition: color .2s ease;
}
.om-footer ul a:hover { color: var(--om-yellow); }

.om-footer-iyzico {
    width: 110px;
    height: auto;
    background: #fff;
    padding: 8px 10px;
    border-radius: 8px;
}

.om-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #888;
    font-size: 0.85rem;
}
.om-footer-bottom a {
    color: var(--om-yellow);
    text-decoration: none;
    font-weight: 600;
}

/* =========================== BACK TO TOP =========================== */
.om-back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--om-yellow);
    color: var(--om-dark);
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--om-shadow-md);
    cursor: pointer;
    z-index: 1040;
    transition: transform .2s ease, background .2s ease;
}
.om-back-top:hover {
    transform: translateY(-3px);
    background: var(--om-dark);
    color: var(--om-yellow);
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1199.98px) {
    .om-stats { padding: 22px 24px; }
}

@media (max-width: 991.98px) {
    .om-nav-links { display: none; }
    .om-nav-toggle { display: inline-flex; }
    .om-mobile-menu:not([hidden]) { display: flex; }
    .om-nav-actions .om-btn-ghost { display: none; }

    .om-hero { padding: 56px 0 110px; }
    .om-hero-title { font-size: clamp(1.8rem, 5.5vw, 2.4rem); }

    .om-stats {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px;
    }
    .om-stat-divider {
        width: 100%;
        height: 1px;
    }
    .om-stat { justify-content: flex-start; }

    .om-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .om-step-line { display: none; }

    .om-section { padding: 64px 0; }
    .om-section-head { margin-bottom: 40px; }

    .om-pricing-teaser { padding: 48px 22px; }
    .om-cta-band { padding: 70px 0; }
}

@media (max-width: 767.98px) {
    .om-nav-brand img { width: 130px; }
    .om-nav-actions .om-btn-primary { padding: 10px 18px; font-size: 0.88rem; }
    .om-nav-actions .om-btn-primary i { display: none; }

    .om-hero-ctas .om-btn { width: 100%; }
    .om-hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }

    .om-mockup-wrap { padding: 12px; border-radius: 22px; }
    .om-badge-ai, .om-badge-qr { font-size: 0.78rem; padding: 6px 12px; }

    .om-stats-wrap { margin-top: -70px; margin-bottom: 36px; }
    .om-stat-icon { width: 46px; height: 46px; font-size: 1.25rem; }

    .om-card-text { min-height: auto; }
    .om-pricing-ctas .om-btn { width: 100%; }
    .om-pricing-trust { gap: 10px; font-size: 0.82rem; }

    .om-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
    .om-section-title { font-size: 1.7rem; }
    .om-pricing-title { font-size: 1.7rem; }
    .om-cta-title { font-size: 1.7rem; }
    .om-script { font-size: 1.35rem; }
    .om-pill-note .font-caveat { font-size: 1.25rem; }
}
