/* Obsidia Digital - Ana Stil Dosyası */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #01314a;
    --primary-dark: #012339;
    --secondary: #024d73;
    --accent: #FF6B35;
    --dark: #1A1A2E;
    --darker: #0f0f1e;
    --light: #F8F9FA;
    --border: #E8EBF0;
    --text: #2D3748;
    --text-light: #718096;
    --success: #10B981;
    --gradient-1: linear-gradient(135deg, #01314a 0%, #012339 100%);
    --gradient-2: linear-gradient(135deg, #024d73 0%, #01314a 100%);
    --gradient-3: linear-gradient(135deg, #01314a 0%, #024d73 100%);
    --gradient-blue: linear-gradient(135deg, #01314a 0%, #024d73 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hide pages */

.page.active { display: block !important; animation: fadeIn 0.4s ease; }
#packages.page.active .packages-grid { display: grid !important; visibility: visible !important; }
#packages .packages { min-height: 400px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Campaign Banner */
.campaign-banner {
    background: var(--gradient-blue);
    color: white;
    padding: 14px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.campaign-banner__marquee {
    overflow: hidden;
    width: 100%;
}

.campaign-banner__track {
    display: flex;
    width: max-content;
    animation: campaign-marquee 28s linear infinite;
}

.campaign-banner__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.campaign-banner__group span {
    white-space: nowrap;
    flex-shrink: 0;
}

.campaign-banner__group span::before {
    content: '✦';
    margin-right: 1.25rem;
    opacity: 0.85;
}

@keyframes campaign-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-banner__track {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .campaign-banner__group[aria-hidden="true"] {
        display: none;
    }

    .campaign-banner__group {
        padding-right: 0;
        gap: 0;
    }

    .campaign-banner__group span:not(:first-child) {
        display: none;
    }
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    to { left: 100%; }
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    margin-top: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-dropdown a::after {
    display: none !important;
}

.nav-dropdown a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 24px;
}

.nav-dropdown--cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    left: 50%;
    min-width: 520px;
    max-width: 580px;
    padding: 12px 8px;
    column-gap: 4px;
    transform: translateX(-50%) translateY(-10px);
}

.nav-item:hover .nav-dropdown--cols-2 {
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown--cols-2 a {
    padding: 10px 16px;
    font-size: 13px;
    line-height: 1.35;
    border-radius: 8px;
}

.nav-link-with-dropdown::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link-with-dropdown::after {
    transform: rotate(180deg);
}

/* Kurumsal Mega Menu */
.nav-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 16px 16px;
    padding: 0;
    min-width: 720px;
    max-width: 900px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-item-mega:hover .nav-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    min-height: 320px;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 24px;
}

.megamenu-link {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s;
    border-radius: 10px;
}

.megamenu-link:hover {
    background: var(--light);
    color: var(--primary);
}

.megamenu-link-icon {
    width: 36px;
    height: 36px;
    background: rgba(1, 49, 74, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 18px;
}

.megamenu-link-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.megamenu-link-subtitle {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.megamenu-featured {
    background: linear-gradient(180deg, #024d73 0%, #01314a 50%, #012339 100%);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.megamenu-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.megamenu-featured-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.megamenu-featured-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.megamenu-featured-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.megamenu-featured .btn {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.megamenu-featured .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav-footer {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.lang-switcher__link {
    color: var(--text-light);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
}

.lang-switcher__link:hover,
.lang-switcher__link.is-active {
    color: var(--primary);
}

.lang-switcher__link.is-active {
    background: rgba(1, 49, 74, 0.08);
}

.lang-switcher__sep {
    color: var(--border);
    user-select: none;
}

.phone {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone::before {
    content: '📞';
}

.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 14px rgba(1, 49, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 74, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 14px;
}

.cta .btn,
.btn-cta-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta .btn:hover,
.btn-cta-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(1, 49, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-grid > * {
    min-width: 0;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.trust-section {
    margin-top: 48px;
}

.trust-section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 24px;
    line-height: 1.3;
}

.marketplace-carousel-wrap {
    max-width: 100%;
}

.marketplace-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.marketplace-carousel .owl-item {
    display: flex;
}

.marketplace-item {
    background: white;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    width: 100%;
}

.marketplace-item img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.marketplace-carousel .owl-item:hover .marketplace-item {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.marketplace-carousel.owl-carousel .owl-dots,
.marketplace-carousel.owl-carousel .owl-nav {
    display: none;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-mockup {
    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mockup-content {
    position: relative;
    width: 100%;
    height: clamp(220px, 32vw, 400px);
    border-radius: 16px;
    overflow: hidden;
    background: var(--light);
}

.hero-mockup-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    top: 10%;
    right: -10%;
    width: 180px;
}

.card-2 {
    bottom: 10%;
    left: -10%;
    width: 200px;
    animation-delay: 1s;
}

.floating-card .float-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 24px;
}

.floating-card .float-title.success { color: var(--success); }

.floating-card .float-desc {
    font-size: 12px;
    color: var(--text-light);
}

/* Özel Yazılımlar — Ana sayfa */
.ozel-yazilim-home {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(165deg, #f0f7fb 0%, #fff 45%, #f8fafc 100%);
    overflow: hidden;
}

.ozel-yazilim-home__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(1, 49, 74, 0.07), transparent 55%),
        radial-gradient(ellipse 60% 45% at 90% 80%, rgba(2, 77, 115, 0.06), transparent 50%);
    pointer-events: none;
}

.ozel-yazilim-home .container {
    position: relative;
    z-index: 1;
}

.ozel-yazilim-home .section-header {
    margin-bottom: 56px;
}

.ozel-yazilim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ozel-yazilim-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 26px 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(1, 49, 74, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(1, 49, 74, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.ozel-yazilim-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ozel-yazilim-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 49, 74, 0.22);
    box-shadow: 0 20px 40px rgba(1, 49, 74, 0.12);
}

.ozel-yazilim-card:hover::after {
    transform: scaleX(1);
}

.ozel-yazilim-card__index {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(1, 49, 74, 0.18);
}

.ozel-yazilim-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 16px;
    background: var(--gradient-blue);
    box-shadow: 0 8px 20px rgba(1, 49, 74, 0.2);
    margin-bottom: 20px;
}

.ozel-yazilim-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
    padding-right: 36px;
}

.ozel-yazilim-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ozel-yazilim-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.ozel-yazilim-card__link:hover {
    gap: 12px;
    color: var(--secondary);
}

.ozel-yazilim-home__cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .ozel-yazilim-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ozel-yazilim-grid {
        grid-template-columns: 1fr;
    }

    .ozel-yazilim-home {
        padding: 80px 0;
    }
}

/* Features */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(1, 49, 74, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(1, 49, 74, 0.25);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.feature-link:hover {
    gap: 12px;
}

.feature-list-compact {
    margin-top: 20px;
    font-size: 14px;
}

.feature-list-compact li {
    padding: 8px 0;
    padding-left: 28px;
}

.btn-block {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.feature-card.text-center {
    text-align: center;
}

.hero-sm { padding: 80px 0; }
.allinone-sm { padding: 80px 0; }
.features-grid-mt { margin-top: 60px; }

/* Stats Section */
.stats {
    background: var(--gradient-blue);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* All in One Section */
.allinone {
    padding: 120px 0;
    background: var(--light);
}

.allinone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.allinone-visual {
    position: relative;
}

.allinone-mockup {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.mockup-screen {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.allinone-panel-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.allinone-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.allinone-content h3 span {
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-list {
    list-style: none;
    margin: 40px 0;
}

.feature-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* References */
.references {
    padding: 120px 0;
    background: white;
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.ref-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.ref-name {
    font-weight: 600;
    color: var(--text);
}

.ref-logo {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ref-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted, #64748b);
    margin: 0;
}

.referans-carousel-wrap {
    margin-top: 60px;
    max-width: 100%;
}

.referans-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.referans-carousel .owl-item {
    display: flex;
}

.referans-carousel .ref-card {
    width: 100%;
    min-height: 120px;
    padding: 28px 24px;
}

.referans-carousel .owl-item:hover .ref-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.referans-carousel.owl-carousel .owl-dots,
.referans-carousel.owl-carousel .owl-nav {
    display: none;
}

.text-center-mt60 {
    text-align: center;
    margin-top: 60px;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--light);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer-content {
    padding: 0 32px 28px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.cta::before {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta::after {
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-lead {
    font-size: 18px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 32px;
    opacity: 0.92;
    font-weight: 500;
}

/* İletişim Sayfası */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.contact-form-wrap {
    max-width: 720px;
    margin: 0 auto 100px;
}

.contact-form-lead {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: -16px 0 28px;
}

.contact-form-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form-alert.is-success {
    background: rgba(16, 185, 129, 0.12);
    color: #0d9668;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.contact-form-alert.is-error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-privacy {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 20px;
}

.contact-form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

.form-group .required {
    color: #dc2626;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-method-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.contact-method-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark);
}

.contact-method-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-method-card a,
.contact-method-card span {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
}

.contact-method-card a:hover {
    color: var(--primary);
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 100px;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-info p,
.contact-info .info-block {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info .info-block:last-child {
    margin-bottom: 0;
}

.contact-info .info-block strong {
    display: block;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form-card {
    background: #f5f6f8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #0d9668;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

/* Kurumsal Sayfa */
.kurumsal-section {
    padding: 80px 0 120px;
}

.kurumsal-hero {
    text-align: center;
    margin-bottom: 60px;
}

.kurumsal-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.2;
}

.kurumsal-hero .intro {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.kurumsal-content {
    text-align: left;
}

.kurumsal-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 28px;
}

.kurumsal-content p:last-child {
    margin-bottom: 0;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Blog Sayfası */
.breadcrumbs { padding: 24px 0 16px; font-size: 14px; color: var(--text-light); }
.breadcrumbs a { color: var(--text-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 8px; color: var(--border); }
.breadcrumbs .current { color: var(--text); }
.blog-hero { text-align: center; padding-bottom: 48px; }
.blog-hero h1 { font-size: 42px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.blog-hero p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.category-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.category-btn { padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border); background: white; color: var(--text); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.category-btn:hover { border-color: var(--primary); color: var(--primary); }
.category-btn.active { background: rgba(1,49,74,0.1); border-color: var(--primary); color: var(--primary); }
.blog-section { padding-bottom: 100px; }
.blog-section h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 32px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.blog-card-header { background: var(--gradient-blue); min-height: 180px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.blog-card-logo { font-size: 12px; font-weight: 700; color: white; letter-spacing: 2px; opacity: 0.9; }
.blog-card-title-small { font-size: 15px; font-weight: 600; color: white; line-height: 1.4; margin-top: 12px; }
.blog-card-icon { position: absolute; right: 20px; bottom: 20px; font-size: 48px; opacity: 0.3; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.blog-card-date { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.blog-card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.article-header { padding: 24px 0 48px; }
.article-category { display: inline-block; background: rgba(1,49,74,0.1); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.article-header h1 { font-size: 38px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 24px; }
.article-meta { display: flex; gap: 24px; font-size: 14px; color: var(--text-light); }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-hero { background: var(--gradient-blue); border-radius: 16px; height: 320px; margin-bottom: 48px; display: flex; align-items: center; justify-content: center; color: white; font-size: 72px; opacity: 0.9; }
.article-content { padding-bottom: 80px; }
.article-content p { font-size: 17px; line-height: 1.9; margin-bottom: 24px; color: var(--text); }
.article-content h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 48px 0 20px; line-height: 1.3; }
.article-content h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 36px 0 16px; line-height: 1.3; }
.article-content ul, .article-content ol { margin: 24px 0; padding-left: 24px; }
.article-content li { margin-bottom: 12px; font-size: 17px; line-height: 1.8; }
.article-content blockquote { border-left: 4px solid var(--primary); padding: 20px 24px; margin: 32px 0; background: var(--light); border-radius: 0 12px 12px 0; font-style: italic; color: var(--text); }
.back-to-blog { padding: 32px 0; border-top: 1px solid var(--border); }
.back-to-blog a { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; font-weight: 600; font-size: 15px; transition: gap 0.3s; }
.back-to-blog a:hover { gap: 12px; }
.related-posts { padding: 60px 0 100px; background: var(--light); }
.related-posts h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: inherit; display: block; transition: all 0.3s; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.related-card-header { background: var(--gradient-blue); min-height: 120px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.related-card-body { padding: 24px; }
.related-card-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.related-card-date { font-size: 13px; color: var(--text-light); }
.container-narrow-blog { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-wrap img {
    height: 60px;
    width: auto;
}

.footer-grid {
    display: grid;
    gap: 32px 40px;
}

.footer-services {
    margin-bottom: 60px;
}

.footer-services-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
}

.footer-grid--services {
    grid-template-columns: repeat(4, 1fr);
}

.footer-column-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .footer-grid--services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column p a {
    color: white;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column p a {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-copyright {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

.footer-badge {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-badge img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.95;
}

.yasal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 16px;
}

.yasal-content h2:first-child {
    margin-top: 0;
}

.yasal-list {
    margin: 0 0 28px;
    padding-left: 1.25rem;
    color: var(--text);
    line-height: 1.9;
}

.yasal-list li {
    margin-bottom: 8px;
}

.yasal-updated {
    margin-top: 48px !important;
    font-size: 14px;
    color: var(--text-light, #64748b);
}

/* Inner pages - spacing below header */
.page-section {
    padding-top: 40px;
}

.page-section--compact {
    padding-top: 24px;
}

/* Services page */
.services-main {
    overflow-x: hidden;
}

.services-page .services-hero {
    padding: 28px 0 40px;
    background: linear-gradient(180deg, rgba(1, 49, 74, 0.06) 0%, #fff 100%);
}

.services-page .breadcrumbs--hero {
    padding: 0 0 20px;
    margin: 0;
}

.services-page .breadcrumbs--hero a,
.services-page .breadcrumbs--hero .current {
    color: var(--text-light);
}

.services-page .breadcrumbs--hero .current {
    color: var(--primary);
    font-weight: 600;
}

.services-page .services-hero-header {
    margin-bottom: 0;
    text-align: left;
    max-width: 780px;
}

.services-page .services-hero-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.services-page .services-hero-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.services-hero {
    padding: 32px 0 48px;
    background: linear-gradient(180deg, rgba(1, 49, 74, 0.06) 0%, #fff 100%);
}

.services-hero-header {
    margin-bottom: 0;
}

.services-hero-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.services-section {
    padding: 56px 0 72px;
}

.services-page .services-section {
    padding: 64px 0 80px;
}

.services-page .hizmet-category-section--alt {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.services-page .services-grid {
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 28px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(2, 77, 115, 0.08), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 49, 74, 0.25);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-partner {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(1, 49, 74, 0.08);
    padding: 5px 10px;
    border-radius: 50px;
}

.service-card-index {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(1, 49, 74, 0.2);
}

.service-card-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 18px;
    background: var(--gradient-blue);
    box-shadow: 0 10px 24px rgba(1, 49, 74, 0.22);
    margin-bottom: 22px;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 12px;
}

.service-card p,
.service-card-desc {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.services-page .service-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.95em;
}

.service-card-tags {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.service-card-tags li {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(1, 49, 74, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
}

.service-card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.service-card-link:hover {
    gap: 12px;
    color: var(--secondary);
}

.services-process {
    padding: 80px 0 100px;
    background: var(--light);
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.services-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.services-process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.services-process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

@media (max-width: 1200px) {
    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero-header h1,
    .services-page .services-hero-header h1 {
        font-size: 32px;
    }

    .services-grid,
    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .services-section,
    .services-page .services-section {
        padding: 48px 0 56px;
    }

    .services-page .hizmet-filters-section {
        top: 0;
    }

    .hizmet-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .hizmet-filters::-webkit-scrollbar {
        display: none;
    }

    .hizmet-filter-btn {
        flex-shrink: 0;
    }

    .hizmet-category-header h2 {
        font-size: 26px;
    }
}

/* Hizmetler — kategori filtreleri */
.hizmet-filters-section {
    padding: 0 0 8px;
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.services-page .hizmet-filters-section {
    top: 86px;
}

.hizmet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
}

.hizmet-filter-btn {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-light);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hizmet-filter-btn:hover,
.hizmet-filter-btn.active {
    color: #fff;
    background: var(--gradient-blue);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.hizmet-category-section {
    scroll-margin-top: 140px;
}

.hizmet-category-section.is-hidden {
    display: none;
}

.hizmet-category-header {
    max-width: 720px;
    margin-bottom: 40px;
    text-align: left;
}

.hizmet-category-header .section-badge {
    margin-bottom: 14px;
}

.hizmet-category-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
    line-height: 1.2;
}

.hizmet-category-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.services-page .section-header--process {
    margin-bottom: 48px;
}

.services-page .services-process {
    padding: 72px 0 96px;
}

/* Hizmet detay sayfası */
.hizmet-detail-hero {
    padding: 32px 0 56px;
    background: linear-gradient(180deg, rgba(1, 49, 74, 0.07) 0%, #fff 100%);
}

.hizmet-detail-hero-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 24px;
}

.hizmet-detail-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 22px;
    background: var(--gradient-blue);
    box-shadow: 0 14px 32px rgba(1, 49, 74, 0.25);
}

.hizmet-partner-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary);
    background: rgba(1, 49, 74, 0.08);
    border: 1px solid rgba(1, 49, 74, 0.15);
    border-radius: 50px;
}

.hizmet-detail-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin: 12px 0 16px;
}

.hizmet-detail-intro {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 24px;
}

.hizmet-detail-body {
    padding: 0 0 88px;
}

.hizmet-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
}

.hizmet-detail-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
}

.hizmet-detail-panel--accent {
    background: linear-gradient(160deg, rgba(1, 49, 74, 0.04) 0%, #fff 60%);
}

.hizmet-detail-panel h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 22px;
}

.hizmet-detail-list,
.hizmet-detail-benefits {
    list-style: none;
}

.hizmet-detail-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
}

.hizmet-detail-list li:last-child {
    border-bottom: none;
}

.hizmet-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.hizmet-detail-benefits li {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.hizmet-detail-benefits li:last-child {
    border-bottom: none;
}

.hizmet-detail-panel--accent .btn {
    margin-top: 24px;
}

.hizmet-related h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.hizmet-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hizmet-related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hizmet-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(1, 49, 74, 0.25);
    box-shadow: var(--shadow-md);
}

.hizmet-related-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.hizmet-related-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.hizmet-related-arrow {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .hizmet-detail-grid,
    .hizmet-related-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-detail-hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hizmet-detail-hero h1 {
        font-size: 30px;
    }

    .hizmet-filters-section {
        top: 64px;
    }
}

/* Packages page - info bar & tabs */
.packages-page .packages {
    padding: 72px 0 120px;
}

.packages-page .section-header {
    max-width: 940px;
    margin-bottom: 48px;
}

.packages-page .section-header h2 {
    font-size: 56px;
    line-height: 1.15;
}

.package-info-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px 0;
    border-bottom: 1px solid #dee2e6;
}

.package-info-bar-bottom {
    margin-top: 0;
    border-top: 1px solid #dee2e6;
    border-bottom: none;
}

.package-info-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
}

.package-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.package-info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 24px;
}

.package-info-text {
    text-align: left;
}

.package-info-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.35;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 0 48px;
    flex-wrap: wrap;
}

.package-tab-active {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    text-align: center;
    text-decoration: none;
}

.package-tab-active .tab-check {
    color: var(--success);
}

.package-tab-inactive {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    text-align: center;
    text-decoration: none;
}

/* Package cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}

.pkg-card {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
}

.pkg-card--featured {
    background: linear-gradient(160deg, #0d9488 0%, #0f766e 100%);
    border-color: #0f766e;
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.35);
}

.pkg-card-popular {
    text-align: center;
    padding: 12px 16px 0;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.02em;
}

.pkg-card--featured .pkg-card-title,
.pkg-card--featured .pkg-price-annual,
.pkg-card--featured .pkg-billing-period {
    color: #fff;
}

.pkg-card--featured .pkg-billing-period {
    opacity: 0.95;
}

.pkg-card-header {
    text-align: center;
    padding: 28px 24px 24px;
}

.pkg-card--featured .pkg-card-header {
    padding-top: 8px;
}

.pkg-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.25;
}

.pkg-price-annual {
    font-size: 42px;
    font-weight: 300;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pkg-currency {
    font-size: 0.55em;
    font-weight: 400;
    margin-left: 2px;
}

.pkg-billing-period {
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #6b7280;
    letter-spacing: 0.06em;
}

.pkg-card--featured .pkg-features-list {
    background: #fff;
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pkg-card--featured .pkg-card-actions {
    background: rgba(255, 255, 255, 0.12);
    padding-top: 8px;
}

.comparison-table .th-gold {
    background: #0f766e;
    color: #fff;
}

.pkg-card-monthly {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.pkg-price-wrap {
    margin-bottom: 8px;
}

.pkg-price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.pkg-price-new {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.pkg-2yr-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #666;
    font-size: 13px;
}

.pkg-card[id] {
    scroll-margin-top: 140px;
}

.pkg-2yr-row .icon { font-size: 16px; }

.pkg-2yr-value {
    font-weight: 600;
    color: #1a1a1a;
}

.pkg-card-actions {
    padding: 0 24px 24px;
}

.btn-demo {
    display: block;
    background: #10b981;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 12px;
    border: none;
    text-decoration: none;
}

.btn-buy {
    display: block;
    background: #3b82f6;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.pkg-features-list {
    border-top: 1px solid #f0f0f0;
    padding: 24px;
}

.pkg-feature-item {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.pkg-feature-item:last-child { margin-bottom: 0; }

.pkg-feature-subtitle {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 14px;
}

.pkg-feature-highlight {
    color: #3b82f6;
    font-weight: 600;
}

.pkg-card-footer {
    text-align: center;
    padding: 0 24px 24px;
}

.pkg-card-footer a {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* Payment options & comparison table */
.payment-options-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.payment-options-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.payment-options-box .payment-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.payment-options-box .payment-logos img {
    height: 32px;
    opacity: 0.8;
}

.comparison-table-wrap {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.comparison-table-header {
    background: var(--gradient-blue);
    color: white;
    padding: 32px;
    text-align: center;
}

.comparison-table-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.comparison-table-header p {
    font-size: 15px;
    opacity: 0.9;
}

.comparison-table-scroll {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead tr {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
    min-width: 250px;
}

.comparison-table th.th-center {
    text-align: center;
    min-width: 120px;
}

.comparison-table th.th-platin {
    background: #f0f8ff;
}

.comparison-table tbody tr.section-row td {
    padding: 16px 24px;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    background: #f8f9fa;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr.alt { background: #fafafa; }

.comparison-table td {
    padding: 16px 24px;
}

.comparison-table td.td-center {
    text-align: center;
}

.comparison-table td.td-platin {
    background: #f8fcff;
}

.comparison-table .cell-muted { color: #999; }

.comparison-table .cell-success {
    color: var(--success);
    font-size: 18px;
}

.comparison-table .cell-cross {
    color: #dc3545;
    font-size: 18px;
}

.comparison-table-footer {
    padding: 32px;
    text-align: center;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.comparison-table-footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1280px) {
    .package-info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .packages-page .section-header h2 {
        font-size: 48px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 1024px) {
    .hero-grid, .allinone-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .package-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .packages-page .packages {
        padding: 56px 0 88px;
    }

    .packages-page .section-header {
        margin-bottom: 40px;
    }

    .packages-page .section-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .header-content {
        padding: 14px 0;
        gap: 12px;
    }

    .logo img {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 10px;
        margin-left: auto;
        border: none;
        background: transparent;
        cursor: pointer;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    .mobile-menu-toggle__bar {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.mobile-menu-open .mobile-menu-toggle__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-toggle__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-actions {
        display: none;
    }

    body.mobile-menu-open .header {
        z-index: 1200;
    }

    body.mobile-menu-open .mobile-menu-toggle {
        position: relative;
        z-index: 1300;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1150;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        height: 100dvh;
        background: white;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        padding: 72px 0 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1250;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    body.mobile-menu-open .nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav a,
    .nav .megamenu-featured .btn {
        position: relative;
        z-index: 1;
        pointer-events: auto;
        touch-action: manipulation;
    }

    .nav > a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .nav > a.active::after {
        display: none;
    }

    .nav-item {
        border-bottom: 1px solid var(--border);
    }

    .nav-item > a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
    }

    .nav-item > a.active::after {
        display: none;
    }

    .nav-link-with-dropdown::after {
        float: right;
        margin-top: 2px;
        transition: transform 0.25s ease;
    }

    .nav-item.is-open > .nav-link-with-dropdown::after {
        transform: rotate(180deg);
    }

    .nav-item:hover .nav-link-with-dropdown::after {
        transform: none;
    }

    .nav-item.is-open:hover > .nav-link-with-dropdown::after {
        transform: rotate(180deg);
    }

    .nav-dropdown,
    .nav-dropdown--cols-2,
    .nav-megamenu {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        min-width: 0;
        max-width: none;
        width: 100%;
        display: none;
        padding: 0;
        background: var(--light);
        transition: none;
        overflow: visible;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:hover .nav-dropdown--cols-2,
    .nav-item-mega:hover .nav-megamenu {
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-item.is-open .nav-dropdown,
    .nav-item.is-open .nav-dropdown--cols-2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    .nav-item.is-open .nav-megamenu {
        display: block;
        overflow: visible;
    }

    .nav-item,
    .nav-item-mega {
        overflow: visible;
    }

    .nav-dropdown a,
    .nav-dropdown--cols-2 a {
        padding: 12px 24px 12px 32px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }

    .nav-dropdown a:hover,
    .nav-dropdown--cols-2 a:hover {
        padding-left: 32px;
    }

    .megamenu-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .megamenu-link {
        padding: 12px 24px 12px 32px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }

    .megamenu-link-icon,
    .megamenu-link-subtitle {
        display: none;
    }

    .megamenu-link-title {
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 500;
    }

    .megamenu-featured {
        padding: 16px 24px;
        align-items: flex-start;
        text-align: left;
    }

    .megamenu-featured-icon,
    .megamenu-featured-subtitle {
        display: none;
    }

    .megamenu-featured-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .megamenu-featured .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: auto;
        padding: 20px 24px 28px;
        border-top: 1px solid var(--border);
        background: white;
        position: sticky;
        bottom: 0;
    }

    .mobile-nav-footer .phone {
        font-size: 15px;
    }

    .features-grid,
    .ref-grid,
    .footer-grid--services,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badge img {
        max-height: 48px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }


    .section-header h2 {
        font-size: 32px;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-info-item {
        justify-content: flex-start;
    }

    .packages-page .packages {
        padding: 44px 0 72px;
    }

    .packages-page .section-header {
        margin-bottom: 32px;
    }

    .packages-page .section-header h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .package-tabs {
        gap: 12px;
        margin-bottom: 36px;
    }

    .package-tab-active,
    .package-tab-inactive {
        width: 100%;
        padding: 14px 20px;
        min-height: 52px;
    }

    .cta h2 {
        font-size: 36px;
    }
}
