/* ═══════════════════════════════════════════════
   KAPADOKYA STUDIO — Özgün CSS Tasarım Sistemi
   Font: Bricolage Grotesque + Plus Jakarta Sans
   Renk: #E8570A turuncu
   ═══════════════════════════════════════════════ */

/* ── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ─── */
:root {
    --orange: #E8570A;
    --orange-light: #FF7A35;
    --orange-dark: #C44800;
    --orange-bg: #FFF4ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --orange-50: #FFF8F1;

    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;

    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --bg-card: var(--white);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --text: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --border: var(--gray-200);
    --border-light: var(--gray-100);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 72px;
    --container: 1200px;
}

/* ── DARK MODE ─── */
[data-theme="dark"] {
    --bg: #0B0F19;
    --bg-alt: #111827;
    --bg-card: #1A2035;
    --bg-glass: rgba(26, 32, 53, 0.8);
    --text: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: #1E293B;
    --border-light: #1E293B;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
    --orange-bg: rgba(232, 87, 10, 0.1);
    --orange-50: rgba(232, 87, 10, 0.05);
    --gray-50: #111827;
    --gray-100: #1E293B;
}

/* ── RESET ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

/* ── UTILITY ─── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.text-orange {
    color: var(--orange);
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
}

/* ── SECTION HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--orange-bg);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--orange-100);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 14px rgba(232, 87, 10, 0.3);
}

.btn-primary:hover {
    background: var(--orange-light);
    box-shadow: 0 6px 20px rgba(232, 87, 10, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--orange);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* ═══ LOADING SCREEN ═══ */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
    animation: loaderFallback 0.5s 3s forwards;
}

@keyframes loaderFallback {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══ NAVBAR — Floating Glassmorphism ═══ */
.navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(11, 15, 25, 0.85);
    border-color: var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    top: 8px;
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}

.navbar-logo img {
    height: 36px;
    width: auto;
}

.navbar-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: var(--orange-bg);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: transform var(--transition);
}

/* ── Dropdown System ── */
.nav-dropdown {
    position: relative;
}

/* Invisible bridge — prevents hover gap flickering */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 20px;
    background: transparent;
    pointer-events: auto;
}

.nav-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown>.nav-link svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.nav-dropdown>.nav-link.dd-active svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* Nav Backdrop (dims page when any dropdown is open) */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 90;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav-backdrop-enter {
    transition: opacity 0.15s ease;
}

.nav-backdrop-from {
    opacity: 0;
}

.nav-backdrop-to {
    opacity: 1;
}

.nav-backdrop-leave {
    transition: opacity 0.12s ease;
}

/* Mega Dropdown (Hizmetler) */
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 0;
    padding-top: 16px;
    z-index: 100;
}

.dropdown-mega-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    min-width: 680px;
    max-width: 720px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.dropdown-mega-top {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 8px;
}

.dropdown-sp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-sp-item:hover {
    background: var(--bg-alt);
}

.dropdown-sp-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-sp-icon svg {
    width: 16px;
    height: 16px;
}

.dropdown-sp-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-mega-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-bottom: 8px;
}

.dropdown-mega-bottom .dropdown-col {
    padding: 0 8px;
}

.dropdown-mega-bottom .dropdown-col:not(:last-child) {
    border-right: 1px solid var(--border-light);
}

[data-theme="dark"] .dropdown-mega-inner {
    background: rgba(11, 15, 25, 0.95);
}

.dropdown-col {
    padding: 0 12px;
}

.dropdown-col:not(:last-child) {
    border-right: 1px solid var(--border-light);
}

.dropdown-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 4px 8px 8px;
    margin-bottom: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--orange);
    background: var(--orange-bg);
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    flex-shrink: 0;
}

.dropdown-item:hover svg {
    opacity: 1;
}

/* Panel Dropdown (Ürünler, Kurumsal) */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 0;
    padding-top: 16px;
    z-index: 100;
}

.dropdown-panel-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    min-width: 300px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

[data-theme="dark"] .dropdown-panel-inner {
    background: rgba(11, 15, 25, 0.95);
}

/* ── Dropdown Transition (fade-in-up) ── */
.dd-anim-enter {
    transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-anim-from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
}

.dd-anim-to {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dd-anim-leave {
    transition: opacity 120ms ease-in,
        transform 120ms ease-in;
}

.dropdown-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.dropdown-product-item:hover {
    background: var(--orange-bg);
}

.dropdown-product-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-product-icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.dropdown-product-tag {
    font-size: 12px;
    color: var(--text-muted);
}

/* Dropdown Footer */
.dropdown-footer {
    grid-column: 1 / -1;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border-light);
}

.dropdown-footer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.dropdown-footer-link:hover {
    background: var(--orange-bg);
}

.dropdown-footer-link svg {
    width: 14px;
    height: 14px;
}

/* ── Mobile Nav Groups ── */
.mobile-nav-group {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle.active {
    color: var(--orange);
}

.mobile-nav-arrow {
    transition: transform var(--transition);
}

.mobile-nav-arrow svg {
    width: 16px;
    height: 16px;
}

.mobile-nav-arrow.rotate {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    padding: 0 6px 8px;
}

.mobile-nav-sub .nav-link {
    font-size: 13px;
    padding: 7px 14px;
    color: var(--text-muted);
}

.mobile-nav-sub .nav-link:hover {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
    background: var(--bg-alt);
}

.theme-toggle:hover {
    color: var(--orange);
    background: var(--orange-bg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Lang Toggle */
.lang-toggle {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-alt);
    transition: all var(--transition);
    text-transform: uppercase;
}

.lang-toggle:hover {
    color: var(--orange);
    background: var(--orange-bg);
}

/* Search Trigger */
.search-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 14px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.search-trigger:hover {
    border-color: var(--orange);
    color: var(--text-secondary);
}

.search-trigger svg {
    width: 16px;
    height: 16px;
}

.search-trigger kbd {
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 11px;
    font-family: inherit;
}

/* Nav CTA */
.nav-cta {
    margin-left: 4px;
}

/* ── Login Dropdown ── */
.login-dropdown {
    position: relative;
}

.btn-login-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-login-trigger svg:first-child {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.btn-login-trigger .chevron-icon {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    transition: transform 220ms ease, opacity 220ms ease;
}

.btn-login-trigger:hover,
.btn-login-trigger.dd-active {
    background: var(--orange-bg);
    border-color: var(--orange);
    color: var(--orange);
}

.btn-login-trigger.dd-active .chevron-icon {
    transform: rotate(180deg);
    opacity: 0.8;
}

.login-panel {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    padding-top: 8px;
    z-index: 200;
}

.login-panel-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 8px;
    min-width: 230px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

[data-theme="dark"] .login-panel-inner {
    background: rgba(11, 15, 25, 0.96);
}

.login-section-label {
    padding: 4px 10px 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.login-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border-radius: 9px;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.login-item:hover {
    background: var(--bg-alt);
}

.login-item:hover .login-item-name {
    color: var(--orange);
}

.login-item:hover .login-item-icon {
    transform: scale(1.1);
}

.login-item-icon {
    width: 33px;
    height: 33px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 200ms ease;
}

.login-item-icon svg {
    width: 16px;
    height: 16px;
}

.login-item-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.login-item-name {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: var(--text);
    transition: color var(--transition);
}

.login-item-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.login-divider {
    height: 1px;
    background: var(--border-light);
    margin: 5px 6px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--radius);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: calc(var(--nav-height) + 20px);
    left: 12px;
    right: 12px;
    bottom: auto;
    max-height: calc(100vh - var(--nav-height) - 40px);
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    padding: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: mobileNavIn 0.25s ease-out;
}

@keyframes mobileNavIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav .nav-link {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: var(--radius);
}

.mobile-nav .nav-actions-mobile {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ═══ SEARCH MODAL ═══ */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.search-modal.open,
.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 90%;
    max-width: 580px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: translateY(-20px) scale(0.96);
    transition: transform var(--transition);
}

.search-modal.open .search-box,
.search-modal.active .search-box {
    transform: translateY(0) scale(1);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.search-input-wrap svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    color: var(--text);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-results {
    max-height: 360px;
    overflow-y: auto;
    padding: 8px;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.search-result-item:hover,
.search-result-item.focused {
    background: var(--orange-bg);
}

.search-result-item h4 {
    font-size: 15px;
    font-weight: 600;
}

.search-result-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.search-empty {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.search-footer {
    padding: 10px 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.search-footer kbd {
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    font-family: inherit;
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 48px) 0 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--bg) 35%, var(--bg) 65%, rgba(99, 102, 241, 0.04) 100%);
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s ease-in-out infinite alternate;
}

.hero-blob-1 {
    top: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--orange);
}

.hero-blob-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #6366F1;
    animation-delay: -10s;
    animation-direction: alternate-reverse;
}

.hero-blob-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: #10B981;
    opacity: 0.08;
    animation-delay: -5s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }

    100% {
        transform: translate(10px, -10px) scale(1.02);
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 0.3;
        transform: translateY(-30px) scale(1);
    }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 87, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 87, 10, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

[data-theme="dark"] .hero-bg {
    background: linear-gradient(135deg, rgba(232, 87, 10, 0.03) 0%, var(--bg) 35%, var(--bg) 65%, rgba(99, 102, 241, 0.03) 100%);
}

[data-theme="dark"] .hero-blob {
    opacity: 0.08;
}

[data-theme="dark"] .hero-particle {
    background: rgba(232, 87, 10, 0.5);
}

[data-theme="dark"] .hero-grid-pattern {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Badge with Shimmer */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--orange-bg);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid var(--orange-100);
    position: relative;
    overflow: hidden;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 87, 10, 0.12), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 28px;
}

/* Rotating Text */
.hero-rotating-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: baseline;
}

.hero-rotating {
    display: inline-block;
    position: relative;
    height: 1.15em;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-rotating-item {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: max-content;
    background: linear-gradient(135deg, var(--orange), #FF8A3D, var(--orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotating-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-rotating-item.exit {
    opacity: 0;
    transform: translateY(-100%);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-price {
    font-size: 17px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero CTA Glow */
.hero-cta-glow {
    position: relative;
    box-shadow: 0 4px 20px rgba(232, 87, 10, 0.3);
    transition: all 0.3s ease;
}

.hero-cta-glow:hover {
    box-shadow: 0 8px 32px rgba(232, 87, 10, 0.45);
    transform: translateY(-2px);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.hero-trust-avatar:first-child {
    margin-left: 0;
}

/* Hero Visual (Right Side) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-product-cards {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hero-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hero-product-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.hero-product-card-1 {
    margin-bottom: 16px;
    margin-left: 0;
}

.hero-product-card-2 {
    margin-bottom: 16px;
    margin-left: 40px;
}

.hero-product-card-3 {
    margin-left: 20px;
}

.hero-product-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-product-card-icon svg {
    width: 24px;
    height: 24px;
}

.hero-product-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.hero-product-card-tag {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-product-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(232, 87, 10, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 72px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FF8A3D);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ═══ MARQUEE BAND ═══ */
.marquee {
    padding: 20px 0;
    background: var(--orange);
    color: white;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.marquee-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

/* ═══ SERVICES GRID ═══ */
.services-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-200);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--orange-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-heading);
}

.service-card .price-type {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.service-card p {
    color: var(--text-secondary);
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.6;
}

.service-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-alt);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* ═══ PRODUCTS ═══ */
.products-featured {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-xl);
    padding: 60px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.products-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.products-featured h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.products-featured p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.products-featured .price-tag {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* Products Duo (AI + Site Builder) */
.products-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.product-featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.product-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.product-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.product-featured-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-featured-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.product-featured-icon svg {
    width: 26px;
    height: 26px;
}

.product-featured-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.product-featured-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.product-featured-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-featured-card .product-features-list {
    margin-bottom: 24px;
}

.product-featured-card .product-features-list li {
    font-size: 14px;
}

.product-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.product-featured-footer .price-tag {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.product-features-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.product-card .tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-card .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.product-status.active {
    background: #ECFDF5;
    color: #059669;
}

.product-status.soon {
    background: #FEF3C7;
    color: #D97706;
}

[data-theme="dark"] .product-status.active {
    background: rgba(5, 150, 105, 0.15);
}

[data-theme="dark"] .product-status.soon {
    background: rgba(217, 119, 6, 0.15);
}

/* ═══ PRICING ═══ */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-toggle {
    width: 56px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.pricing-toggle.active {
    background: var(--orange);
}

.pricing-toggle::after {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-toggle.active::after {
    transform: translateX(26px);
}

.pricing-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-label.active {
    color: var(--text);
}

.pricing-save {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
}

/* ── Pricing Free Badge (toggle yanı) ─── */
.pricing-free-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 100px;
    background: #10B98118;
    color: #10B981;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ── Pricing Free Tag (kart içi) ─── */
.pricing-free-tag {
    color: #10B981;
    font-weight: 700;
}

/* ── Pricing Grid 3-col ─── */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Recommended Card (ortadaki büyük kart) ─── */
.pricing-card.card-recommended {
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.card-recommended:hover {
    transform: scale(1.03) translateY(-8px);
}

/* ── Pricing Footer Note ─── */
.pricing-footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--orange-bg, rgba(232, 87, 10, 0.04));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 87, 10, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--border);
}

.pricing-card.featured {
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(232, 87, 10, 0.15);
    background: linear-gradient(to bottom, var(--bg-card), rgba(232, 87, 10, 0.02));
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(232, 87, 10, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #FF8A00, var(--orange));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--orange);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-card .price-wrap {
    margin: 20px 0;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
}

.pricing-card .price .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .plan-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F59E0B;
    fill: #F59E0B;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══ TESTIMONIALS SLIDER ═══ */
.testimonials-slider {
    max-width: 720px;
    margin: 0 auto;
}

.testimonials-slide-wrap {
    position: relative;
    min-height: 260px;
}

.testimonials-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-slide.active {
    display: block;
    opacity: 1;
}

.tcard-slider {
    max-width: 100%;
    margin: 0 auto;
}

.tcard-slider blockquote {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.testimonials-arrow:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-bg);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--orange);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ═══ BLOG HERO ═══ */
.blog-hero {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.04;
}

.blog-hero-content {
    max-width: 700px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-hero-badge svg {
    width: 16px;
    height: 16px;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.blog-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.blog-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.blog-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-display);
}

.blog-hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══ BLOG FEATURED ═══ */
.blog-featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.blog-featured-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.05) 100%);
}

.blog-featured-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    color: #fff;
    width: 100%;
}

.blog-featured-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-tag-featured {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.blog-tag-featured svg {
    width: 14px;
    height: 14px;
}

.blog-tag-cat {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.blog-featured-content h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-featured-main .blog-featured-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.blog-featured-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-featured-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.blog-featured-meta svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
}

/* ═══ BLOG TOOLBAR ═══ */
.blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    white-space: nowrap;
}

.blog-filter-btn svg {
    width: 16px;
    height: 16px;
}

.blog-filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.blog-filter-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.blog-filter-count {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.1);
    padding: 1px 7px;
    border-radius: 10px;
}

.blog-filter-btn.active .blog-filter-count {
    background: rgba(255, 255, 255, 0.25);
}

.blog-search-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    min-width: 220px;
    transition: border-color var(--transition);
}

.blog-search-mini:focus-within {
    border-color: var(--orange);
}

.blog-search-mini svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.blog-search-mini input {
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    color: var(--text);
    width: 100%;
}

.blog-search-clear {
    flex-shrink: 0;
    color: var(--text-muted);
}

.blog-search-clear svg {
    width: 14px;
    height: 14px;
}

/* Active Filter Info */
.blog-active-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--orange-bg);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.blog-active-filter svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
}

.blog-clear-filter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    background: var(--bg-card);
    border: 1px solid var(--orange-100);
    transition: all var(--transition);
}

.blog-clear-filter:hover {
    background: var(--orange);
    color: #fff;
}

.blog-clear-filter svg {
    width: 12px;
    height: 12px;
}

/* ═══ BLOG CARDS V2 ═══ */
.blog-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card-v2 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-card-v2-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-card-v2-image {
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    position: relative;
}

.blog-card-v2-cat {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-v2-read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    font-size: 11px;
    color: #fff;
}

.blog-card-v2-read svg {
    width: 12px;
    height: 12px;
}

.blog-card-v2-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-v2-body h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-v2-body p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.blog-card-v2-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card-v2-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange-bg);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.blog-card-v2-author-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.blog-card-v2-date {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.blog-card-v2-arrow {
    color: var(--text-muted);
    transition: all var(--transition);
}

.blog-card-v2-arrow svg {
    width: 18px;
    height: 18px;
}

.blog-card-v2:hover .blog-card-v2-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

/* Blog Card Enter Transition (Alpine x-transition for x-for) */
.blog-card-enter {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.blog-card-enter-start {
    opacity: 0;
    transform: translateY(16px);
}

.blog-card-enter-end {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Empty */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.blog-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.blog-empty h3 {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* ═══ BLOG PAGINATION ═══ */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.blog-page-btn svg {
    width: 16px;
    height: 16px;
}

.blog-page-btn:hover:not(:disabled) {
    border-color: var(--orange);
    color: var(--orange);
}

.blog-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.blog-page-numbers {
    display: flex;
    gap: 4px;
}

.blog-page-num {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.blog-page-num:hover:not(:disabled):not(.dots) {
    border-color: var(--orange);
    color: var(--orange);
}

.blog-page-num.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.blog-page-num.dots {
    background: none;
    border: none;
    cursor: default;
}

.blog-page-info {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Blog Newsletter */
.blog-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
}

.blog-newsletter h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-newsletter h2 svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.blog-newsletter p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ═══ BLOG DETAIL ═══ */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    z-index: 10000;
    transition: width 0.1s linear;
}

.blog-detail-hero {
    padding: 140px 0 48px;
    background: var(--bg-alt);
    position: relative;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.03;
}

.blog-detail-header {
    max-width: 760px;
}

.blog-detail-cat {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-detail-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-detail-excerpt {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-detail-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.blog-detail-author-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.blog-detail-author-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.blog-detail-author-role {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-detail-dots {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-detail-dots svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
}

/* Blog Content Layout */
.blog-detail-content {
    padding: 48px 0 60px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.blog-article {
    min-width: 0;
}

/* Prose */
.prose {
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 16px;
}

.prose h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin: 32px 0 12px;
}

.prose p {
    margin-bottom: 20px;
}

.prose .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

.prose ul,
.prose ol {
    margin: 20px 0;
    padding-left: 24px;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.prose a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose strong {
    color: var(--text);
    font-weight: 700;
}

.prose blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--orange);
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Blog Detail Bottom */
.blog-detail-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.blog-detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tag {
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-alt);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-share-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.blog-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition);
    text-decoration: none;
}

.blog-share-btn svg {
    width: 16px;
    height: 16px;
}

.blog-share-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 32px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-author-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.blog-author-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 12px;
}

.blog-author-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.blog-author-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-author-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-sidebar-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.blog-sidebar-title {
    font-size: 15px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.blog-sidebar-post {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.blog-sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar-post:hover h5 {
    color: var(--orange);
}

.blog-sidebar-post-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.blog-sidebar-post h5 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.blog-sidebar-post-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-sidebar-cta {
    padding: 24px;
    background: var(--orange-bg);
    border: 1px solid var(--orange-100);
    border-radius: var(--radius-lg);
    text-align: center;
}

.blog-sidebar-cta h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.blog-sidebar-cta p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.container-sm {
    max-width: 720px;
}

/* ═══ EMPTY STATE ═══ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    margin-bottom: 20px;
    color: var(--orange);
    opacity: 0.6;
}

.empty-state-icon svg {
    width: 64px;
    height: 64px;
}

.empty-state h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* ═══ FAQ ═══ */
.faq-cats {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.faq-group {
    margin-bottom: 32px;
}

.faq-group h3 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--orange);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.open {
    border-color: var(--orange-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer-inner {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ═══ CONTACT ═══ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 87, 10, 0.1);
}

.form-input.error,
.form-textarea.error,
.border-error {
    border-color: #EF4444 !important;
}

.form-error {
    font-size: 13px;
    color: #EF4444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: var(--orange-200);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--orange-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card h4 {
    font-size: 15px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-info-card a {
    color: var(--orange);
}

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ═══ PROJECTS ═══ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--orange-bg), var(--bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
}

.project-card-body {
    padding: 24px;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ═══ PAGE HERO ═══ */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 87, 10, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    position: relative;
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    position: relative;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* ═══ ABOUT PAGE ═══ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-story-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.about-mv-card {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.about-mv-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--orange);
}

.about-mv-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-image-area {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--orange-bg), var(--bg-alt));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-area::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 87, 10, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--orange-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--orange);
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}

.team-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    max-width: 360px;
    width: 100%;
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--orange-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--orange);
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ═══ FOOTER ═══ */
.footer {
    background: #1a1410;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .navbar-logo {
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: white;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

/* ═══ TOAST ═══ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease-out;
    min-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast.success {
    border-left: 4px solid #10B981;
}

.toast.success svg {
    color: #10B981;
}

.toast.error {
    border-left: 4px solid #EF4444;
}

.toast.error svg {
    color: #EF4444;
}

.toast.warning {
    border-left: 4px solid #F59E0B;
}

.toast.warning svg {
    color: #F59E0B;
}

@keyframes toastIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ═══ SCROLL TO TOP ═══ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(232, 87, 10, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(232, 87, 10, 0.5);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ═══ FLOAT BUTTONS ═══ */
.float-buttons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: var(--orange);
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

/* ═══ SKELETON ═══ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, var(--gray-800) 25%, var(--gray-700) 50%, var(--gray-800) 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 28px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-card {
    height: 200px;
}

/* ═══ 404 PAGE ═══ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
}

.page-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.page-404 h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.page-404 p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 18px;
}

/* ═══ GSAP ANIMATION STATES ═══ */
.anim-fade,
.anim-fade-left,
.anim-fade-right,
.anim-scale {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-fade {
    transform: translateY(24px);
}

.anim-fade-left {
    transform: translateX(-30px);
}

.anim-fade-right {
    transform: translateX(30px);
}

.anim-scale {
    transform: scale(0.95);
}

/* Visible state (set by JS or fallback) */
.anim-fade.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale.visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {

    .anim-fade,
    .anim-fade-left,
    .anim-fade-right,
    .anim-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ═══ SERVICE DETAIL ═══ */
.service-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--orange-bg);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-badge svg {
    width: 16px;
    height: 16px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 32px 0 16px;
}

.service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 500;
}

.service-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    align-items: flex-start;
}

.process-num {
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.process-step strong {
    display: block;
    margin-bottom: 4px;
}

.process-step p {
    margin: 0;
    font-size: 14px;
}

/* Price Card / Sidebar */
.service-price-card {
    position: sticky;
    top: 100px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.price-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card-icon svg {
    width: 24px;
    height: 24px;
}

.price-card-header h3 {
    font-size: 1.2rem;
}

.price-card-price {
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.price-type {
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 8px;
}

.price-card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.price-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.price-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

/* ═══ PRODUCT DETAIL ═══ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.product-hero-visual {
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.product-hero-icon svg {
    width: 80px;
    height: 80px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.product-feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 500;
}

.product-feature-card svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.badge-green {
    background: #DCFCE7;
    color: #16A34A;
}

.badge-yellow {
    background: #FEF9C3;
    color: #CA8A04;
}

[data-theme="dark"] .badge-green {
    background: rgba(22, 163, 74, 0.15);
}

[data-theme="dark"] .badge-yellow {
    background: rgba(202, 138, 4, 0.15);
}

/* ═══ BLOG DETAIL ═══ */
/* (blog detail CSS moved to BLOG DETAIL section above) */

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
    .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }

    .dropdown-mega-inner {
        min-width: 540px;
        max-width: 95vw;
    }

    .dropdown-sp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-mega-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-trigger kbd {
        display: none;
    }

    .blog-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        min-height: auto;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-slider-track {
        min-height: 340px;
    }

    .hero-product-cards {
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .hero-product-card-1,
    .hero-product-card-2,
    .hero-product-card-3 {
        margin: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-duo {
        grid-template-columns: 1fr;
    }

    .pricing-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.card-recommended {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-featured {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-image-area {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-price-card {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .navbar {
        width: calc(100% - 24px);
        top: 8px;
    }

    .navbar-inner {
        padding: 0 14px;
    }

    .navbar-logo {
        font-size: 17px;
        gap: 8px;
    }

    .navbar-logo img {
        height: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .search-trigger span,
    .search-trigger kbd {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .login-dropdown {
        display: none;
    }

    .nav-actions .theme-toggle {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-product-cards {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-slider-track {
        min-height: 320px;
    }

    .hero-slide-card {
        padding: 24px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 48px;
    }

    .hero-stat {
        padding: 16px;
    }

    .hero-stat-num {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .blog-grid-v2 {
        grid-template-columns: 1fr;
    }

    .blog-featured-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-card {
        min-height: 240px;
    }

    .blog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .blog-search-mini {
        min-width: unset;
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .blog-hero-stats {
        gap: 20px;
    }

    .blog-detail-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }

    .blog-page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-features-list,
    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: var(--radius-lg);
    }

    .section-header {
        margin-bottom: 40px;
    }

    .float-buttons {
        bottom: 16px;
        left: 16px;
    }

    .scroll-top {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .products-featured {
        padding: 24px;
    }

    .products-featured h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 24px;
    }
}

/* ── Hero Slider ─── */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 360px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    min-height: 380px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.hero-slide-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-slide.active .hero-slide-card {
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border-color));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px color-mix(in srgb, var(--accent) 10%, transparent);
}

.hero-slide-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-slide-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.hero-slide-icon svg {
    width: 26px;
    height: 26px;
}

.hero-slide-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-slide-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-slide-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-slide-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-slide-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.hero-slide-features svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.hero-slide-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

/* Slider Nav - Dots + Arrows */
.hero-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.hero-slider-dots {
    display: flex;
    gap: 8px;
}

.hero-slider-dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-dot.active {
    width: 48px;
    background: color-mix(in srgb, var(--dot-color, var(--orange)) 20%, var(--border-color));
}

.hero-slider-dot-progress {
    position: absolute;
    inset: 0;
    background: var(--dot-color, var(--orange));
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-slider-dot.active .hero-slider-dot-progress {
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero-slider-arrows {
    display: flex;
    gap: 8px;
}

.hero-slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.hero-slider-arrow svg {
    width: 16px;
    height: 16px;
}

.hero-slider-prev {
    transform: rotate(180deg);
}

/* ── Corporate Pages ─── */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.corporate-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.corporate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.corporate-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.corporate-card-icon svg {
    width: 24px;
    height: 24px;
}

.corporate-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.corporate-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corporate-info-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.corporate-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.corporate-info-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    white-space: nowrap;
    min-width: 100px;
}

.corporate-info-value {
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

.corporate-info-value a {
    color: var(--orange);
    text-decoration: none;
}

.corporate-info-value a:hover {
    text-decoration: underline;
}

/* ── Bank Accounts ─── */
.bank-notice {
    display: flex;
    align-items: start;
    gap: 12px;
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 0.88rem;
    color: #92400E;
}

.bank-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bank-notice p {
    margin: 0;
}

[data-theme="dark"] .bank-notice {
    background: rgba(254, 243, 199, 0.08);
    border-color: rgba(252, 211, 77, 0.2);
    color: #FCD34D;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.bank-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.bank-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bank-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.bank-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-card-icon svg {
    width: 22px;
    height: 22px;
}

.bank-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.bank-branch {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.bank-currency {
    margin-left: auto;
    background: var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.bank-card-body {
    padding: 20px 24px;
}

.bank-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.bank-info-row+.bank-info-row {
    border-top: 1px solid var(--border-color);
}

.bank-info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bank-info-value {
    font-weight: 600;
    font-size: 0.88rem;
}

.bank-iban {
    font-family: monospace;
    letter-spacing: 1px;
}

.bank-iban-row {
    gap: 8px;
}

.bank-copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--surface-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.bank-copy-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.bank-copy-btn.copied {
    background: #10B981;
    color: #fff;
    border-color: #10B981;
}

.bank-copy-btn svg {
    width: 16px;
    height: 16px;
}

.bank-contact {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.bank-contact h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.bank-contact p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ── News Page ─── */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    display: flex;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.news-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding-right: 24px;
    border-right: 2px solid var(--accent);
}

.news-date-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.news-date-month {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

.news-card-body {
    flex: 1;
}

.news-card-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.news-card-cat {
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.news-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.news-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive: Corporate/Bank/News ─── */
@media (max-width: 768px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .bank-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
        gap: 12px;
    }

    .news-card-date {
        flex-direction: row;
        gap: 8px;
        border-right: none;
        border-bottom: 2px solid var(--accent);
        padding-right: 0;
        padding-bottom: 12px;
        justify-content: flex-start;
    }

    .hero-slider-prev {
        left: -4px;
    }

    .hero-slider-next {
        right: -4px;
    }
}

/* ── Print ─── */
@media print {

    .navbar,
    .float-buttons,
    .scroll-top,
    .search-modal,
    .loading-screen,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 20px 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS — Product Detail, Docs, Demo, Pricing v2
   ═══════════════════════════════════════════════════════════ */

/* ── Product Hero ─── */
.product-hero {
    padding-bottom: 96px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-alt), color-mix(in srgb, var(--product-color, var(--primary)) 5%, var(--bg-alt)));
}

.product-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, color-mix(in srgb, var(--product-color, var(--primary)) 8%, transparent) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.product-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--product-color, var(--primary)) 15%, transparent);
}

.product-badge svg {
    width: 18px;
    height: 18px;
}

.product-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.product-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-hero-price {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Features Grid ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-card-icon {
    margin-bottom: 12px;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 600;
}

/* ── Steps Grid ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ── Feature Check/X (Pricing) ─── */
.feature-check {
    color: #10B981;
}

.feature-check svg,
.feature-x svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.feature-x {
    color: #EF4444;
}

.text-muted {
    color: var(--text-muted);
}

/* ── Pricing Info Bar ─── */
.pricing-info-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Pricing Compare Table ─── */
.pricing-compare {
    margin-top: 48px;
}

.pricing-compare summary {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    list-style: none;
}

.pricing-compare summary::-webkit-details-marker {
    display: none;
}

.pricing-compare summary .icon-chevron {
    transition: transform 0.2s;
}

.pricing-compare[open] summary .icon-chevron {
    transform: rotate(90deg);
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 10px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-compare-table th {
    font-weight: 600;
    background: var(--card-bg);
}

.pricing-compare-table td:first-child,
.pricing-compare-table th:first-child {
    text-align: left;
}

/* ── Pricing Tabs ─── */
.pricing-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.pricing-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid var(--border);
    background: var(--card-bg);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.pricing-tab svg {
    width: 20px;
    height: 20px;
}

.pricing-tab.active,
.pricing-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(232, 87, 10, 0.06);
}

/* ── Pricing Yearly Note ─── */
.pricing-yearly-note {
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Bundle Cards ─── */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.bundle-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.bundle-card:hover {
    border-color: var(--orange);
}

.bundle-card .bundle-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bundle-card .bundle-header svg {
    width: 32px;
    height: 32px;
}

.bundle-card h3 {
    font-size: 22px;
}

.bundle-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.bundle-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
}

.bundle-savings {
    display: inline-block;
    background: #10B98118;
    color: #10B981;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.bundle-features li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-features svg {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
}

/* ── FAQ Section ─── */
.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 0;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item .faq-answer {
    padding: 0 0 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Documents Page ─── */
/* ══ BELGELER — yeni tasarım ══ */

/* Üst kategori nav */
.docs-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 48px;
}

.docs-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.docs-nav-item:hover {
    border-color: var(--orange)50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.docs-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.docs-nav-label {
    flex: 1;
}

.docs-nav-count {
    background: var(--bg-secondary);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Kategori bölümleri */
.docs-category {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.docs-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.docs-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.docs-cat-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.docs-cat-count {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* Belge satırları */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
}

.doc-item:hover {
    border-color: var(--orange)30;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.doc-item-info {
    flex: 1;
    min-width: 0;
}

.doc-item-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.doc-status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 100px;
}

.doc-status-badge.pending {
    background: #F59E0B18;
    color: #D97706;
}

.doc-status-badge.soon {
    background: #6366F118;
    color: #6366F1;
}

.doc-item-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 6px;
    line-height: 1.5;
}

.doc-item-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    align-items: center;
}

.doc-item-meta svg {
    vertical-align: -2px;
}

.doc-item-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Eski doc-card (geriye dönük uyumluluk için bırakıldı) */
.docs-grid {
    display: grid;
    gap: 16px;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.doc-card-icon {
    width: 44px;
    height: 44px;
    background: var(--orange)10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-card-body {
    flex: 1;
    min-width: 0;
}

.doc-card-body h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.doc-card-body p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.doc-card-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    align-items: center;
}

.badge-soon {
    background: #F59E0B18;
    color: #F59E0B;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.doc-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Eski docs-tabs (geriye dönük uyumluluk) */
.docs-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.docs-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--card-bg);
    text-decoration: none;
    transition: all 0.2s;
}

.docs-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.docs-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.docs-tab svg {
    width: 16px;
    height: 16px;
}

.docs-tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.docs-tab:not(.active) .docs-tab-count {
    background: var(--bg-secondary);
}

/* ── Legal Document (Print-Ready) ─── */
.container-narrow {
    max-width: 760px;
}

.doc-header {
    margin-bottom: 24px;
}

.doc-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin: 12px 0 20px;
}

.doc-meta svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.doc-actions {
    display: flex;
    gap: 12px;
}

.legal-document {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-document h2 {
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

.legal-document h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-document ul {
    padding-left: 20px;
    margin: 12px 0;
}

.legal-document li {
    margin-bottom: 6px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.legal-table th,
.legal-table td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

.legal-table th {
    background: var(--card-bg);
    font-weight: 600;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Demo Form ─── */
.form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.form-sidebar {
    position: sticky;
    top: 100px;
}

.form-sidebar h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.form-main {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
}

.demo-benefits {
    list-style: none;
    padding: 0;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.demo-benefits svg {
    width: 20px;
    height: 20px;
    color: #10B981;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
    text-align: center;
}

.demo-stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    display: block;
}

.demo-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.demo-contact {
    margin-top: 24px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.demo-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: var(--orange);
    outline: none;
}

.product-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.product-checkbox {
    cursor: pointer;
}

.product-checkbox input {
    display: none;
}

.product-checkbox-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.product-checkbox-content svg {
    width: 20px;
    height: 20px;
    color: var(--pcolor);
}

.product-checkbox input:checked+.product-checkbox-content {
    border-color: var(--pcolor);
    background: color-mix(in srgb, var(--pcolor) 8%, transparent);
}

.selected-plan-badge {
    margin-bottom: 20px;
    padding: 10px 16px;
    background: var(--orange)10;
    border: 1px solid var(--orange)30;
    border-radius: 10px;
    font-size: 14px;
}

.form-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* ── Alert ─── */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #10B98118;
    color: #059669;
    border: 1px solid #10B98140;
}

.alert-error {
    background: #EF444418;
    color: #DC2626;
    border: 1px solid #EF444440;
}

.alert-warning {
    background: #F59E0B18;
    color: #D97706;
    border: 1px solid #F59E0B40;
}

/* ── AI Demo Chat ─── */
.ai-demo-chat {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chat-msg.guest {
    align-self: flex-end;
}

.chat-msg.ai {
    align-self: flex-start;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.chat-avatar svg {
    width: 18px;
    height: 18px;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-msg.guest .chat-bubble {
    background: var(--orange);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-msg.ai .chat-bubble {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.chat-msg.guest .chat-time {
    text-align: right;
}

/* ── Language Grid ─── */
.lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.lang-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
}

.lang-flag {
    font-size: 20px;
}

/* ── Integrations Grid ─── */
.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.integration-badge svg {
    width: 20px;
    height: 20px;
}

/* ── Use Cases Grid ─── */
.use-cases-grid,
.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.use-case-card,
.lifecycle-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.use-case-icon svg,
.lifecycle-icon svg {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.use-case-card h3,
.lifecycle-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.use-case-card p,
.lifecycle-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ── Pricing Product Header ─── */
.pricing-product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-product-header h2 {
    font-size: 22px;
    margin-bottom: 2px;
}

.pricing-product-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-product-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-product-icon svg {
    width: 24px;
    height: 24px;
}

/* ── Pricing Info Item ─── */
.pricing-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-info-item svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.pricing-info-item strong {
    color: var(--text-primary);
}

/* ── Pricing Compare Section (details/summary) ─── */
.pricing-compare-section {
    margin-top: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
}

.pricing-compare-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    color: var(--text-primary);
    background: var(--card-bg);
    transition: background 0.2s;
}

.pricing-compare-toggle::-webkit-details-marker {
    display: none;
}

.pricing-compare-toggle:hover {
    background: var(--bg-secondary);
}

.pricing-compare-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.pricing-compare-table-wrap {
    overflow-x: auto;
    padding: 0 24px 24px;
}

/* ── Pricing Grid 2-col (Bundles) ─── */
.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ── Pricing Savings Badge ─── */
.pricing-savings {
    display: inline-block;
    background: #10B98115;
    color: #10B981;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* ── Bundle Products / Tags ─── */
.bundle-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.bundle-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--orange)12;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--orange)30;
}

/* ── Accordion (FAQ / General) ─── */
.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--orange);
}

.accordion-header.active {
    color: var(--orange);
}

.accordion-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 20px;
    height: 20px;
}

.accordion-icon.rotate {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 0 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-body p {
    margin: 0;
}

/* ── Page Title / Desc (Hero content) ─── */
.page-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ── Product Screenshot Placeholder ─── */
.product-screenshot {
    margin: -80px auto 48px;
    max-width: 900px;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateX(4deg);
    transition: transform 0.5s ease;
}

.product-screenshot:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, var(--border) 49.5%, var(--border) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, var(--border) 49.5%, var(--border) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.screenshot-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.screenshot-placeholder span {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* ── Product Testimonial ─── */
.product-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.product-testimonial::before {
    content: '"';
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 32px;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info strong {
    display: block;
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F59E0B;
    fill: #F59E0B;
}

/* ── Contact Wizard ─── */
.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    position: relative;
}

.wizard-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 180px;
    position: relative;
    z-index: 1;
}

.wizard-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--border);
    background: var(--card-bg);
    color: var(--text-muted);
    transition: all 0.3s;
}

.wizard-step-item.active .wizard-step-num {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.wizard-step-item.completed .wizard-step-num {
    border-color: #10B981;
    background: #10B981;
    color: #fff;
}

.wizard-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.wizard-step-item.active .wizard-step-label,
.wizard-step-item.completed .wizard-step-label {
    color: var(--text-primary);
}

.wizard-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    align-self: center;
    margin: 0 -20px;
    margin-top: -20px;
    position: relative;
    z-index: 0;
}

.wizard-connector.done {
    background: #10B981;
}

.wizard-panel {
    min-height: 200px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    gap: 16px;
}

.wizard-actions .btn {
    min-width: 140px;
}

/* ── Contact Hours ─── */
.contact-hours {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.contact-hours h4 {
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hours h4 svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.hours-table {
    width: 100%;
    font-size: 14px;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table .day {
    font-weight: 500;
}

.hours-table .time {
    color: var(--text-secondary);
}

.hours-table .closed {
    color: #EF4444;
    font-weight: 500;
}

/* ── Budget Select ─── */
.budget-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.budget-option {
    cursor: pointer;
}

.budget-option input {
    display: none;
}

.budget-option-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s;
}

.budget-option input:checked+.budget-option-content {
    border-color: var(--orange);
    background: rgba(232, 87, 10, 0.06);
    color: var(--orange);
}

/* ── Kurumsal Hub ─── */
.kurumsal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.kurumsal-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.kurumsal-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.kurumsal-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.kurumsal-card-icon svg {
    width: 26px;
    height: 26px;
}

.kurumsal-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.kurumsal-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.kurumsal-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
}

.kurumsal-card .card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.kurumsal-card:hover .card-link svg {
    transform: translateX(4px);
}

/* ── Print Overrides for Legal Docs ─── */
@media print {
    .no-print {
        display: none !important;
    }

    .page-hero {
        padding: 20px 0 0;
    }

    .doc-content {
        padding-top: 0;
    }

    .legal-document {
        font-size: 12pt;
    }

    .legal-document h2 {
        font-size: 16pt;
    }

    .footer,
    .cta-section {
        display: none !important;
    }
}

/* ── Responsive: Demo Form ─── */
@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        position: static;
    }

    .demo-form .form-row {
        grid-template-columns: 1fr;
    }

    .doc-card {
        flex-direction: column;
    }

    .doc-card-actions {
        width: 100%;
    }

    .doc-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .doc-item-actions {
        width: 100%;
    }

    .docs-nav {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }

    .pricing-card.card-recommended {
        transform: none;
    }

    .pricing-card.card-recommended:hover {
        transform: translateY(-8px);
    }

    .pricing-free-badge {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .wizard-step-label {
        font-size: 11px;
    }

    .wizard-connector {
        margin: 0 -12px;
        margin-top: -20px;
    }

    .product-testimonial {
        padding: 24px;
    }

    .kurumsal-grid {
        grid-template-columns: 1fr;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .form-main {
        padding: 24px;
    }

    .docs-tabs {
        gap: 8px;
    }

    .docs-tab {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-checkboxes {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        gap: 6px;
    }

    .pricing-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .pricing-tab span {
        display: none;
    }

    .wizard-progress {
        gap: 0;
    }

    .wizard-step-num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .docs-tab span:not(.docs-tab-count) {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
   CALCULATOR — Özel Yazılım Fiyat Hesaplayıcı
   ═══════════════════════════════════════════════ */

.calculator-section {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.calculator-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.calculator-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.calculator-progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.calculator-progress-step.active .calculator-progress-dot {
    background: #6366F1;
    color: #fff;
}

.calculator-progress-step.current .calculator-progress-dot {
    box-shadow: 0 0 0 4px #6366F140;
}

.calculator-progress-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.calculator-progress-step.active .calculator-progress-label {
    color: var(--text);
}

.calculator-progress-line {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 3px;
    z-index: 0;
}

.calculator-progress-fill {
    height: 100%;
    background: #6366F1;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.calculator-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.calculator-option {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg);
}

.calculator-option:hover {
    border-color: #6366F1;
    background: #6366F108;
}

.calculator-option.selected {
    border-color: #6366F1;
    background: #6366F108;
}

.calculator-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.calculator-option-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.calculator-option.selected .calculator-option-check {
    background: #6366F1;
    border-color: #6366F1;
    color: #fff;
}

.calculator-option-label {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.calculator-option-price {
    font-weight: 700;
    color: #6366F1;
    font-size: 14px;
    white-space: nowrap;
}

.calculator-option-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    padding-left: 32px;
}

.calculator-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.calculator-timeline-option {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    background: var(--bg);
}

.calculator-timeline-option:hover {
    border-color: #6366F1;
}

.calculator-timeline-option.selected {
    border-color: #6366F1;
    background: #6366F108;
}

.calculator-timeline-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 8px;
}

.calculator-timeline-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: inline-block;
    transition: all 0.2s;
    position: relative;
}

.calculator-timeline-option.selected .calculator-timeline-radio {
    border-color: #6366F1;
}

.calculator-timeline-option.selected .calculator-timeline-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6366F1;
}

.calculator-timeline-note {
    font-size: 13px;
    font-weight: 500;
}

.calculator-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.calculator-summary {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.calculator-summary-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.calculator-summary-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.calculator-summary-section h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.calculator-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.calculator-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 16px;
    border-top: 2px solid #6366F1;
    font-size: 18px;
    font-weight: 700;
}

.calculator-total-price {
    color: #6366F1;
    font-size: 28px;
}

.calculator-floating-total {
    position: sticky;
    bottom: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-top: 20px;
}

.calculator-floating-total strong {
    color: #6366F1;
    font-size: 20px;
}

/* ── Service Page Featured Cards (hizmetler) ─── */

.service-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-page-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.service-page-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-page-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}

.service-page-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-page-card p {
    font-size: 14px;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.service-page-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.service-page-card-price {
    color: var(--orange);
}

/* ── Responsive for calculator + service pages ─── */

@media (max-width: 768px) {
    .calculator-section {
        padding: 24px 16px;
    }

    .calculator-options-grid {
        grid-template-columns: 1fr;
    }

    .calculator-timeline-grid {
        grid-template-columns: 1fr;
    }

    .calculator-progress-label {
        display: none;
    }

    .calculator-total-price {
        font-size: 22px;
    }

    .service-pages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .calculator-progress {
        padding: 0;
    }

    .calculator-progress-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ── SR Only (for calculator checkboxes) ─── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ══════════════════════════════════════════════════════
   HOME — Services Section (Yeniden Yapılandırılmış)
   ══════════════════════════════════════════════════════ */

/* Featured 3 büyük kartlar (Özel Yazılım, Web Tasarım, SEO) */
.home-services-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.home-service-big {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-service-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sc);
    opacity: 0;
    transition: opacity 0.3s;
}

.home-service-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--sc);
}

.home-service-big:hover::before {
    opacity: 1;
}

.home-service-big-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.home-service-big-icon svg {
    width: 24px;
    height: 24px;
}

.home-service-big-body {
    flex: 1;
}

.home-service-big-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-service-big-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.home-service-big-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-service-big-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.home-service-big-features span svg {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
}

.home-service-big-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.home-service-big-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
}

.home-service-big-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.home-service-big-arrow svg {
    width: 16px;
    height: 16px;
}

.home-service-big:hover .home-service-big-arrow {
    background: var(--sc);
    color: #fff;
    transform: translateX(2px);
}

/* Kompakt 6'lı hizmet grid'i */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.home-service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.home-service-card:hover {
    background: var(--bg-alt);
    border-color: var(--border-medium, var(--border-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.home-service-card-icon {
    flex-shrink: 0;
}

.home-service-card-icon svg {
    width: 22px;
    height: 22px;
}

.home-service-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.home-service-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-service-card-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.home-service-card-arrow svg {
    width: 16px;
    height: 16px;
}

.home-service-card:hover .home-service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Alt bant */
.home-services-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
}

.home-services-bottom-left p {
    font-size: 15px;
    color: var(--text-secondary);
}

.home-services-bottom-left strong {
    color: var(--orange);
    font-weight: 700;
}

.home-services-bottom-actions {
    display: flex;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-services-featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-services-featured {
        grid-template-columns: 1fr;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-services-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .home-services-bottom-actions {
        flex-direction: column;
        width: 100%;
    }

    .home-services-bottom-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Why Us Section ─── */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-us-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform var(--transition);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.08);
}

.why-us-icon svg {
    width: 26px;
    height: 26px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-card:hover .why-us-icon svg {
    transform: rotate(360deg);
}

.why-us-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE — New Sections (v2)
   ═══════════════════════════════════════════════════════ */

/* ── Hero Split Layout ── */
.hero-split .hero-split-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - var(--nav-height) - 40px);
}

.hero-left h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 strong {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-rotating-word {
    display: inline-block;
    color: var(--orange);
    min-width: 180px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-rotating-word.hero-word-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-rotating-word.hero-word-out {
    opacity: 0;
    transform: translateY(-12px);
}

.hero-word-enter {
    animation: heroWordIn 0.4s ease;
}

.hero-word-leave {
    animation: heroWordOut 0.3s ease;
}

@keyframes heroWordIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroWordOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

.hero-badges-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-check-badge {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* ── Dashboard Mockup ── */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-notifications {
    position: absolute;
    top: -20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.hero-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    backdrop-filter: blur(12px);
}

.hero-notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.hero-notif-green {
    background: #10B981;
}

.hero-notif-blue {
    background: #6366F1;
}

.hero-notif-orange {
    background: #E8570A;
}

.hero-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-dash-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
}

.hero-dash-dots {
    display: flex;
    gap: 5px;
}

.hero-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-dash-dots span:nth-child(1) {
    background: #EF4444;
}

.hero-dash-dots span:nth-child(2) {
    background: #F59E0B;
}

.hero-dash-dots span:nth-child(3) {
    background: #10B981;
}

.hero-dash-title {
    flex: 1;
}

.hero-dash-badge {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: #10B98115;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.hero-dash-body {
    padding: 20px;
}

.hero-dash-body .hero-dash-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-dash-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    flex: 1;
}

.hero-dash-stat-value {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.hero-dash-stat-change {
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    background: #10B98115;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.hero-dash-chart {
    margin: 16px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hero-chart-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-dash-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.hero-dash-mini {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-alt);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ── 6-Grid Services ── */
.home-services-6grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.home-services-4grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.home-svc-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.home-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.home-svc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.home-svc-card-icon svg {
    width: 24px;
    height: 24px;
}

.home-svc-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-svc-card>p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.home-svc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.home-svc-card-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
}

.home-svc-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-svc-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.home-svc-card:hover .home-svc-card-link svg {
    transform: translateX(3px);
}

/* ── Stats Section (Dark) ── */
.home-stats-section {
    background: #1a1410;
    color: #fff;
    padding: 80px 0;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}

.home-stats-item {
    position: relative;
    padding: 0 20px;
}

.home-stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.home-stats-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.home-stats-num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--orange);
    line-height: 1;
}

.home-stats-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.home-stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ── How It Works ── */
.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.how-step-num {
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.how-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 48px;
    color: var(--text-muted);
}

.how-step-arrow svg {
    width: 24px;
    height: 24px;
}

/* ── Contact CTA (Dark) ── */
.home-contact-cta {
    background: #E8570A;
    color: #fff;
    padding: 80px 0;
}

.home-contact-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.home-contact-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.home-contact-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.home-contact-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-cta-phone {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}

.home-cta-phone:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.home-contact-cta .btn-primary {
    background: #fff;
    color: #E8570A;
}

.home-contact-cta .btn-primary:hover {
    background: #f8f7f5;
    color: #C44A08;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-split .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding-top: 40px;
    }

    .hero-right {
        display: none;
    }

    .hero-notifications {
        display: none;
    }

    .home-services-6grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-services-4grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
    }

    .how-step {
        max-width: 400px;
        width: 100%;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

@media (max-width: 640px) {

    .home-services-6grid,
    .home-services-4grid {
        grid-template-columns: 1fr;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-badges-row {
        gap: 8px;
    }

    .hero-check-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .home-contact-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ── Dark Mode — Hero Mockup & New Sections ── */
[data-theme="dark"] .hero-notif {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-dashboard {
    background: #1A2035;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-dash-header {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-dash-mini {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-check-badge {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-svc-card {
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .home-svc-card:hover {
    border-color: var(--orange);
    background: rgba(30, 41, 59, 0.6);
}

[data-theme="dark"] .how-step {
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .how-step:hover {
    border-color: var(--orange);
    background: rgba(30, 41, 59, 0.6);
}

[data-theme="dark"] .why-us-card {
    border-color: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════
   HERO V2 — Açık tema, turuncu blob,
   badge, bildirim kartları, istatistik bar
   ═══════════════════════════════════════════════ */

/* Açık arka plan */
.hero-v2 .hero-bg {
    background: #f8f7f5;
}

.hero-v2 .hero-blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 70% 50%, rgba(232, 87, 10, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 1;
}

.hero-v2 .hero-grid-pattern {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Metin renkleri — koyu (açık tema) */
.hero-v2,
.hero-v2 h1,
.hero-v2 .hero-trust span,
.hero-v2 .hero-rating span {
    color: #1a1410;
}

.hero-v2 .hero-desc {
    color: #6b6560;
    font-size: 18px;
}

/* Badge V2 — açık tema */
.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(232, 87, 10, 0.1);
    color: #E8570A;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(232, 87, 10, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: badgePulseDot 2s ease-in-out infinite;
}

@keyframes badgePulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* H1 satırları */
.hero-v2 h1 .hero-line-1,
.hero-v2 h1 .hero-line-2 {
    display: block;
}

.hero-v2 h1 .hero-highlight {
    display: inline-block;
    color: #E8570A;
}

.hero-v2 h1 .hero-highlight .hero-rotating-word {
    color: #E8570A;
}

/* Alpine rotating word */
.rotating-word {
    display: inline-block;
    color: #E8570A;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* CTA V2 — açık tema */
.hero-cta-v2 {
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.hero-cta-v2:hover {
    transform: scale(1.02);
}

.btn-outline-v2 {
    background: transparent;
    color: #1a1410;
    border: 2px solid #e5e0d8;
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline-v2:hover {
    background: #f0ede8;
    border-color: #d5d0c8;
    color: #1a1410;
}

.hero-cta-secondary {
    font-size: 16px;
    font-weight: 600;
}

/* Social proof row */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-v2 .hero-trust {
    margin-top: 0;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b6560;
}

.hero-stars {
    display: flex;
    gap: 2px;
}

/* Bildirim kartları V2 — açık tema */
.hero-v2 .hero-notif {
    background: #ffffff;
    border: 1px solid #e5e0d8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    min-width: 240px;
}

.hero-notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    line-height: 1.4;
}

.hero-notif-content strong {
    font-size: 13px;
    font-weight: 600;
    color: #1a1410;
}

.hero-notif-content span {
    color: #1a1410;
}

.hero-notif-content small {
    font-size: 11px;
    color: #6b6560;
}

/* Browser frame — açık tema */
.hero-v2 .hero-dashboard {
    background: #ffffff;
    border: 1px solid #e5e0d8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-v2 .hero-dash-header {
    background: #f8f7f5;
    border-bottom: 1px solid #e5e0d8;
}

.hero-v2 .hero-dash-mini {
    background: #f8f7f5;
    border: 1px solid #e5e0d8;
}

.hero-browser-frame .hero-url-bar {
    flex: 1;
    font-size: 12px;
    color: #6b6560;
    background: #f8f7f5;
    border: 1px solid #e5e0d8;
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    text-align: center;
    font-family: var(--font-mono, monospace);
}

/* İstatistik Bar — hero altı (koyu — tek koyu alan) */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    padding: 20px 32px;
    background: #1a1410;
    border: none;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.hero-stats-bar-item {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
}

.hero-stats-bar-num {
    font-size: 28px;
    font-weight: 800;
    color: #E8570A;
    font-family: var(--font-heading);
}

.hero-stats-bar-plus {
    font-size: 22px;
    font-weight: 700;
    color: #E8570A;
}

.hero-stats-bar-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.hero-stats-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ═══ PRICING V2 — Info kutusu, hosting badge, yenileme ═══ */

/* Info kutusu */
.pricing-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pricing-info-box svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-info-box p {
    margin: 0;
}

/* Hosting badge — yeşil */
.hosting-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.hosting-badge svg {
    width: 14px;
    height: 14px;
}

/* Yenileme notu — muted */
.renewal-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Yenileme paketleri */
.renewal-packages {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.renewal-packages-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.renewal-packages-title svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.renewal-packages-title span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.renewal-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.renewal-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.renewal-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.renewal-card-featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.renewal-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.renewal-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 16px;
}

.renewal-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.renewal-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.renewal-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.renewal-card ul li svg {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
}

/* ═══ MOBİL RESPONSIVE — Hero V2 ═══ */

@media (max-width: 768px) {
    .hero-v2 .hero-right {
        display: none;
    }

    .hero-v2 .hero-split-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero-v2 h1 {
        font-size: 36px;
    }

    .hero-v2 .hero-notifications {
        display: none;
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px;
    }

    .hero-stats-bar-item {
        flex: 0 0 calc(50% - 8px);
        padding: 8px;
    }

    .hero-stats-bar-divider {
        display: none;
    }

    .hero-stats-bar-num {
        font-size: 24px;
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .renewal-packages-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-v2,
    .btn-outline-v2 {
        width: 100%;
        justify-content: center;
    }
}

/* ── Mobile: Hero mockup gizle, pricing tabs scroll ─── */
@media (max-width: 768px) {
    .hero-mockup {
        display: none;
    }

    .pricing-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .pricing-tabs::-webkit-scrollbar {
        display: none;
    }

    .pricing-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
}