﻿:root {
    --bg: #fafafa;
    --card: #ffffff;
    --input-bg: #f7f7f9;
    --text: #1a1a1a;
    --text-secondary: #6b7280;
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: rgba(99,102,241,.08);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,.03);
    --shadow-md: 0 8px 30px rgba(0,0,0,.06);
    --font: KalamehWeb, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.wrapper {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Hero ─── */
.hero {
    padding: 48px 0 32px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    letter-spacing: .01em;
}

.banner-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    line-height: 0;
}

.banner-gif {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.banner-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    z-index: 1;
    border-radius: 12px;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    padding: 15px 24px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    min-height: 48px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    background: var(--input-bg);
    border: none;
    border-radius: var(--radius);
    padding: 14px 24px;
    cursor: pointer;
    transition: background .2s;
    min-height: 48px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #eeeef0;
    color: var(--text);
}

/* ─── Section common ─── */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: .85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 28px;
}

/* ─── Services (6 items, 2-col) ─── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    overflow: hidden;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-card p {
    font-size: .76rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Article ─── */
.article-card {
    background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.article-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.article-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-card p {
    font-size: .84rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-link {
    font-size: .84rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 2px;
}

.article-link:hover {
    opacity: .7;
}

/* ─── How it works ─── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.step-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow .2s;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-card p {
    font-size: .78rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Video ─── */
.video-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-placeholder {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: background .2s, transform .2s;
    cursor: pointer;
}

.video-play-btn:hover {
    background: rgba(255,255,255,.25);
    transform: scale(1.05);
}

/* ─── Book Printing ─── */
.book-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.book-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
}

.book-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.book-card p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ─── Why OffCopy ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow .2s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    overflow: hidden;
}

.why-card h3 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    font-size: .76rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: .88rem;
    font-weight: 600;
    user-select: none;
    transition: background .15s;
}

.faq-q:hover {
    background: var(--input-bg);
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--text-secondary);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 20px;
    font-size: .82rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
}

/* ─── Testimonials ─── */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
    color: #f59e0b;
}

.testimonial-card p {
    font-size: .84rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
}

/* ─── Consultation CTA ─── */
.cta-card {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.cta-card .btn-primary:hover {
    background: #f5f5f5;
    color: var(--primary-hover);
}

/* ─── Footer ─── */
.site-footer {
    border-top: 1px solid rgba(0,0,0,.05);
    padding: 28px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background .2s, color .2s;
}

.footer-social a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.enamad-logo {
    width: 80px;
    cursor: pointer;
    margin-bottom: 14px;
}

.footer-brand {
    font-size: .76rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media(min-width: 640px) {
    .wrapper {
        max-width: 540px;
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
