@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.vfx-urun {
    font-family: 'Inter', sans-serif;
    color: #1c2035;
    line-height: 1.6;
    font-size: 16px;
    --gr-brand: #4f8bdb;
    --gr-brand-dark: #1c2035;
    --gr-brand-light: #76aae7;
    --gr-tint: #d9e9fb;
    --gr-text-dark: #1c2035;
    --gr-text-mid: #555555;
    --gr-text-light: #8a93a6;
    --gr-bg: #ffffff;
    --gr-bg-alt: #f1f3fa;
    --gr-border: #e2e8f0;
    --gr-radius: 12px;
    --gr-radius-sm: 8px;
    --gr-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.05);
    --gr-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.08);
}

.vfx-urun *,
.vfx-urun *::before,
.vfx-urun *::after {
    box-sizing: border-box;
}

/* ── HERO ── */
.vfx-urun .gr-hero {
    background: linear-gradient(135deg, #15192b 0%, var(--gr-brand-dark) 45%, var(--gr-brand) 100%);
    padding: 50px 5% 90px;
    position: relative;
    overflow: hidden;
}

.vfx-urun .gr-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(79, 139, 219, 0.18);
}

.vfx-urun .gr-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.vfx-urun .gr-breadcrumb {
    margin-bottom: 36px;
}

.vfx-urun .gr-breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.vfx-urun .gr-breadcrumb li {
    color: rgba(255, 255, 255, 0.35);
}

.vfx-urun .gr-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.vfx-urun .gr-breadcrumb a:hover {
    color: #fff;
}

.vfx-urun .gr-breadcrumb .gr-current {
    color: rgba(255, 255, 255, 0.92);
}

.vfx-urun .gr-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vfx-urun .gr-hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gr-tint);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.vfx-urun .gr-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1px;
    margin: 0 0 24px;
}

.vfx-urun .gr-hero h1 em {
    color: var(--gr-tint);
    font-style: normal;
}

.vfx-urun .gr-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.65;
}

.vfx-urun .gr-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* HERO VISUAL / MOCK PANEL */
.vfx-urun .gr-hero-visual {
    position: relative;
}

.vfx-urun .gr-mock-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: 22px;
    position: relative;
    transform: rotate(1.5deg);
}

.vfx-urun .gr-mock-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.vfx-urun .gr-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.vfx-urun .gr-mock-title {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gr-text-mid);
}

.vfx-urun .gr-mock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: var(--gr-radius-sm);
    margin-bottom: 8px;
}

.vfx-urun .gr-mock-row:nth-child(even) {
    background: var(--gr-bg-alt);
}

.vfx-urun .gr-mock-avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gr-tint);
    color: var(--gr-brand);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vfx-urun .gr-mock-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vfx-urun .gr-mock-info strong {
    font-size: 14px;
    color: var(--gr-text-dark);
}

.vfx-urun .gr-mock-info span {
    font-size: 12px;
    color: var(--gr-text-light);
}

.vfx-urun .gr-mock-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.vfx-urun .gr-mock-badge-new {
    background: #dcfce7;
    color: #16a34a;
}

.vfx-urun .gr-mock-badge-progress {
    background: var(--gr-tint);
    color: var(--gr-brand);
}

.vfx-urun .gr-mock-badge-wait {
    background: #fef3c7;
    color: #d97706;
}

.vfx-urun .gr-mock-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--gr-shadow-hover);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gr-text-dark);
}

.vfx-urun .gr-mock-float-1 {
    top: -22px;
    right: 18px;
    transform: rotate(-2deg);
}

.vfx-urun .gr-mock-float-1 .gr-mock-icon {
    color: #22c55e;
}

.vfx-urun .gr-mock-float-2 {
    bottom: -24px;
    left: -18px;
    transform: rotate(2deg);
}

.vfx-urun .gr-mock-float-2 .gr-mock-icon {
    color: var(--gr-brand);
}

.vfx-urun .gr-mock-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

@media (max-width: 991px) {
    .vfx-urun .gr-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .vfx-urun .gr-hero-sub {
        margin: 0 auto 40px;
    }

    .vfx-urun .gr-hero-btns {
        justify-content: center;
    }

    .vfx-urun .gr-hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .vfx-urun .gr-breadcrumb ol {
        justify-content: center;
    }
}

.vfx-urun .gr-btn-primary {
    background: var(--gr-brand);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vfx-urun .gr-btn-primary:hover {
    background: #3d72bf;
    transform: translateY(-1px);
    color: #fff;
}

.vfx-urun .gr-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vfx-urun .gr-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ── STATS BAR ── */
.vfx-urun .gr-stats-bar {
    background: var(--gr-bg-alt);
    border-bottom: 1px solid var(--gr-border);
    padding: 32px 5%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.vfx-urun .gr-stat-item {
    text-align: center;
}

.vfx-urun .gr-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--gr-brand);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.vfx-urun .gr-stat-label {
    font-size: 13px;
    color: var(--gr-text-light);
}

/* ── SECTION COMMON ── */
.vfx-urun section {
    padding: 80px 5%;
}

.vfx-urun .gr-section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gr-brand);
    margin-bottom: 14px;
}

.vfx-urun .gr-section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--gr-text-dark);
    letter-spacing: -0.6px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.vfx-urun .gr-section-sub {
    font-size: 17px;
    color: var(--gr-text-mid);
    max-width: 580px;
    line-height: 1.65;
}

.vfx-urun .gr-section-header {
    margin-bottom: 52px;
}

.vfx-urun .gr-section-header.center {
    text-align: center;
}

.vfx-urun .gr-section-header.center .gr-section-sub {
    margin: 0 auto;
}

/* ── FEATURES GRID ── */
.vfx-urun .gr-features-bg {
    background: var(--gr-bg);
}

.vfx-urun .gr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.vfx-urun .gr-feature-card {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 28px 26px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.vfx-urun .gr-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gr-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vfx-urun .gr-feature-card:hover {
    box-shadow: var(--gr-shadow-hover);
    transform: translateY(-3px);
}

.vfx-urun .gr-feature-card:hover::before {
    transform: scaleX(1);
}

.vfx-urun .gr-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gr-bg-alt);
    border-radius: var(--gr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.2s, transform 0.2s;
}

.vfx-urun .gr-feature-card:hover .gr-feature-icon {
    background: var(--gr-brand);
    transform: scale(1.08);
}

.vfx-urun .gr-feature-card:hover .gr-feature-icon svg {
    stroke: #fff;
}

.vfx-urun .gr-feature-card.wow:nth-child(2) { animation-delay: 0.05s; }
.vfx-urun .gr-feature-card.wow:nth-child(3) { animation-delay: 0.1s; }
.vfx-urun .gr-feature-card.wow:nth-child(4) { animation-delay: 0.15s; }
.vfx-urun .gr-feature-card.wow:nth-child(5) { animation-delay: 0.2s; }
.vfx-urun .gr-feature-card.wow:nth-child(6) { animation-delay: 0.25s; }
.vfx-urun .gr-feature-card.wow:nth-child(7) { animation-delay: 0.3s; }
.vfx-urun .gr-feature-card.wow:nth-child(8) { animation-delay: 0.35s; }
.vfx-urun .gr-feature-card.wow:nth-child(9) { animation-delay: 0.4s; }
.vfx-urun .gr-feature-card.wow:nth-child(10) { animation-delay: 0.45s; }
.vfx-urun .gr-feature-card.wow:nth-child(11) { animation-delay: 0.5s; }
.vfx-urun .gr-feature-card.wow:nth-child(12) { animation-delay: 0.55s; }

.vfx-urun .gr-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gr-brand);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vfx-urun .gr-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gr-text-dark);
}

.vfx-urun .gr-feature-card p {
    font-size: 14px;
    color: var(--gr-text-mid);
    line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.vfx-urun .gr-how-bg {
    background: var(--gr-bg-alt);
}

.vfx-urun .gr-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.vfx-urun .gr-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
}

.vfx-urun .gr-step-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--gr-border);
}

.vfx-urun .gr-step-item:last-child {
    border-bottom: none;
}

.vfx-urun .gr-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gr-brand);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vfx-urun .gr-step-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vfx-urun .gr-step-content p {
    font-size: 15px;
    color: var(--gr-text-mid);
    line-height: 1.65;
}

.vfx-urun .gr-how-card {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: 36px;
    box-shadow: var(--gr-shadow);
}

.vfx-urun .gr-how-card .gr-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--gr-brand);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vfx-urun .gr-how-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vfx-urun .gr-how-card p {
    color: var(--gr-text-mid);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.vfx-urun .gr-how-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vfx-urun .gr-how-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gr-text-mid);
}

.vfx-urun .gr-how-card li span {
    color: #22c55e;
    font-size: 18px;
}

@media (max-width: 900px) {
    .vfx-urun .gr-how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── COMPARISON TABLE ── */
.vfx-urun .gr-comparison-bg {
    background: #fff;
}

.vfx-urun .gr-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--gr-radius);
    overflow: hidden;
    box-shadow: var(--gr-shadow);
}

.vfx-urun .gr-comparison-table thead tr {
    background: var(--gr-brand);
    color: #fff;
}

.vfx-urun .gr-comparison-table thead th {
    padding: 18px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.vfx-urun .gr-comparison-table th:first-child,
.vfx-urun .gr-comparison-table td:first-child {
    width: 22%;
}

.vfx-urun .gr-comparison-table th:nth-child(2),
.vfx-urun .gr-comparison-table td:nth-child(2) {
    width: 36%;
}

.vfx-urun .gr-comparison-table th:nth-child(3),
.vfx-urun .gr-comparison-table td:nth-child(3) {
    width: 42%;
}

.vfx-urun .gr-comparison-table thead th:nth-child(3) {
    background: var(--gr-brand-dark);
}

.vfx-urun .gr-comparison-table tbody tr:nth-child(even) {
    background: var(--gr-bg-alt);
}

.vfx-urun .gr-comparison-table tbody tr:nth-child(even) td:nth-child(3) {
    background: var(--gr-tint);
}

.vfx-urun .gr-comparison-table tbody td {
    padding: 16px 24px;
    font-size: 14px;
    color: var(--gr-text-mid);
    border-bottom: 1px solid var(--gr-border);
    vertical-align: middle;
}

.vfx-urun .gr-comparison-table tbody td:nth-child(3) {
    background: rgba(217, 233, 251, 0.4);
    color: var(--gr-brand-dark);
    font-weight: 600;
}

.vfx-urun .gr-tick {
    color: #22c55e;
    font-size: 18px;
    margin-right: 6px;
}

.vfx-urun .gr-cross {
    color: #ef4444;
    font-size: 18px;
    margin-right: 6px;
}

/* ── FAQ ── */
.vfx-urun .gr-faq-bg {
    background: var(--gr-bg-alt);
}

.vfx-urun .gr-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vfx-urun .gr-faq-item {
    background: #fff;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius-sm);
    padding: 4px 24px;
}

.vfx-urun .gr-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--gr-text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vfx-urun .gr-faq-item summary::-webkit-details-marker {
    display: none;
}

.vfx-urun .gr-faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--gr-brand);
    transition: transform 0.2s;
}

.vfx-urun .gr-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.vfx-urun .gr-faq-item p {
    font-size: 14px;
    color: var(--gr-text-mid);
    line-height: 1.7;
    padding-bottom: 20px;
    margin: 0;
}

/* ── CTA SECTION ── */
.vfx-urun .gr-cta-section {
    background: var(--gr-bg-alt);
    text-align: center;
    padding: 100px 5%;
}

.vfx-urun .gr-cta-section .gr-section-title {
    max-width: 600px;
    margin: 0 auto 16px;
}

.vfx-urun .gr-cta-section .gr-section-sub {
    margin: 0 auto 40px;
}

.vfx-urun .gr-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.vfx-urun .gr-btn-brand {
    background: var(--gr-brand);
    color: #fff;
    padding: 15px 34px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.vfx-urun .gr-btn-brand:hover {
    background: var(--gr-brand-light);
    transform: translateY(-1px);
    color: #fff;
}

.vfx-urun .gr-btn-accent {
    background: var(--gr-brand-dark);
    color: #fff;
    padding: 15px 34px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.vfx-urun .gr-btn-accent:hover {
    background: #2c3454;
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .vfx-urun .gr-stats-bar {
        gap: 28px;
    }

    .vfx-urun .gr-step-item {
        gap: 18px;
    }

    .vfx-urun .gr-comparison-table thead th,
    .vfx-urun .gr-comparison-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
}
