:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: #1c1c1f;
    --border-color: #27272a;
    --border-subtle: #1f1f22;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #3b82f6;
    --accent-success: #22c55e;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-y: scroll; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-scaleIn {
    animation: scaleIn 0.4s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}
.btn-ripple:active::after {
    transform: scale(0);
    opacity: 1;
    transition: 0s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.bg-pattern {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header styles managed by menu.php */

/* Hero */
.hero {
    text-align: center;
    padding: 64px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-badge i { color: var(--accent-success); font-size: 0.7rem; }

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Tabs */
.tabs-section { padding: 24px 0 60px; }

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 4px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transform: scale(1.02);
}

.tab-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.tab-btn:active { transform: scale(0.98); }
.tab-btn i { margin-right: 8px; }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Period Toggle */
.period-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.period-toggle span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.period-toggle span.active { color: var(--text-primary); }

.toggle-switch {
    width: 52px; height: 28px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.toggle-switch::after {
    content: '';
    width: 20px; height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    top: 3px; left: 4px;
    transition: transform 0.2s;
}

.toggle-switch.yearly::after { transform: translateX(22px); }
.toggle-switch.yearly { background: var(--accent-primary); border-color: var(--accent-primary); }
.toggle-switch.yearly::after { background: #fff; }

.savings-badge {
    background: var(--accent-primary);
    color: #ffffff !important;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
}

.popular-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.pricing-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }

.pricing-card .description { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 16px; }

.pricing-card .price { font-size: 2.25rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -1px; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .period { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 20px; }

.pricing-card .features { list-style: none; margin-bottom: 24px; }
.pricing-card .features li {
    padding: 8px 0;
    display: flex; align-items: center; gap: 10px;
    color: var(--text-secondary); font-size: 0.85rem;
}
.pricing-card .features li i { color: var(--accent-success); width: 16px; font-size: 0.75rem; }
.pricing-card .features li strong { color: var(--text-primary); }

.btn-buy {
    display: block; width: 100%; padding: 12px;
    background: var(--bg-tertiary); border: 1px solid var(--border-color);
    color: var(--text-primary); text-decoration: none;
    border-radius: 8px; font-weight: 600; font-size: 0.875rem;
    text-align: center; transition: all 0.3s ease;
    font-family: inherit; position: relative; overflow: hidden;
}

.btn-buy:hover {
    background: var(--accent-primary); border-color: var(--accent-primary);
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn-buy:active { transform: translateY(0); }

.pricing-card.popular .btn-buy {
    background: var(--accent-primary); border-color: var(--accent-primary); color: #fff;
}
.pricing-card.popular .btn-buy:hover {
    background: #2563eb;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Web Packages */
.web-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 800px; margin: 0 auto;
}

@media (max-width: 700px) { .web-packages { grid-template-columns: 1fr; } }

.web-card {
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 32px; text-align: center;
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.web-card ul { flex-grow: 1; }

.web-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}

.web-card.popular { border-color: var(--accent-primary); box-shadow: 0 0 0 1px var(--accent-primary); }
.web-card .popular-badge { position: static; transform: none; display: inline-block; margin-bottom: 16px; }
.web-card .badge-placeholder { display: block; height: 24px; margin-bottom: 16px; }
.web-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.web-card .price { font-size: 2.5rem; font-weight: 700; margin: 12px 0; letter-spacing: -1px; }
.web-card .price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.web-card ul { list-style: none; text-align: left; margin: 24px 0; }
.web-card ul li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.85rem; }
.web-card ul li i { color: var(--accent-success); font-size: 0.75rem; }
.web-card .btn-buy { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; }

.card-footer-note {
    margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border-color);
    font-size: 0.7rem; color: #888; line-height: 1.5; text-align: center;
}
.card-footer-note i { color: #999; margin-right: 4px; font-size: 0.65rem; }

/* Trial Card */
.trial-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid var(--accent-success); border-radius: 16px;
    padding: 32px 40px; margin-bottom: 40px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
}

.trial-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trial-banner::after {
    content: ''; position: absolute; bottom: -30%; left: 10%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trial-content { flex: 1; z-index: 1; }

.trial-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-success); color: #fff;
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.trial-badge i { font-size: 0.7rem; }

.trial-content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.trial-content h2 span { color: var(--accent-success); }
.trial-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; max-width: 500px; }

.trial-features { display: flex; flex-direction: column; gap: 8px; }
.trial-feature { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.875rem; }
.trial-feature i { color: var(--accent-success); font-size: 0.8rem; }
.trial-feature strong { color: var(--text-primary); font-weight: 600; }
.trial-sub-feature { padding-left: calc(0.8rem + 8px + 32px); margin-top: -4px; }

.trial-action { z-index: 1; text-align: center; min-width: 180px; }
.trial-action .price { font-size: 0.9rem; color: var(--accent-success); font-weight: 600; margin-bottom: 12px; }
.trial-action .price span { font-size: 2rem; font-weight: 700; }

.btn-trial {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-success); color: #fff;
    padding: 14px 28px; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}
.btn-trial:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); color: #fff; }
.btn-trial i { font-size: 0.85rem; }
.trial-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }

@media (max-width: 768px) {
    .trial-banner { flex-direction: column; text-align: center; padding: 24px; }
    .trial-content h2 { font-size: 1.4rem; }
    .trial-features { justify-content: center; }
    .trial-action { margin-top: 20px; }
}

/* Features Info */
.features-info {
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 24px; margin-top: 40px;
}
.features-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.features-info h3 i { color: var(--accent-warning); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.feature-item i { color: var(--accent-success); font-size: 0.75rem; }

/* FAQ */
.faq-section { padding: 60px 0; }
.faq-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; letter-spacing: -0.5px; }
.faq-grid { max-width: 700px; margin: 0 auto; }

.faq-item {
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}

.faq-question {
    padding: 16px 20px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 500; font-size: 0.9rem; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-tertiary); }
.faq-question i { color: var(--text-muted); transition: transform 0.2s; font-size: 0.8rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 20px; max-height: 0; overflow: hidden;
    transition: all 0.2s; color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6;
}
.faq-item.active .faq-answer { padding: 0 20px 16px; max-height: 200px; }

/* Footer */
.footer {
    padding: 32px 0; border-top: 1px solid var(--border-color);
    text-align: center; color: var(--text-muted); font-size: 0.85rem;
    margin-top: 48px;
}

/* API FAQ Styles */
.api-faq { border-color: var(--accent-primary) !important; }
.api-faq .faq-question { font-weight: 600; }
.api-answer { padding-top: 12px !important; }
.faq-item.active .api-answer { max-height: 1000px !important; }

.api-details {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px; margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.api-detail-item { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.api-detail-item .label { color: var(--text-muted); font-size: 0.8rem; }
.api-detail-item code {
    background: var(--bg-tertiary); padding: 4px 10px; border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem; color: var(--accent-primary);
}

.api-example { background: var(--bg-tertiary); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.api-example:last-child { margin-bottom: 0; }

.example-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem; color: var(--text-secondary);
}

.copy-btn {
    background: transparent; border: none; color: var(--text-muted);
    cursor: pointer; padding: 4px 8px; border-radius: 4px;
    transition: all 0.2s; font-size: 0.8rem;
}
.copy-btn:hover { background: var(--bg-secondary); color: var(--accent-primary); }

.api-example pre {
    padding: 14px; margin: 0; overflow-x: auto;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem; line-height: 1.6; color: var(--text-secondary);
    white-space: pre-wrap; word-wrap: break-word;
}

/* Trust Section */
.trust-section { padding: 40px 0; border-top: 1px solid var(--border-color); }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.8rem; }
.trust-badge i { font-size: 1rem; color: var(--text-secondary); }

/* Trial Modal Styles */
.trial-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    z-index: 1000; padding: 20px;
}
.trial-modal-overlay.active { display: flex; }

.trial-modal {
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: 20px; max-width: 700px; width: 100%;
    padding: 40px; position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.trial-modal-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--bg-tertiary); border: 1px solid var(--border-color);
    color: var(--text-muted); width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.trial-modal-close:hover { background: var(--accent-error); color: #fff; border-color: var(--accent-error); }

.trial-modal-header { text-align: center; margin-bottom: 32px; }
.trial-modal-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.trial-modal-header h2 span { color: var(--accent-success); }
.trial-modal-header p { color: var(--text-secondary); font-size: 0.9rem; }

.trial-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.trial-option {
    background: var(--bg-tertiary); border: 2px solid var(--border-color);
    border-radius: 16px; padding: 24px; text-align: center;
    cursor: pointer; transition: all 0.3s ease;
    text-decoration: none; color: inherit; 
    display: flex !important; flex-direction: column !important;
    height: 100%;
}
.trial-option:hover { border-color: var(--accent-primary); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
.trial-option.web:hover { border-color: var(--accent-success); }
.trial-option.api:hover { border-color: var(--accent-primary); }

.trial-option-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.5rem; flex-shrink: 0;
}
.trial-option.web .trial-option-icon { background: rgba(34, 197, 94, 0.15); color: var(--accent-success); }
.trial-option.api .trial-option-icon { background: rgba(59, 130, 246, 0.15); color: var(--accent-primary); }

.trial-option h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; flex-shrink: 0; }
.trial-option p { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 16px; flex-shrink: 0; }

.trial-option-features { text-align: left; margin-bottom: 24px; flex: 1 0 auto !important; }
.trial-option-features li { list-style: none; padding: 6px 0; font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.trial-option-features li i { font-size: 0.7rem; }
.trial-option.web .trial-option-features li i { color: var(--accent-success); }
.trial-option.api .trial-option-features li i { color: var(--accent-primary); }

.trial-option-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s;
    margin-top: auto !important; width: 100%;
}
.trial-option.web .trial-option-btn { background: var(--accent-success); color: #fff; }
.trial-option.api .trial-option-btn { background: var(--accent-primary); color: #fff; }
.trial-option:hover .trial-option-btn { transform: scale(1.05); }

/* ===== RESPONSIVE ===== */

/* Portrait: Menü ve hamburger tamamen gizli, diğer mobil stiller aktif */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hero h1 { font-size: 1.75rem; }
    .tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; padding: 10px 16px; }
    .pricing-card .price { font-size: 1.75rem; }
    .api-details { grid-template-columns: 1fr; }
}

/* Landscape: Hamburger görünür, menü gizli */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero h1 { font-size: 1.75rem; }
    .tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; padding: 10px 16px; }
    .pricing-card .price { font-size: 1.75rem; }
    .api-details { grid-template-columns: 1fr; }
}

/* Fallback: orientation desteklemeyen cihazlar için hamburger varsayılan olarak görünür */
@media screen and (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; padding: 10px 16px; }
    .pricing-card .price { font-size: 1.75rem; }
    .api-details { grid-template-columns: 1fr; }
}

/* Trial Modal Responsive */
@media (max-width: 600px) {
    .trial-modal { padding: 20px 16px; margin: 10px; max-height: 90vh; overflow-y: auto; }
    .trial-modal-header h2 { font-size: 1.25rem; }
    .trial-modal-header p { font-size: 0.85rem; }
    .trial-options { grid-template-columns: 1fr; gap: 16px; }
    .trial-option { padding: 20px 16px; }
    .trial-option-icon { width: 50px; height: 50px; font-size: 1.25rem; }
    .trial-option h3 { font-size: 1rem; }
    .trial-option-features li { font-size: 0.8rem; padding: 5px 0; }
    .trial-option-btn { padding: 10px 20px; font-size: 0.8rem; }
    .trial-modal-close { width: 32px; height: 32px; top: 12px; right: 12px; }
    .trial-modal-overlay { padding: 10px; align-items: flex-start; padding-top: 40px; }
}
