/* ── Pricing page ── */

.page-header {
    background:
        linear-gradient(135deg, rgba(17, 32, 61, 0.97), rgba(17, 32, 61, 0.90)),
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.35), transparent 20rem),
        radial-gradient(circle at 80% 20%, rgba(245, 187, 42, 0.20), transparent 18rem);
    padding: 3rem 2rem 3.5rem;
    text-align: center;
    color: var(--light-text-color);
}

.page-header-content {
    max-width: 600px;
    margin: auto;
}

.page-header .logo {
    width: 72px;
    height: auto;
    margin-bottom: 0.75rem;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0.25rem 0 0;
    letter-spacing: -0.03em;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.pricing-card-main {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(17, 32, 61, 0.12);
    border: 1px solid rgba(17, 32, 61, 0.08);
}

.pricing-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 0.75rem;
    letter-spacing: 0.04em;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-number {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
    border-top: 1px solid rgba(17, 32, 61, 0.08);
    padding-top: 1.25rem;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.pricing-includes li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-context {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-stat {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
    text-align: center;
}

.pricing-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.04em;
}

.pricing-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.25rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
    padding: 1rem;
    background: rgba(17, 32, 61, 0.03);
    border-radius: var(--border-radius-md);
    border: 1px dashed rgba(17, 32, 61, 0.12);
}

.placement-showcase {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.showcase-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: var(--card-padding);
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 1.5rem;
    align-items: start;
}

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.showcase-info h3 {
    margin: 0.4rem 0 0.3rem;
}

.showcase-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
}

.showcase-media img,
.showcase-media video {
    width: 100%;
    border-radius: var(--border-radius-md);
    display: block;
    object-fit: cover;
}

.showcase-media video {
    background: #000;
}

.showcase-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 2px dashed rgba(17, 32, 61, 0.15);
    border-radius: var(--border-radius-md);
    background: rgba(17, 32, 61, 0.02);
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.showcase-placeholder svg {
    opacity: 0.35;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

    .showcase-card {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        flex-direction: column;
    }

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

/* ── End pricing page ── */

@font-face {
    font-family: 'IranRounded';
    src: url('../fonts/IRANRounded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #11203D;
    --secondary-color: #305E36;
    --bg-color: #F8FAFC;
    --text-color: #11203D;
    --light-text-color: #ffffff;
    --section-bg: #E0EDFF;
    --accent-color: #F5BB2A;
    --success-color: #305E36;
    --card-bg: #ffffff;
    --link-color: #2563EB;
    --link-hover: #1D4ED8;
    --gaming-accent: #8B5CF6;
    --danger-color: #DC2626;
    --container-max-width: 1200px;
    --section-padding: 64px 32px;
    --card-padding: 24px;
    --header-padding: 160px 32px;
    --nav-padding: 1rem 1.5rem;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 10px;
    --border-radius-xl: 18px;
    --btn-min-width: 180px;
    --btn-padding: 0.8rem 1.5rem;
    --accent-line-width: 60px;
    --accent-line-height: 3px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IranRounded', 'Tahoma', sans-serif;
    line-height: 1.75;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 32rem),
        radial-gradient(circle at top right, rgba(48, 94, 54, 0.10), transparent 30rem),
        var(--bg-color);
}

body,
html {
    direction: rtl;
}

a,
a:link {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:visited {
    color: var(--link-color);
}

a:hover,
a:active {
    color: var(--link-hover);
    text-decoration: underline;
}

.hero-header {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background:
        linear-gradient(135deg, rgba(17, 32, 61, 0.96), rgba(17, 32, 61, 0.86)),
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.45), transparent 24rem),
        radial-gradient(circle at 80% 10%, rgba(245, 187, 42, 0.28), transparent 20rem);
    padding: var(--header-padding);
    position: relative;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.45rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.hero-content > p:not(.eyebrow) {
    max-width: 760px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-text-color) !important;
    padding: var(--btn-padding);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    min-width: var(--btn-min-width);
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 94, 54, 0.28);
    text-decoration: none;
}

.btn.primary {
    background: linear-gradient(135deg, var(--gaming-accent), var(--secondary-color));
}

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

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

nav {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(17, 32, 61, 0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-toggle {
    display: none;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    gap: 0.25rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    padding: var(--nav-padding);
    display: block;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: var(--border-radius-md);
}

nav ul li a:hover,
nav ul li a:active {
    color: var(--secondary-color);
    background: rgba(48, 94, 54, 0.08);
    text-decoration: none;
}

.container {
    max-width: var(--container-max-width);
    margin: auto;
    padding: var(--section-padding);
}

.section {
    margin-bottom: 4rem;
}

section:target,
article:target {
    padding-top: 110px;
    margin-top: -110px;
}

h2 {
    color: var(--primary-color);
    margin: 0 0 1.5rem;
    position: relative;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.35;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: var(--accent-line-width);
    height: var(--accent-line-height);
    background: linear-gradient(90deg, var(--accent-color), var(--gaming-accent));
    border-radius: var(--border-radius-sm);
}

h3 {
    color: var(--primary-color);
    margin-top: 0;
    line-height: 1.35;
}

p {
    margin-top: 0;
}

.highlight {
    padding: 1rem 1.25rem;
    background: rgba(245, 187, 42, 0.12);
    border-right: 4px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    font-weight: 700;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 2rem;
    align-items: start;
}

.quick-panel,
.card,
.pricing-card,
.placement-card,
.simple-game-card,
.developer-cta,
.contact-form {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: var(--card-padding);
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
}

.quick-panel h3,
.card h3,
.placement-card h3 {
    margin-bottom: 1rem;
}

.quick-panel dl {
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.quick-panel dl div {
    display: grid;
    gap: 0.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(17, 32, 61, 0.08);
}

.quick-panel dt {
    color: var(--secondary-color);
    font-weight: 800;
}

.quick-panel dd {
    margin: 0;
    color: var(--text-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gaming-accent) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.24);
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1rem;
    min-width: 0;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style-type: none;
    padding: 0;
}

.card:hover,
.placement-card:hover,
.simple-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(17, 32, 61, 0.14), 0 0 20px rgba(139, 92, 246, 0.10);
}

.platform-grid {
    margin-top: 2rem;
}

.case-studies {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.simple-game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0.85rem;
}

.simple-game-card .game-desc {
    display: none;
}

.simple-game-card .game-link {
    margin-top: 0.5rem;
    padding-top: 0;
    border-top: none;
}

.game-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 0.65rem;
}

.game-icon-img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: block;
}

.game-icon-placeholder {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gaming-accent) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.30);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
}

.game-info {
    flex-grow: 1;
}

.game-name {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 800;
    line-height: 1.35;
}

.game-metrics {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.metric-badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1.4;
}

.metric-badge.muted {
    background: linear-gradient(135deg, #64748b, #334155);
}

.services-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 32, 61, 0.08);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.services-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.services-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-content: flex-start;
}

.service-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: var(--link-color);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid #bfdbfe;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.game-desc {
    font-size: 0.875rem;
    color: #475569;
    margin: 0.25rem 0 0.75rem;
    flex-grow: 1;
}

.game-link {
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(17, 32, 61, 0.08);
}

.game-link-btn {
    display: inline-block;
    color: var(--link-color) !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.game-link-btn:hover {
    color: var(--link-hover) !important;
    text-decoration: underline;
}

.metric-badge.platform-badge {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.placement-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.placement-card-simple {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: var(--card-padding);
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placement-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(17, 32, 61, 0.14), 0 0 20px rgba(139, 92, 246, 0.10);
}

.placement-card-simple h3 {
    margin-bottom: 0.65rem;
}

.placement-card-simple p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

.why-section {
    margin-top: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: var(--card-padding);
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 32, 61, 0.12);
}

.why-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.why-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
}

.native-note {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    padding: 0.75rem 1rem;
    border-right: 3px solid rgba(17, 32, 61, 0.15);
}

.native-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px dashed var(--gaming-accent);
    border-radius: var(--border-radius-xl);
    background: rgba(139, 92, 246, 0.04);
    margin-top: 1.5rem;
}

.native-card-body {
    flex: 1;
}

.native-card-body h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.native-card-body p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}

.native-card-cta {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .native-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .native-card-cta {
        width: 100%;
        text-align: center;
    }
}

.ad-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ad-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ad-phone-frame {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 9 / 19;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(17, 32, 61, 0.22);
    position: relative;
}

.ad-phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    z-index: 2;
}

.ad-media-slot {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #94a3b8;
    font-size: 0.7rem;
    text-align: center;
    overflow: hidden;
}

.ad-media-slot:has(img),
.ad-media-slot:has(video) {
    border: none;
    background: #000;
}

.ad-media-slot img,
.ad-media-slot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.ad-showcase-meta {
    text-align: center;
    width: 100%;
}

.ad-showcase-meta h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.4rem 0 0.25rem;
}

.ad-showcase-meta p {
    font-size: 0.83rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.ad-scenario {
    margin-top: 0.6rem !important;
    padding: 0.5rem 0.65rem;
    background: rgba(17, 32, 61, 0.04);
    border-right: 3px solid var(--gaming-accent);
    border-radius: 4px;
    font-size: 0.8rem !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    text-align: right;
}

.ad-scenario-label {
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0.3rem;
}

@media (max-width: 640px) {
    .ad-showcase-grid {
        grid-template-columns: 1fr;
    }

    .ad-phone-frame {
        max-width: 200px;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 560px;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(17, 32, 61, 0.08);
    border: 1px solid rgba(17, 32, 61, 0.08);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(17, 32, 61, 0.13);
    text-decoration: none;
    color: var(--text-color);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.contact-value {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    direction: ltr;
    text-align: right;
}

.contact-note {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.15rem;
    direction: rtl;
    text-align: right;
}

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

.growth-note {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 187, 42, 0.10);
    border-right: 4px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
}

.placement-card {
    min-height: 100%;
}

.placement-card ul {
    margin: 1rem 0 0;
    padding-right: 1.2rem;
}

.placement-card li {
    margin-bottom: 0.45rem;
}

.placement-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.placement-platform-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.android-tag,
.android-badge {
    background: linear-gradient(135deg, #4ade80, #16a34a);
}

.placement-negotiable-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(245, 187, 42, 0.18);
    color: #92600a;
    border: 1px solid rgba(245, 187, 42, 0.5);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.native-banner-preview {
    margin-top: 1.25rem;
    border: 2px dashed rgba(17, 32, 61, 0.18);
    border-radius: var(--border-radius-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 32, 61, 0.03);
}

.native-banner-placeholder-text {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.placement-media {
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(17, 32, 61, 0.08);
}

.placement-media img,
.placement-media video {
    width: 100%;
    border-radius: var(--border-radius-md);
    display: block;
    object-fit: cover;
}

.placement-media video {
    max-height: 340px;
    background: #000;
}

.placement-media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px dashed rgba(17, 32, 61, 0.15);
    border-radius: var(--border-radius-md);
    background: rgba(17, 32, 61, 0.02);
    padding: 2rem 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    min-height: 160px;
}

.placement-media-placeholder svg {
    opacity: 0.35;
}

.process-list {
    counter-reset: process;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.process-list li {
    counter-increment: process;
    background: var(--card-bg);
    border: 1px solid rgba(17, 32, 61, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 3.25rem 1.25rem 1.25rem;
    position: relative;
    box-shadow: 0 6px 18px rgba(17, 32, 61, 0.06);
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    right: 1rem;
    top: 1.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--gaming-accent));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.developer-cta {
    background: linear-gradient(135deg, rgba(48, 94, 54, 0.10), rgba(224, 237, 255, 0.95));
    border: 1px solid rgba(48, 94, 54, 0.18);
}

.developer-cta h3 {
    font-size: 1.55rem;
    margin-bottom: 0.75rem;
}

.developer-cta p {
    max-width: 780px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 760px;
    margin: 2rem auto 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border: 2px solid rgba(17, 32, 61, 0.15);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(48, 94, 54, 0.12);
}

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

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.features-selection {
    margin: 0.5rem 0;
}

.features-selection h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
}

.features-table td {
    padding: 0.45rem;
    vertical-align: middle;
}

.features-table label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.features-table input[type="checkbox"] {
    margin-left: 0.5rem;
    cursor: pointer;
    width: auto;
}

#message-links {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    gap: 0.75rem;
}

.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.86);
    text-align: center;
    padding: 2rem 1rem;
}

.footer p {
    margin: 0.35rem 0;
}

.footer a {
    color: var(--accent-color) !important;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .placement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }

    nav ul li a {
        text-align: center;
    }

    .container {
        padding: 48px 1rem;
    }

    .hero-header {
        padding: 120px 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .case-studies {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .placement-grid,
    .placement-grid-simple,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .simple-game-card,
    .placement-card,
    .card,
    .quick-panel {
        padding: 1.25rem;
    }

    .game-header {
        flex-direction: column;
        text-align: center;
    }

    .services-used {
        justify-content: center;
    }

    .services-label {
        text-align: center;
    }

    .process-list li {
        padding: 1.15rem 1rem 1.15rem 3.2rem;
    }

    .process-list li::before {
        right: auto;
        left: 1rem;
    }

    #message-links {
        grid-auto-flow: row;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

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

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

    .btn,
    .contact-form button {
        width: 100%;
    }

    .game-metrics {
        justify-content: center;
    }

    .features-table,
    .features-table tbody,
    .features-table tr,
    .features-table td {
        display: block;
        width: 100%;
    }

    .features-table td {
        padding: 0.6rem 0.25rem;
    }

    .features-selection h3 {
        font-size: 1rem;
    }
}
