/* ===== Falco PDF Product Page ===== */

/* Orange gradient text */
.gradient-text-orange {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.orange-tag {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.15), rgba(255, 45, 45, 0.15)) !important;
    border-color: rgba(255, 138, 0, 0.4) !important;
    color: #ff6a00 !important;
}

/* ===== Hero ===== */
.pdf-hero {
    padding: 150px 0 60px;
    position: relative;
}

.pdf-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 24px;
}

.pdf-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
}

.pdf-hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    opacity: 0.3;
    filter: blur(100px);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

.pdf-hero-logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 40px rgba(255, 100, 0, 0.35));
    animation: logo-float 5s ease-in-out infinite;
}

.pdf-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(255, 100, 0, 0.4);
}

.pdf-exclusive-badge svg {
    color: #ffd700;
    animation: badge-spin 4s ease-in-out infinite;
}

.pdf-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.pdf-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 580px;
}

.pdf-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ===== Packages Grid ===== */
.pdf-packages {
    padding: 60px 0;
}

.pdf-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1300px;
    margin: 0 auto;
}

.pdf-package-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-package-card:hover {
    transform: translateY(-6px);
    border-color: #ff8a00;
    box-shadow: 0 20px 50px rgba(255, 100, 0, 0.2);
}

.pdf-package-card.popular {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 45, 45, 0.05));
    border-color: #ff8a00;
    box-shadow: 0 12px 30px rgba(255, 100, 0, 0.15);
}

.pdf-package-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 100, 0, 0.4);
}

.pdf-package-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.15), rgba(255, 45, 45, 0.15));
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pdf-package-qty {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pdf-package-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Suitability label (e.g., "يناسب محلات الكمبيوتر") */
.pdf-package-suit {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ff6a00;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), rgba(255, 45, 45, 0.08));
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    line-height: 1.4;
    border: 1px solid rgba(255, 138, 0, 0.25);
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.12);
}

/* Old price with red diagonal strikethrough */
.pdf-package-old-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.pdf-package-old-price .old-price-num {
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.pdf-package-old-price .old-price-num::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #ef4444;
    transform: translateY(-50%) rotate(-12deg);
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(239, 68, 68, 0.4);
    pointer-events: none;
}

.pdf-package-old-price small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-tertiary);
}

/* Sale price in green */
.pdf-package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pdf-package-price .amount {
    font-size: 1.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.pdf-package-price small {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 800;
}

.pdf-package-per {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.pdf-package-save {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.pdf-package-btn {
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(255, 100, 0, 0.3);
    margin-top: auto;
}

.pdf-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.45);
}

.pdf-packages-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.pdf-packages-note svg {
    color: var(--accent-1);
    flex-shrink: 0;
}

.pdf-packages-note a {
    color: #ff6a00;
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Features Grid ===== */
.pdf-details {
    padding: 80px 0;
}

.pdf-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.pdf-feature {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pdf-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    transform: scaleX(0);
    transform-origin: start;
    transition: transform var(--transition);
}

.pdf-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 138, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 100, 0, 0.12);
}

.pdf-feature:hover::before {
    transform: scaleX(1);
}

.pdf-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), rgba(255, 45, 45, 0.08));
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--transition);
}

.pdf-feature:hover .pdf-feature-icon {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    transform: scale(1.1);
}

.pdf-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pdf-feature p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Screenshots ===== */
.pdf-screenshots {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 138, 0, 0.03));
}

.pdf-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pdf-screenshot.featured {
    grid-column: 1 / -1;
}

.pdf-screenshot {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pdf-screenshot-window {
    background: #1e293b;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.pdf-screenshot-window:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(255, 100, 0, 0.2);
}

.pdf-screenshot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.screenshot-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
}

.pdf-screenshot-body {
    padding: 22px;
    min-height: 220px;
    color: #cbd5e1;
    background: #1e293b;
    position: relative;
}

.pdf-screenshot.featured .pdf-screenshot-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    min-height: 320px;
}

.screenshot-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    background: #0f172a;
    border-radius: var(--radius-md);
    height: fit-content;
}

.side-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all var(--transition);
}

.side-icon.active,
.side-icon:hover {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
}

.screenshot-doc {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.doc-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.tool-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: white;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.78rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all var(--transition);
}

.tool-btn:hover {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    border-color: transparent;
}

.tool-btn.small svg {
    color: #ff6a00;
}

.tool-divider {
    width: 1px;
    height: 18px;
    background: #cbd5e1;
}

.doc-content {
    padding: 24px;
    min-height: 220px;
    background: white;
}

.doc-line {
    height: 9px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 10px;
}

.doc-line.title-line {
    width: 60%;
    height: 14px;
    background: linear-gradient(90deg, #ff8a00, #ff2d2d);
    margin-bottom: 16px;
}

.doc-line.short { width: 75%; }

.doc-image {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 45, 45, 0.15));
    border-radius: var(--radius-sm);
    margin: 14px 0;
    border: 1.5px dashed rgba(255, 138, 0, 0.4);
}

.pdf-screenshot-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Page Thumbs (drag & drop) */
.page-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.page-thumb {
    aspect-ratio: 3/4;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 6px 8px;
    color: #64748b;
    font-weight: 700;
    font-size: 0.7rem;
    cursor: grab;
    transition: all var(--transition);
    position: relative;
}

.page-thumb::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

.page-thumb::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 8px;
    width: 70%;
    height: 3px;
    background: #cbd5e1;
    border-radius: 2px;
}

.page-thumb.active {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.2);
}

.page-thumb.dragging {
    transform: rotate(-5deg) scale(1.05);
    border-color: #ff2d2d;
    box-shadow: 0 8px 24px rgba(255, 100, 0, 0.4);
    cursor: grabbing;
}

/* Signature Area */
.signature-area {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
}

.sig-label {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.sig-svg {
    width: 100%;
    height: 80px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 10px;
    color: #0f172a;
}

.sig-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
}

.sig-btn {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.sig-btn.primary {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
}

/* Compare Documents */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: stretch;
}

.compare-doc {
    background: white;
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px solid #e2e8f0;
}

.compare-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.compare-doc .doc-line {
    height: 6px;
    margin-bottom: 8px;
}

.compare-doc .doc-line.short { width: 70%; }

.doc-line.removed {
    background: rgba(239, 68, 68, 0.25);
    border-left: 3px solid #ef4444;
}

.doc-line.added {
    background: rgba(34, 197, 94, 0.25);
    border-left: 3px solid #22c55e;
}

.compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    padding: 0 12px;
    border-radius: var(--radius-full);
    height: fit-content;
    align-self: center;
}

/* QR Section */
.qr-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    background: white;
    border-radius: var(--radius-md);
    padding: 18px;
}

.qr-input label {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.qr-input-box {
    padding: 10px 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    color: #0f172a;
    font-family: monospace;
    font-size: 0.85rem;
}

.qr-preview {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-preview svg {
    width: 100%;
    height: 100%;
}

/* Convert Flow */
.convert-flow {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    align-items: center;
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
}

.format-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.format-card.sm {
    padding: 8px;
}

.format-icon {
    padding: 8px 4px;
    color: white;
    font-weight: 900;
    font-size: 0.72rem;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}

.format-card.sm .format-icon {
    margin-bottom: 0;
}

.format-icon.pdf { background: linear-gradient(135deg, #ff8a00, #ff2d2d); }
.format-icon.docx { background: linear-gradient(135deg, #2b579a, #1e3a8a); }
.format-icon.xlsx { background: linear-gradient(135deg, #16a34a, #15803d); }
.format-icon.pptx { background: linear-gradient(135deg, #d97706, #b45309); }
.format-icon.img { background: linear-gradient(135deg, #db2777, #be185d); }
.format-icon.html { background: linear-gradient(135deg, #ea580c, #c2410c); }
.format-icon.txt { background: linear-gradient(135deg, #475569, #1e293b); }

.convert-arrow {
    color: #ff6a00;
}

/* RTL: flip arrow horizontally — points from PDF (right) to formats (left) */
[dir="rtl"] .convert-arrow svg {
    transform: scaleX(-1);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

/* ===== Requirements ===== */
.pdf-requirements {
    padding: 60px 0;
}

.pdf-req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pdf-req-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    text-align: center;
    transition: all var(--transition);
}

.pdf-req-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 0, 0.3);
}

.pdf-req-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 18px rgba(255, 100, 0, 0.3);
}

.pdf-req-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pdf-req-card ul {
    text-align: start;
    list-style: none;
    padding: 0;
}

.pdf-req-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-inline-start: 18px;
    position: relative;
}

.pdf-req-card ul li:last-child {
    border-bottom: none;
}

.pdf-req-card ul li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
}

/* ===== CTA Orange ===== */
.cta-box.orange-cta {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.08), rgba(255, 45, 45, 0.08));
    border-color: #ff8a00;
}

.cta-box.orange-cta::before {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
}

.cta-box.orange-cta .cta-title {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn.btn-orange {
    background: linear-gradient(135deg, #ff8a00, #ff2d2d);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 100, 0, 0.35);
}

.btn.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 100, 0, 0.5);
}

.btn.btn-orange::before {
    background: linear-gradient(135deg, #ff2d2d, #ff8a00);
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .pdf-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .pdf-hero-visual {
        height: 240px;
        order: -1;
    }

    .pdf-hero-logo {
        max-width: 280px;
    }

    .pdf-hero-subtitle {
        margin-inline: auto;
    }

    .pdf-hero-meta {
        justify-content: center;
    }

    .pdf-exclusive-badge {
        margin-inline: auto;
    }

    .pdf-screenshot.featured .pdf-screenshot-body {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }
}

@media (max-width: 599px) {
    .pdf-hero {
        padding: 110px 0 40px;
    }

    .pdf-packages,
    .pdf-details,
    .pdf-screenshots,
    .pdf-requirements {
        padding: 50px 0;
    }

    .pdf-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pdf-package-card {
        padding: 18px 14px;
    }

    .pdf-package-qty {
        font-size: 1.85rem;
    }

    .pdf-package-suit {
        font-size: 0.65rem;
        padding: 4px 9px;
        white-space: normal;
        line-height: 1.3;
    }

    .pdf-package-price .amount {
        font-size: 1.2rem;
    }

    .pdf-package-btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .qr-section {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .qr-preview {
        margin: 0 auto;
    }

    .convert-flow {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Mobile: rotate arrow to point down — for both LTR and RTL */
    .convert-arrow svg,
    [dir="rtl"] .convert-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 360px) {
    .pdf-packages-grid {
        grid-template-columns: 1fr;
    }
}
