/* ===== CSS Variables ===== */
:root {
    --primary-yellow: #06B6D4;
    --primary-blue: #8B5CF6;
    --dark-bg: #0A0E27;
    --light-bg: #F8F9FA;
    --text-dark: #1A202C;
    --text-light: #718096;
    --text-gray: #718096;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-600: #4A5568;
    --gray-800: #2D3748;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Critical Above-the-fold CSS (inline'dan taşındı) ===== */
@font-face {
    font-family: 'Inter-fallback';
    src: local('Arial');
    size-adjust: 106.5%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: local('Inter'), local('Inter-Regular');
}

/* Noscript image utility */
.noscript-hidden-img {
    position: absolute;
    left: -9999px;
}

/* Aspect ratio utilities */
.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}

/* Image display utilities */
.img-cover-full {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    contain: layout;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--primary-blue);
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 5px;
    transition: var(--transition);
}

.legal-page {
    padding-top: 10rem !important;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gray-300);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0FE 100%);
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.08));
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    animation-delay: 7s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hero Content */
.hero-content-new {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item svg {
    color: #FBBF24;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(139, 92, 246, 0.2);
}

/* Hero Title */
.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle-new {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.hero-subtitle-new strong {
    color: #8B5CF6;
    font-weight: 700;
}

/* Feature Badges */
.hero-feature-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.feature-badge svg {
    color: #10B981;
    flex-shrink: 0;
}

/* Price Box */
.hero-price-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    padding: 1.75rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.price-old {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-old .price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-old .price-amount {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 700;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.price-current .price-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 700;
}

.price-current .price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: white;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.btn-price-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-price-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-price-details:hover::before {
    left: 100%;
}

.btn-price-details:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-price-details svg {
    transition: transform 0.3s ease;
}

.btn-price-details:hover svg {
    transform: translateX(3px);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    border: 3px solid white;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar svg {
    width: 20px;
    height: 20px;
    color: white;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    border: 3px solid white;
    margin-left: -12px;
}

.social-proof-text {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.social-proof-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.social-proof-rating {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.btn-hero-call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-call:hover::before {
    left: 100%;
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(59, 130, 246, 0.5);
}

.btn-hero-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-whatsapp:hover::before {
    left: 100%;
}

.btn-hero-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.5);
}

.btn-hero-offer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #E4A843 0%, #D4941F 100%);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(228, 168, 67, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-offer:hover::before {
    left: 100%;
}

.btn-hero-offer:hover {
    background: linear-gradient(135deg, #D4941F 0%, #c5850e 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(228, 168, 67, 0.5);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 1rem 0;
    background: white;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
}

.partners-subtitle {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
    padding: 1rem 0;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 140px;
    height: 60px;
}

.partner-logo:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 40px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Partners Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-logo {
        padding: 0.75rem 1.5rem;
        min-width: 120px;
        height: 50px;
    }

    .partner-text {
        font-size: 0.8rem;
    }
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    contain: layout;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 5px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), #6D28D9);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 5rem 0 6rem;
    /* background: var(--white); */
    position: relative;
    overflow: hidden;
    contain: layout;
}

.pricing .container {
    max-width: 1300px;
}

/* Tek Paket Tasarımı */
.single-pricing-card {
    background: var(--white);
    border-radius: 5px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 4rem;
    align-items: start;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)),
        linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: var(--transition);
    position: relative;
    margin-top: 2rem;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
    }
}

.single-pricing-card:hover {
    box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
}

/* Sol Taraf */
.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-image {
    width: 220px;
    height: 220px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.3);
    position: relative;
    transition: var(--transition);
    contain: layout;
    aspect-ratio: 1 / 1;
}

.pricing-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.4);
}

.pricing-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-package-name {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-slogan {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.pricing-price-box {
    width: 100%;
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 5px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    position: relative;
}

.pricing-price-box::before {
    content: '🎉 Özel İndirim';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F3EEFE;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.35rem 1rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: none;
}

.pricing-old-price {
    position: relative;
    margin-bottom: 0.75rem;
}

.pricing-old-price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
}

.pricing-old-price .old-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.pricing-new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-new-price .currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-new-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.pricing-new-price .period {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    flex-shrink: 0;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Sağ Taraf */
.pricing-right {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.pricing-features-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1.25rem 0;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)),
        linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.pricing-features-title::before {
    content: '✨';
    margin-right: 0.5rem;
}

/* Package Section Styles */
.package-section {
    margin-bottom: 2.5rem;
}

.package-section:last-child {
    margin-bottom: 0;
}

.package-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-left: 4px solid transparent;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-left-width: 4px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}

.package-subtitle::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    border-radius: 0 2px 2px 0;
}

.package-subtitle:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.status-badge {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 15px;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.pricing-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
}

.pricing-features-columns li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.975rem;
    padding: 0.75rem;
    border-radius: 5px;
    transition: var(--transition);
    background: transparent;
}

.pricing-features-columns li:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(5px);
}

.pricing-features-columns li.included {
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-features-columns li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: white;
    width: 22px;
    height: 22px;
    padding: 3px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    animation: checkPulse 2s infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.pricing-features-columns li svg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pricing-features-columns li:hover svg {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    animation: checkPulse 1s infinite;
}

.pricing-features-columns li:hover svg::before {
    left: 100%;
}

@keyframes checkPulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 2px 16px rgba(16, 185, 129, 0.6), 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
}

/* Eski pricing stilleri (gerekirse başka sayfalar için) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 5px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-price .period {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    position: relative;
    cursor: help;
}

.pricing-features li[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    background-color: var(--text-dark);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    font-size: 0.875rem;
    white-space: normal;
    max-width: 250px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: tooltipFadeIn 0.2s ease-out;
}

.pricing-features li[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 100%;
    margin-top: 0.25rem;
    border: 5px solid transparent;
    border-bottom-color: var(--text-dark);
    z-index: 1001;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-blue);
}

.pricing-features li.included {
    color: var(--text-dark);
}

.pricing-features li.not-included {
    color: #C5C5C5;
    text-decoration: line-through;
}

.pricing-features li.not-included svg {
    stroke: #ef4444;
    opacity: 0.5;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #FFF9E6;
    border: 2px solid #FFC107;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pricing-note-icon {
    flex-shrink: 0;
    color: #F57C00;
}

.pricing-note-icon svg {
    display: block;
}

.pricing-note-content {
    flex: 1;
}

.pricing-note-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-note-content p {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 6rem 0;
    background: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-blue);
    transition: var(--transition);
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
/* ===== CTA Section ===== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #7C3AED 100%);
    background-size: 200% 200%;
    animation: ctaGradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-background-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(6, 182, 212, 0.08));
    animation: ctaFloat 20s ease-in-out infinite;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -80px;
    animation-delay: 7s;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    animation-delay: 14s;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    66% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon-badge {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-icon-badge svg {
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-subtitle strong {
    color: #FBBF24;
    font-weight: 700;
}

.cta-value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cta-value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-value-item svg {
    flex-shrink: 0;
    color: #10B981;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--primary-blue);
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(3px);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta-whatsapp:hover::before {
    left: 100%;
}

.btn-cta-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.5);
}

.cta-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-trust-item {
    text-align: center;
}

.cta-trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
    }

    .cta-value-props {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .cta-divider {
        width: 100%;
        height: 1px;
    }

    .cta-icon-badge {
        width: 72px;
        height: 72px;
    }
}

/* ===== Contact Section ===== */
/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0FE 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Left - Benefits & Quick Actions */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-benefits {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 5px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-benefits h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #10B981;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Quick Actions */
.contact-quick-actions {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 5px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-quick-actions h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.quick-action-btn:last-child {
    margin-bottom: 0;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(37, 211, 102, 0.5);
}

.phone-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.phone-btn:hover::before {
    left: 100%;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #6D28D9 0%, #5b21b6 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(139, 92, 246, 0.5);
}

.quick-action-btn svg {
    flex-shrink: 0;
}

.quick-action-btn div {
    text-align: left;
}

.quick-action-btn strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quick-action-btn span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Contact Form New */
.contact-form-new {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(139, 92, 246, 0.15);
}

.form-header-new {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.form-header-new h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header-new p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-new {
    margin-bottom: 1.25rem;
}

.form-group-new label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #9CA3AF;
}

.form-group-new textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.2em;
}

.form-checkbox-group span {
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
}

.form-checkbox-group a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox-group a:hover {
    text-decoration: underline;
}

.btn-form-submit-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    font-family: inherit;
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-form-submit-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-form-submit-new:hover::before {
    left: 100%;
}

.btn-form-submit-new:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #0891B2 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-form-submit-new svg {
    transition: transform 0.3s ease;
}

.btn-form-submit-new:hover svg {
    transform: translateX(3px);
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-scrol-top-btn-wrap {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
    z-index: 999;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    width: 4rem;
    height: 4rem;
    background: #25D366;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.whatsapp-float:hover::before {
    left: 100%;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa855 100%);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(37, 211, 102, 0.5);
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
    width: 3rem;
    height: 3rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #6D28D9;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content-new {
        gap: 3rem;
    }

    .hero-title-new {
        font-size: 3rem;
    }

    .hero-subtitle-new {
        font-size: 1.125rem;
    }

    .price-current .price-amount {
        font-size: 3rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .hero-content-new {
        gap: 2rem;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left-column {
        display: contents;
    }

    .hero-right-column {
        display: contents;
    }

    .hero-title-new {
        order: 1;
        font-size: 2.25rem;
        text-align: center;
    }

    .hero-price-box {
        order: 2;
        padding: 1.5rem;
    }

    .hero-cta-buttons {
        order: 3;
        grid-template-columns: 1fr;
    }

    .hero-subtitle-new {
        order: 4;
        font-size: 1rem;
        text-align: center;
    }

    .hero-social-proof {
        order: 5;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .hero-trust-bar {
        order: 6;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .hero-feature-badges {
        gap: 0.75rem;
    }

    .feature-badge {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }

    .price-current .price-amount {
        font-size: 2.5rem;
    }

    .btn-hero-call,
    .btn-hero-whatsapp,
    .btn-hero-offer {
        width: 100%;
        justify-content: center;
    }

    .social-proof-text {
        text-align: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Tek Paket Mobil Uyumluluk */
    .single-pricing-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
    }

    .pricing-image {
        width: 180px;
        height: 180px;
    }

    .pricing-features-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-package-name {
        font-size: 1.6rem;
    }

    .pricing-new-price .amount {
        font-size: 2.75rem;
    }

    .pricing-features-title {
        font-size: 1.4rem;
    }

    .package-subtitle {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .package-section {
        margin-bottom: 2rem;
    }

    .btn-whatsapp {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-new {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-action-btn {
        padding: 1rem 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-trust-bar {
        padding: 0.875rem 1rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .hero-title-new {
        font-size: 1.875rem;
    }

    .hero-subtitle-new {
        font-size: 0.9375rem;
    }

    .feature-badge {
        font-size: 0.8125rem;
        padding: 0.6rem 0.875rem;
    }

    .hero-price-box {
        padding: 1.25rem;
    }

    .price-current .price-amount {
        font-size: 2.25rem;
    }

    .price-badge {
        font-size: 0.875rem;
        padding: 0.4rem 0.875rem;
    }

    .btn-price-details {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-price-details svg {
        width: 16px;
        height: 16px;
    }

    .hero-cta-buttons {
        gap: 0.75rem;
    }

    .btn-hero-call,
    .btn-hero-whatsapp,
    .btn-hero-offer {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .avatar,
    .avatar-more {
        width: 35px;
        height: 35px;
    }

    .social-proof-text {
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-item dt {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .features-highlight-text {
        padding: 0.875rem 1.25rem;
        margin-top: 1.25rem;
    }

    .features-highlight-text p {
        font-size: 0.875rem;
    }

    .contact-benefits,
    .contact-quick-actions {
        padding: 1.5rem;
    }

    .contact-benefits h3,
    .contact-quick-actions h3 {
        font-size: 1.25rem;
    }

    .benefit-item strong {
        font-size: 0.875rem;
    }

    .benefit-item p {
        font-size: 0.8125rem;
    }

    .quick-action-btn {
        padding: 1rem;
    }

    .quick-action-btn strong {
        font-size: 0.9rem;
    }

    .quick-action-btn span {
        font-size: 0.8125rem;
    }

    .contact-form-new {
        padding: 1.5rem;
    }

    .form-header-new h3 {
        font-size: 1.4rem;
    }

    .form-header-new p {
        font-size: 0.875rem;
    }

    .btn-form-submit-new {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta-icon-badge {
        width: 64px;
        height: 64px;
    }

    .cta-icon-badge svg {
        width: 32px;
        height: 32px;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-value-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .cta-value-item svg {
        width: 16px;
        height: 16px;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .cta-trust-number {
        font-size: 1.5rem;
    }

    .cta-trust-label {
        font-size: 0.8125rem;
    }

    /* Tek Paket Çok Küçük Ekranlar */
    .single-pricing-card {
        padding: 1.5rem;
    }

    .pricing-image {
        width: 150px;
        height: 150px;
    }

    .pricing-package-name {
        font-size: 1.25rem;
    }

    .pricing-new-price .amount {
        font-size: 2rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===== Scroll Animations ===== */
@media (prefers-reduced-motion: no-preference) {

    .service-card,
    .pricing-card,
    .why-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .service-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .service-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .pricing-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .pricing-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pricing-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .why-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .why-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .why-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .why-card:nth-child(4) {
        animation-delay: 0.4s;
    }
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 6rem 0;
    background: var(--light-bg);
    contain: layout;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: #f8fafc;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: solid 1px #f2f2f2;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    height: 230px;
    width: 100%;
    overflow: hidden;
    position: relative;
    contain: layout;
    aspect-ratio: 4 / 3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
    display: block;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-image.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-image.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-image.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.portfolio-image.gradient-teal {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.portfolio-image.gradient-peach {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.portfolio-details {
    padding: 1.5rem;
}

.portfolio-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.portfolio-details>p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.875rem;
}

.portfolio-tag.tag-blue {
    background: #E0E7FF;
    color: #4F46E5;
}

.portfolio-tag.tag-red {
    background: #FEE2E2;
    color: #DC2626;
}

.portfolio-tag.tag-sky {
    background: #DBEAFE;
    color: #1D4ED8;
}

.portfolio-tag.tag-amber {
    background: #FEF3C7;
    color: #D97706;
}

.portfolio-tag.tag-green {
    background: #D1FAE5;
    color: #059669;
}

.portfolio-tag.tag-pink {
    background: #FCE7F3;
    color: #BE185D;
}

.portfolio-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.portfolio-stats p {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: #0891B2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

/* ===== Legal Pages ===== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #4a5568;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page .update-date {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page strong {
    color: #2d3748;
}

.legal-page a {
    color: #667eea;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.noscript-hidden {
    display: none;
    visibility: hidden;
}

.footer-copyright-link {
    color: var(--primary-blue);
    font-weight: 600;
}

.footer-copyright-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.btn-loading-hidden {
    display: none;
}

/* ===== Utility Classes ===== */
.text-gray {
    color: var(--text-gray);
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .whatsapp-float,
    .btn,
    .hero-cta {
        display: none;
    }

    .hero {
        padding: 2rem 0;
    }

    * {
        background: white !important;
        color: black !important;
    }
}

.thank-wrap {
    min-height: calc(100vh - 160px);
    display: grid;
    place-items: center;
    padding: 120px 24px 60px;
}

.thank-card {
    width: 100%;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.thank-title {
    margin: 0 0 8px;
    font-size: 32px;
    color: var(--text-dark);
    text-align: center;
}

.thank-text {
    margin: 0 0 16px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.thank-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 16px;
    align-items: center;
    width: 100%;
}

.thank-actions a {
    flex: 0 0 calc(50% - 6px);
    justify-content: center;
    text-align: center;
}

.btn-hero-whatsapp,
.btn-price-details {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
}

.thank-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.thank-badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-dark);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .thank-wrap {
        padding: 110px 16px 50px;
    }

    .thank-card {
        padding: 24px;
    }

    .thank-actions {
        flex-direction: column;
    }

    .thank-actions a {
        flex: 0 0 100%;
        width: 100%;
    }
}

.space-height {
    margin: 1.5rem 0;
    border: solid 1px rgba(139, 92, 246, 0.12);
}