* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #022c22;
    color: #ecfdf5;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Yan sayfalarda nav/CTA linkleri buton gibi görünsün */
a.btn-package {
    text-decoration: none !important;
    color: #ecfdf5;
}
a.btn-package:hover {
    color: #34d399;
}
a.btn-primary-large {
    color: #fff !important;
    text-decoration: none !important;
}
a.btn-primary-large:hover {
    color: #fff;
}

/* ========== YAN SAYFALAR (Rehber, Türkiye, Avrupa, 4K) ========== */
.welcome-screen {
    min-height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #022c22 0%, #064e3b 50%, #022c22 100%);
    padding-bottom: 2rem;
}

.welcome-screen .animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.welcome-screen .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.welcome-screen .orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #34d399);
    top: -150px;
    left: -150px;
}

.welcome-screen .orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    bottom: -100px;
    right: -100px;
}

.welcome-screen .orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.welcome-screen .welcome-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.welcome-screen .brand-logo {
    margin-bottom: 1.25rem;
}

.welcome-screen .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
}

.welcome-screen .logo-text span {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    font-size: 2.25rem;
}

.welcome-screen .brand-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.welcome-screen .title-line {
    color: #fff;
}

.welcome-screen .title-gradient {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-screen .brand-subtitle {
    color: #a1a1aa;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.welcome-screen .package-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.welcome-screen .btn-package {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e4e4e7;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.welcome-screen .btn-package:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.5);
    color: #34d399;
}

.welcome-screen .btn-primary-large {
    background: linear-gradient(135deg, #10b981, #34d399);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.welcome-screen .btn-primary-large:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.welcome-screen .welcome-footer {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.welcome-screen .footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-screen .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.welcome-screen .footer-nav a {
    color: #a1a1aa;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.welcome-screen .footer-nav a:hover {
    color: #34d399;
}

.welcome-screen .footer-nav span {
    color: #52525b;
    font-size: 0.75rem;
    user-select: none;
}

.welcome-screen .footer-copy {
    color: #71717a;
    font-size: 0.8rem;
    margin: 0;
}

/* Yan sayfa beyaz içerik kutusu - ortada, tüm köşeler yuvarlak */
.subpage-content {
    display: block;
    width: 100%;
    max-width: 900px;
    margin-top: 2.5rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 1.5rem;
    background: #fff;
    color: #1f2937;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}
@media (min-width: 640px) {
    .subpage-content {
        padding: 2.5rem 2rem;
    }
}

.subpage-content article,
.subpage-content .article-inner {
    line-height: 1.8;
}

.subpage-content h2 {
    color: #10b981;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #10b981;
}

.subpage-content h3 {
    color: #c2410c;
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.subpage-content p {
    margin-bottom: 1rem;
    color: #374151;
}

.subpage-content a {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
}

.subpage-content a:hover {
    text-decoration: underline;
}

.subpage-content .cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Yan sayfa içindeki CTA butonları - header ile aynı görünüm */
.subpage-content .btn-package {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e4e4e7;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.subpage-content .btn-package:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.5);
    color: #34d399;
}
.subpage-content .btn-primary-large {
    background: linear-gradient(135deg, #10b981, #34d399);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.subpage-content .btn-primary-large:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

/* ========== HERO ========== */
.page {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4rem;
    background: linear-gradient(180deg, #022c22 0%, #064e3b 50%, #022c22 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-inner {
    max-width: 640px;
    text-align: center;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a1a1aa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.stat {
    font-size: 0.95rem;
    color: #71717a;
}

.stat strong {
    color: #34d399;
    font-weight: 600;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-main {
    display: inline-block;
    background: #10b981;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cta-main:hover {
    background: #059669;
    transform: translateY(-1px);
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.link-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #a1a1aa;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s;
}

.link-pill:hover {
    color: #34d399;
    border-color: rgba(52,211,153,0.4);
}

/* ========== PLANS ========== */
.plans {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plans-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.plans-desc {
    font-size: 1rem;
    color: #71717a;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.plan-card {
    background: #065f46;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
    border-color: rgba(6,182,212,0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.plan-popular {
    border-color: rgba(6,182,212,0.4);
    background: linear-gradient(180deg, #064e3b 0%, #065f46 100%);
}

.plan-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan-list {
    list-style: none;
    flex: 1;
    margin-bottom: 1.25rem;
}

.plan-list li {
    font-size: 0.9rem;
    color: #a1a1aa;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.plan-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #71717a;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e4e4e7;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.plan-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
}

.plan-btn-strong {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.plan-btn-strong:hover {
    background: #059669;
    border-color: #059669;
}

/* ========== BLOG ========== */
.blog {
    padding: 4rem 1.5rem 5rem;
    background: #022c22;
}

.blog-inner {
    max-width: 680px;
    margin: 0 auto;
    background: #065f46;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.blog-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #10b981;
}

.blog-p {
    font-size: 1rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.blog-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #34d399;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.blog-article a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.blog-article a:hover {
    text-decoration: underline;
}

.blog-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-cta {
    display: inline-block;
    background: #10b981;
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.blog-cta:hover {
    background: #059669;
    text-decoration: none !important;
}

/* ========== FOOTER ========== */
.site-footer {
    margin-top: auto;
    padding: 2.5rem 1.5rem;
    background: #01201a;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer-slogan {
    font-size: 0.95rem;
    color: #71717a;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #a1a1aa;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #34d399;
}

.footer-nav a:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.footer-sep {
    color: #3f3f46;
    font-size: 0.75rem;
    user-select: none;
}

.footer-copy {
    font-size: 0.85rem;
    color: #52525b;
    margin-bottom: 0.35rem;
}

.footer-copy small {
    font-size: inherit;
}

.footer-meta {
    font-size: 0.8rem;
    color: #3f3f46;
}

/* ========== SKIP LINK (Accessibility) ========== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #10b981;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 6px;
}

/* ========== HERO ENHANCEMENTS ========== */
.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #71717a;
}

.breadcrumb a {
    color: #a1a1aa;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #34d399;
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-sep {
    color: #52525b;
    font-size: 0.8rem;
}

.hero-packages {
    padding: 2.5rem 1.5rem 3rem;
}

.hero-packages .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 800px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.feature-text span {
    color: #71717a;
    font-size: 0.8rem;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 0.5rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    font-size: 0.8rem;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ========== PLANS ENHANCEMENTS ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-duration {
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 0.25rem;
}

.plan-footer {
    margin-top: auto;
}

.plan-tag-gold {
    background: linear-gradient(135deg, #059669, #047857);
}

.plan-btn-gold {
    background: linear-gradient(135deg, #059669, #10b981);
    border-color: #10b981;
    color: #fff;
}

.plan-btn-gold:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

.plan-best-value {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(180deg, #064e3b 0%, #065f46 100%);
}

.plans-features {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plans-features h3 {
    color: #a1a1aa;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.features-grid span {
    font-size: 0.85rem;
    color: #71717a;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ========== CONTENT SECTIONS ========== */
.content-sections {
    background: #01201a;
}

.content-block {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-block:last-child {
    border-bottom: none;
}

.content-block .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.content-block .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block .blog-p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    margin-bottom: 1.25rem;
}

.content-block .blog-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #34d399;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.content-block a {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
}

.content-block a:hover {
    text-decoration: underline;
}

.content-block .blog-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.content-block .blog-cta {
    display: inline-block;
    background: #10b981;
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.content-block .blog-cta:hover {
    background: #059669;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #71717a;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    color: #a1a1aa;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #38ef7d;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    color: #a1a1aa;
    padding: 0.75rem 0;
    line-height: 1.5;
}

.setup-list {
    list-style: none;
    margin: 1.5rem 0;
    counter-reset: step-counter;
}

.setup-list li {
    counter-increment: step-counter;
    color: #a1a1aa;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.setup-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #10b981;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.tech-specs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-item strong {
    color: #34d399;
    font-size: 0.9rem;
}

.spec-item span {
    color: #a1a1aa;
    font-size: 0.85rem;
}

.quality-info {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.quality-info h3 {
    color: #34d399;
    margin-bottom: 1rem;
}

.article-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cta-note {
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 0.75rem;
}

/* ========== PAKETLER SAYFASI: FAQ & CTA ========== */
.packages-page-grid {
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-block {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
}

.cta-block .section-intro {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e4e4e7;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-secondary:hover {
    border-color: #34d399;
    color: #34d399;
}

/* ========== FAQ BÖLÜMÜ ========== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.faq-question {
    color: #34d399;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0;
}

/* ========== ÖZELLİKLER DETAY ========== */
.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-detailed {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-detailed:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.feature-detailed h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-detailed p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem 1rem 3rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .plans {
        padding: 3rem 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .plan-popular {
        order: -1;
    }
    
    .content-block {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        padding: 2rem 1rem;
    }
}
