/* ╔══════════════════════════════════════════╗
   ║  VPSROBOT — Ana Stil Dosyası              ║
   ║  Global değişkenler, layout ve bileşenler ║
   ╚══════════════════════════════════════════╝ */

/* ════════════════════════════════════════
   GLOBAL DEĞİŞKENLER
   ════════════════════════════════════════ */

:root {
    --bg-black: #282828;
    --bg-white: #ffffff;
    --bg-body: #ffffff;
    --primary-color: #ffd400;
    --primary-hover: #f2b50b;
    --text-dark: #282828;
    --text-gray: #555555;
    --border-color: rgba(40, 40, 40, 0.1);
    --transition-speed: 0.25s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-body);
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Audiowide", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h4,
h5,
h6 {
    font-family: "Audiowide", sans-serif;
}

/* Bölümler arası tutarlı boşluk */
.section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* =========================================
   1. TOPBAR (SİYAH & STATİK)
   ========================================= */
.topbar-area {
    background-color: var(--bg-black);
    height: 44px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 100;
}

.topbar-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    /* Sadece renk değişimi */
    opacity: 0.9;
    padding: 5px 0;
}

.topbar-link:hover {
    color: var(--primary-color);
    opacity: 1;
    /* Translate YOK, oynamaz */
}

.topbar-link svg {
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.topbar-link svg path {
    stroke: currentColor;
}

.separator {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 16px;
    font-weight: 300;
    user-select: none;
}

.panel-link {
    font-weight: 600;
}

/* =========================================
   2. HEADER (BEYAZ & KURUMSAL)
   ========================================= */
.main-header {
    background-color: var(--bg-white);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 90;
}

.h4-nav-row {
    height: 60px;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-custom {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -0.1px;
    padding: 18px 0;
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

.nav-arrow {
    width: 11px;
    height: 11px;
    opacity: 0.5;
    transition: transform 0.3s;
    margin-top: 1px;
}

.nav-link-custom:hover .nav-arrow,
.nav-item-mega:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-color);
}

/* =========================================
   3. MEGAMENU
   ========================================= */
.nav-item-mega {
    position: static;
}

.megamenu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: none;
    /* Removed shadow completely */
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 100;
}

.nav-item-mega:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================
   M4 MEGAMENU — Featured Panel + Dot Links
   ========================================= */
.m4-layout {
    display: flex;
    gap: 0;
}

.m4-featured {
    width: 300px;
    flex-shrink: 0;
    background: #f8fafc;
    padding: 28px 24px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m4-featured-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 12px;
    width: fit-content;
}

.m4-featured h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.m4-featured p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.m4-featured-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-speed) ease;
}

.m4-featured-cta:hover {
    color: var(--primary-color);
}

.m4-links-area {
    flex: 1;
    padding: 24px 28px;
}

.m4-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.m4-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background var(--transition-speed) ease;
}

.m4-link:hover {
    background: #f1f5f9;
}

.m4-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
    transition: background var(--transition-speed) ease;
}

.m4-link:hover .m4-link-dot {
    background: var(--primary-color);
}

.m4-link span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-speed) ease;
}

.m4-link:hover span {
    color: var(--primary-color);
}

/* =========================================
   H4 HEADER ACTIONS (Sağ taraf)
   ========================================= */
.h4-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-left: 16px;
}

.h4-login-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-speed) ease;
}

.h4-login-link:hover {
    color: var(--primary-color);
}

.h4-btn {
    padding: 8px 18px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
}

.h4-btn:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

/* SEPET (STATİK) */
.corporate-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    padding-left: 12px;
    border-left: 1px solid var(--border-color);
    height: 44px;
}

.corporate-cart:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    transition: transform var(--transition-speed) ease;
}

.cart-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition:
        color var(--transition-speed) ease,
        transform 0.25s ease;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.cart-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cart-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.custom-container {
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    max-width: 1320px;
}

/* =========================================
   BENTO GRID (HERO)
   ========================================= */
.bento-card {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.bento-left {
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-dark-card {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.bento-title-lg {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.bento-desc-lg {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 0;
    max-width: 90%;
    line-height: 1.6;
}

.bento-title-sm {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.bg-dark-card .bento-title-sm {
    color: var(--bg-white);
}

.bento-desc-sm {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.bg-dark-card .bento-desc-sm {
    color: rgba(255, 255, 255, 0.7);
}

.bento-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.bento-btn-dark {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.bento-btn-dark:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.bento-btn-light {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.bento-btn-light:hover {
    background-color: var(--primary-hover);
    color: var(--text-dark);
}

/* =========================================
   7. YORUMLAR / TESTİMONİALS
   ========================================= */
/* Tasarım 6 */
.t6-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #eee;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.t6-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.t6-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #555;
}

.t6-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #282828;
    font-size: 0.8rem;
}

.t6-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #282828;
}

.t6-role {
    font-size: 0.72rem;
    color: #999;
}

.t6-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.t6-card.h-100 {
    display: flex;
    flex-direction: column;
}

.t6-card .t6-text {
    flex: 1;
}

/* =========================================
   7.5 KAYAN MARKA ŞERİDİ (MARQUEE)
   ========================================= */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
    padding: 0;
}

.marquee-item {
    flex-shrink: 0;
    opacity: 0.35;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.marquee-item:hover {
    opacity: 0.9;
}

.marquee-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marquee-item:hover .marquee-logo {
    filter: grayscale(0%);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* =========================================
   8. FOOTER
   ========================================= */
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #333;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 212, 0, 0.05);
}

/* =========================================
   9. CTA BANNER
   ========================================= */
.cta-btn-primary {
    background: var(--primary-color) !important;
    color: #282828 !important;
    border-radius: 6px;
    font-size: 0.9rem;
    border: none !important;
    transition: all 0.25s ease;
}

.cta-btn-primary:hover {
    background: var(--primary-hover) !important;
    color: #282828 !important;
}

.cta-btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid #444 !important;
    transition: all 0.25s ease;
}

.cta-btn-outline:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* =========================================
   DS — DOMAIN SORGULAMA PAGE
   ========================================= */

/* --- Active Nav Link --- */
.nav-link-custom.active {
    color: var(--primary-color);
}

/* --- Hero --- */
.ds-hero {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.ds-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.ds-hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ds-hero-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.ds-hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Search Bar --- */
.ds-search-wrap {
    max-width: 560px;
    margin: 0 auto 24px;
}

.ds-search-bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    height: 60px;
    transition: border-color var(--transition-speed) ease;
}

.ds-search-bar:focus-within {
    border-color: var(--primary-color);
}

.ds-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    min-width: 0;
}

.ds-search-input::placeholder {
    color: #bbb;
    font-weight: 400;
}

.ds-search-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-speed) ease;
}

.ds-search-btn:hover {
    background: var(--primary-hover);
}

/* --- Domain Search Results --- */
.ds-search-results {
    margin-top: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Grouped results: sıfırla (kartlar kendi stillerine sahip) */
.ds-results-section .ds-search-results {
    margin-top: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.ds-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.ds-search-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: dsSpinner 0.7s linear infinite;
}

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

.ds-result-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
    transition: background var(--transition-speed);
}

.ds-result-row:last-child {
    border-bottom: none;
}

.ds-result-row:hover {
    background: #fafafa;
}

.ds-result-row--available:hover {
    background: rgba(16, 185, 129, 0.04);
}

.ds-result-domain {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: "Audiowide", cursive;
}

.ds-result-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.ds-result-status--available {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.ds-result-status--taken {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.ds-result-price {
    min-width: 80px;
    text-align: right;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.ds-result-price span {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.ds-result-btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-speed);
}

.ds-result-btn--cart {
    background: var(--primary-color);
    color: var(--text-dark);
}

.ds-result-btn--cart:hover {
    background: var(--primary-hover);
}

.ds-result-btn--whois {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
}

.ds-result-btn--whois:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

/* --- TLD Filter Badges --- */
.ds-tld-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ds-tld-badge {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.ds-tld-badge:hover {
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.ds-tld-badge.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
}

/* --- Section Header (paylaşılan) --- */
.ds-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ds-section-title {
    font-size: 1.85rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ds-section-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* --- TLD Pricing Cards --- */
.ds-tld-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ds-tld-card:hover {
    transform: translateY(-3px);
    border-color: rgba(40, 40, 40, 0.2);
}

.ds-tld-card--featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.ds-tld-card--featured:hover {
    border-color: var(--primary-hover);
}

.ds-tld-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.ds-tld-card-ext {
    font-family: "Audiowide", sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ds-tld-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.ds-tld-card-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
}

.ds-tld-card-btn {
    display: inline-block;
    padding: 8px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
}

.ds-tld-card-btn:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #ffffff;
}

.ds-tld-card-btn--featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.ds-tld-card-btn--featured:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-dark);
}

/* --- Features Section --- */
.ds-features-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* --- Transfer Banner --- */
.ds-transfer-banner {
    background: var(--bg-black);
    border-radius: 8px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ds-transfer-text {
    flex: 1;
}

.ds-transfer-banner .ds-hero-label {
    margin-bottom: 14px;
}

.ds-transfer-title {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.ds-transfer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 460px;
}

.ds-transfer-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition-speed) ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ds-transfer-btn:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

/* --- FAQ Accordion --- */
.ds-faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.ds-faq-accordion {
    border: none;
}

.ds-faq-item {
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    background: transparent;
}

.ds-faq-item:last-child {
    border-bottom: none !important;
}

.ds-faq-btn {
    font-family: "Poppins", sans-serif !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent !important;
    padding: 20px 0;
    box-shadow: none !important;
    text-transform: none;
    letter-spacing: 0;
}

.ds-faq-btn:not(.collapsed) {
    color: var(--text-dark);
}

.ds-faq-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23282828' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    background-size: 16px;
    transition: transform 0.25s ease;
}

.ds-faq-btn:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.ds-faq-body {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.7;
    padding: 0 0 20px 0;
}

/* FAQ h3 override — Audiowide → Poppins */
.ds-faq-accordion .accordion-header {
    font-family: "Poppins", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

/* =========================================
   SEARCH HERO MODIFIER (domain-sorgulama only)
   ========================================= */
.ds-hero--search {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

.ds-hero--search .ds-hero-inner {
    max-width: 780px;
    position: relative;
}

.ds-hero--search .ds-hero-title {
    color: var(--text-dark);
    font-size: 2.8rem;
}

.ds-hero--search .ds-hero-subtitle {
    color: var(--text-gray);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Breadcrumb --- */
.ds-breadcrumb {
    margin-bottom: 32px;
    font-size: 0.82rem;
    text-align: left;
    position: relative;
}

.ds-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

.ds-breadcrumb-sep {
    color: rgba(40, 40, 40, 0.3);
    margin: 0 8px;
}

.ds-breadcrumb span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* --- Search Hero Search Bar Override --- */
.ds-hero--search .ds-search-wrap {
    max-width: 680px;
}

.ds-hero--search .ds-search-bar {
    height: 64px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    background: #ffffff;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ds-hero--search .ds-search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow:
        0 0 0 3px rgba(255, 212, 0, 0.12),
        0 2px 12px rgba(0, 0, 0, 0.06);
}

.ds-hero--search .ds-search-input {
    color: var(--text-dark);
    font-size: 1rem;
}

.ds-hero--search .ds-search-input::placeholder {
    color: #adb5bd;
}

.ds-hero--search .ds-search-btn {
    width: auto;
    height: 48px;
    border-radius: 10px;
    padding: 0 28px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* --- Search Hero TLD Badges Override --- */
.ds-hero--search .ds-tld-badges {
    margin-top: 24px;
}

.ds-hero--search .ds-tld-badge {
    background: #f8f9fa;
    border-color: var(--border-color);
    color: var(--text-gray);
}

.ds-hero--search .ds-tld-badge:hover {
    border-color: var(--primary-hover);
    color: var(--text-dark);
    background: rgba(255, 212, 0, 0.06);
}

.ds-hero--search .ds-tld-badge.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

/* =========================================
   TRUST BADGES
   ========================================= */
.ds-trust-badges {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.ds-trust-badges-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ds-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ds-trust-logo {
    flex-shrink: 0;
}

.ds-trust-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ds-trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ds-trust-stars {
    display: flex;
    gap: 1px;
}

.ds-star {
    font-size: 15px;
    line-height: 1;
}

.ds-star--gold {
    color: #f59e0b;
}

.ds-star--green {
    color: #00b67a;
}

.ds-trust-score {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
}

.ds-trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

/* =========================================
   RESULTS SECTION (outside hero)
   ========================================= */
.ds-results-section {
    padding: 40px 0;
}

.ds-loading-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 64px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 720px;
    margin: 0 auto;
}

.ds-loading-title {
    font-family: "Audiowide", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: dsPulse 1.5s ease-in-out infinite;
}

@keyframes dsPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.ds-loading-subtitle {
    font-size: 0.92rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* --- Results Header --- */
.ds-results-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-gray);
    background: #fafafa;
}

.ds-results-query strong {
    color: var(--text-dark);
    font-family: "Audiowide", cursive;
    font-size: 0.95rem;
}

/* --- Inline Transfer Promo --- */
.ds-inline-promo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
    border-top: 1px solid rgba(16, 185, 129, 0.12);
}

.ds-inline-promo-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-inline-promo-text {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.ds-inline-promo-text strong {
    color: var(--text-dark);
}

.ds-inline-promo-text a {
    color: #059669;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ds-inline-promo-text a:hover {
    color: #047857;
}

/* =========================================
   GROUPED SEARCH RESULTS
   ========================================= */

/* --- Ana Domain Kartı --- */
.ds-result-main {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.ds-result-main-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-result-main-icon--taken {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ds-result-main-icon--available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ds-result-main-info {
    flex: 1;
    min-width: 180px;
}

.ds-result-main-domain {
    font-family: "Audiowide", cursive;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.ds-result-main-status {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.ds-result-main-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ds-result-main-whois {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.ds-result-main-whois:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

.ds-result-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}

.ds-result-main-btn--transfer {
    background: var(--primary-color);
    color: var(--text-dark);
}

.ds-result-main-btn--transfer:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.ds-result-main-btn--cart {
    background: var(--primary-color);
    color: var(--text-dark);
}

.ds-result-main-btn--cart:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* --- Grup Başlık Bannerı --- */
.ds-result-group-header {
    background: var(--text-dark);
    border-radius: 14px 14px 0 0;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.ds-result-group-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.ds-result-group-icon--tr {
    background: rgba(227, 10, 23, 0.12);
}

.ds-tr-text {
    font-family: "Audiowide", cursive;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e30a17;
    letter-spacing: 1px;
    line-height: 1;
}

.ds-result-group-text {
    flex: 1;
}

.ds-result-group-title {
    font-family: "Audiowide", cursive;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.ds-result-group-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

/* --- Grup Container --- */
.ds-result-group {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* --- Geliştirilmiş Sonuç Satırı --- */
.ds-result-row-v2 {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.ds-result-row-v2:last-child {
    border-bottom: none;
}

.ds-result-row-v2:hover {
    background: #fafafa;
}

.ds-result-row-v2--available:hover {
    background: rgba(16, 185, 129, 0.03);
}

.ds-result-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-result-row-icon--available {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.ds-result-row-icon--taken {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.ds-result-row-info {
    flex: 1;
    min-width: 120px;
}

.ds-result-row-domain {
    font-family: "Audiowide", cursive;
    font-size: 0.92rem;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
}

.ds-result-row-status {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 1px;
}

.ds-result-row-status--available {
    color: #059669;
}

.ds-result-row-status--taken {
    color: #dc2626;
}

.ds-result-row-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.ds-result-row-price span {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 0.78rem;
}

.ds-result-row-btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ds-result-row-btn--cart {
    background: var(--primary-color);
    color: var(--text-dark);
}

.ds-result-row-btn--cart:hover {
    background: var(--primary-hover);
}

.ds-result-row-btn--transfer {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
}

.ds-result-row-btn--transfer:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

.ds-result-row-btn--whois {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.72rem;
    padding: 6px 12px;
}

.ds-result-row-btn--whois:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

/* --- Year Select Dropdown --- */
.ds-result-row-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ds-year-select {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 28px 5px 10px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff
        url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 10px center;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.15s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 80px;
}

.ds-year-select:hover {
    border-color: var(--primary-hover);
}

.ds-year-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}

/* --- Show More Results Button --- */
.ds-show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    background: transparent;
    border: 1.5px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ds-show-more-btn:hover {
    color: var(--text-dark);
    border-color: var(--primary-color);
    background: rgba(255, 212, 0, 0.04);
}

.ds-show-more-btn:hover svg {
    transform: translateY(2px);
}

.ds-show-more-btn svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}

/* --- Grouped Results Responsive --- */
@media (max-width: 767.98px) {
    .ds-result-main {
        padding: 18px 16px;
        gap: 12px;
    }

    .ds-result-main-icon {
        width: 34px;
        height: 34px;
    }

    .ds-result-main-domain {
        font-size: 1.05rem;
    }

    .ds-result-main-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .ds-result-main-btn {
        font-size: 0.82rem;
        padding: 8px 18px;
    }

    .ds-result-group-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .ds-result-group-icon {
        width: 32px;
        height: 32px;
    }

    .ds-result-group-title {
        font-size: 0.85rem;
    }

    .ds-result-row-v2 {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ds-result-row-info {
        flex: 1;
        min-width: 0;
    }

    .ds-result-row-domain {
        font-size: 0.85rem;
    }

    .ds-result-row-price {
        min-width: auto;
        font-size: 0.82rem;
    }

    .ds-result-row-pricing {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    .ds-year-select {
        font-size: 0.7rem;
        padding: 4px 24px 4px 8px;
        min-width: 70px;
    }

    .ds-result-row-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .ds-show-more-btn {
        padding: 14px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ds-result-main {
        padding: 14px 12px;
    }

    .ds-result-main-domain {
        font-size: 0.95rem;
    }

    .ds-result-main-status {
        font-size: 0.78rem;
    }

    .ds-result-main-whois {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .ds-result-main-btn {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .ds-result-group-header {
        padding: 12px;
    }

    .ds-result-group-title {
        font-size: 0.8rem;
    }

    .ds-result-group-subtitle {
        font-size: 0.72rem;
    }

    .ds-result-row-v2 {
        padding: 12px;
    }

    .ds-result-row-pricing {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .ds-show-more-btn {
        padding: 12px;
        font-size: 0.75rem;
    }

    .ds-result-row-icon {
        width: 24px;
        height: 24px;
    }
}

/* =========================================
   TLD DISCOUNT PRICING STRIP
   ========================================= */
.ds-discount-strip {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ds-discount-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    padding-top: 8px;
}

.ds-discount-scroll::-webkit-scrollbar {
    height: 4px;
}

.ds-discount-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ds-discount-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.ds-discount-card {
    flex: 0 0 170px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px 16px 18px;
    text-align: center;
    position: relative;
    transition:
        transform 0.25s,
        border-color 0.25s,
        box-shadow 0.25s;
}

.ds-discount-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.ds-discount-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.ds-discount-badge--hot {
    background: #f97316;
}

.ds-discount-tld {
    font-family: "Audiowide", sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 6px 0 12px;
    text-transform: none;
    letter-spacing: 0;
}

.ds-discount-prices {
    margin-bottom: 14px;
}

.ds-discount-old {
    display: block;
    font-size: 0.78rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.ds-discount-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.ds-discount-new small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-gray);
}

.ds-discount-btn {
    display: inline-block;
    padding: 7px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.ds-discount-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

/* --- Steps Grid (Paylaşılan) --- */
.ds-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step-counter;
}

.ds-step-card {
    text-align: center;
    padding: 24px 16px;
}

.ds-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: "Audiowide", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ds-step-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ds-step-card p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Transfer Form (2 input) --- */
.ds-transfer-form {
    max-width: 600px;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ds-transfer-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    height: 56px;
    transition: border-color var(--transition-speed) ease;
}

.ds-transfer-input-group:focus-within {
    border-color: var(--primary-color);
}

.ds-transfer-input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    min-width: 0;
}

.ds-transfer-input-group input::placeholder {
    color: #bbb;
    font-weight: 400;
}

/* --- Whois Result Table --- */
.ds-whois-result {
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ds-whois-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ds-whois-table {
    width: 100%;
}

.ds-whois-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.ds-whois-row:last-child {
    border-bottom: none;
}

.ds-whois-label {
    width: 200px;
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
    border-right: 1px solid var(--border-color);
}

.ds-whois-value {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    word-break: break-all;
}

/* --- Whois Interactive Demo --- */
.ds-whois-section {
    background: #f8fafc;
}

.ds-whois-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.ds-whois-loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: dsWhoisSpin 0.8s linear infinite;
    margin-bottom: 20px;
}

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

.ds-whois-loading-title {
    font-family: "Audiowide", cursive;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ds-whois-loading-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* Whois Card */
.ds-whois-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.ds-whois-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
    background: #fafbfc;
}

.ds-whois-domain-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ds-whois-domain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-whois-domain-name {
    font-family: "Audiowide", cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 2px;
    letter-spacing: 0;
}

.ds-whois-registrar {
    font-size: 0.78rem;
    color: var(--text-gray);
}

.ds-whois-days {
    text-align: center;
    padding: 8px 16px;
    border-radius: 10px;
    flex-shrink: 0;
}

.ds-whois-days--ok {
    background: rgba(16, 185, 129, 0.08);
}

.ds-whois-days--warning {
    background: rgba(245, 158, 11, 0.1);
}

.ds-whois-days-num {
    display: block;
    font-family: "Audiowide", cursive;
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2px;
}

.ds-whois-days--ok .ds-whois-days-num {
    color: #059669;
}

.ds-whois-days--warning .ds-whois-days-num {
    color: #d97706;
}

.ds-whois-days-label {
    font-size: 0.68rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Grid */
.ds-whois-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.ds-whois-info-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.ds-whois-info-item:nth-child(3n) {
    border-right: none;
}

.ds-whois-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 212, 0, 0.08);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ds-whois-info-label {
    font-size: 0.72rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ds-whois-info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
}

/* Name Servers */
.ds-whois-ns-section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.ds-whois-ns-title {
    font-family: "Audiowide", cursive;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ds-whois-ns-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ds-whois-ns-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ds-whois-ns-item svg {
    color: var(--primary-hover);
    flex-shrink: 0;
}

/* Raw Whois */
.ds-whois-raw-toggle {
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-color);
}

.ds-whois-raw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-gray);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.ds-whois-raw-btn:hover {
    color: var(--text-dark);
}

.ds-whois-raw {
    margin: 0;
    padding: 20px 24px;
    background: #1e1e2e;
    color: #a6e3a1;
    font-family: "Courier New", monospace;
    font-size: 0.75rem;
    line-height: 1.7;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    border-bottom: 1px solid var(--border-color);
}

/* Actions */
.ds-whois-actions {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    justify-content: flex-end;
}

.ds-whois-action-btn {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.ds-whois-action-btn--primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.ds-whois-action-btn--primary:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

.ds-whois-action-btn--outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-gray);
}

.ds-whois-action-btn--outline:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

/* Whois Responsive */
@media (max-width: 767.98px) {
    .ds-whois-card-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
    }

    .ds-whois-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds-whois-info-item:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }

    .ds-whois-info-item:nth-child(2n) {
        border-right: none;
    }

    .ds-whois-domain-name {
        font-size: 1rem;
    }

    .ds-whois-actions {
        flex-direction: column;
    }

    .ds-whois-action-btn {
        text-align: center;
    }
}

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

    .ds-whois-info-item {
        border-right: none !important;
        padding: 14px 16px;
    }

    .ds-whois-card-header {
        padding: 16px;
    }

    .ds-whois-ns-section,
    .ds-whois-raw-toggle,
    .ds-whois-actions {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ds-whois-raw {
        padding: 14px 16px;
        font-size: 0.68rem;
    }
}

/* --- Bulk Domain Search --- */
.ds-bulk-textarea {
    width: 100%;
    min-height: 140px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    resize: vertical;
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.ds-bulk-textarea:focus {
    border-color: var(--primary-color);
}

.ds-bulk-textarea::placeholder {
    color: #bbb;
}

.ds-bulk-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.ds-bulk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background var(--transition-speed) ease;
}

.ds-bulk-btn:hover {
    background: var(--primary-hover);
}

.ds-bulk-results {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ds-bulk-result-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
}

.ds-bulk-result-item:last-child {
    border-bottom: none;
}

.ds-bulk-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.ds-bulk-status--available {
    background: rgba(255, 212, 0, 0.15);
    color: #b8860b;
}

.ds-bulk-status--taken {
    background: rgba(40, 40, 40, 0.08);
    color: var(--text-gray);
}

.ds-bulk-add-btn {
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-left: auto;
    flex-shrink: 0;
}

.ds-bulk-add-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Price Table --- */
.ds-price-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ds-price-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.ds-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.ds-price-thead {
    background: #f8fafc;
}

.ds-price-th {
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.ds-price-tr {
    transition: background var(--transition-speed) ease;
}

.ds-price-tr:hover {
    background: #f8fafc;
}

.ds-price-tr:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.ds-price-td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.ds-price-tld {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.ds-price-amount {
    font-weight: 600;
    color: var(--text-dark);
}

.ds-price-free {
    color: #16a34a;
    font-weight: 600;
}

/* Price Search */
.ds-price-search-wrap {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}

.ds-price-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.ds-price-search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.ds-price-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}

.ds-price-search-input::placeholder {
    color: #94a3b8;
}

/* Price Action Button */
.ds-price-action-btn {
    padding: 6px 18px;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1.5px solid var(--border-color);
    background: #ffffff;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

.ds-price-action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.ds-price-action-btn.added {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    pointer-events: none;
}

/* ===========================================
   HOSTING — Bento Hero (.hs-bento-)
   =========================================== */

.hs-bento-hero {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
}

.hs-bento-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- Sağ Promo Kart -- */

.hs-bento-promo {
    background: var(--bg-black);
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hs-promo-timer-wrap {
    padding: 18px 0 0;
}

.hs-bento-promo-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.hs-bento-promo-title {
    font-family: "Audiowide", cursive;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hs-bento-promo-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

.hs-bento-promo-desc strong {
    color: #ffffff;
}

/* Countdown Timer */

.hs-promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hs-promo-timer-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 0;
    text-align: center;
    width: 42px;
}

.hs-promo-timer-box strong {
    display: block;
    font-family: "Audiowide", cursive;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.hs-promo-timer-box span {
    font-family: "Poppins", sans-serif;
    font-size: 0.52rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hs-promo-timer-sep {
    font-family: "Audiowide", cursive;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    padding-bottom: 10px;
}

/* Alt kısım: kupon kodu + buton */
.hs-promo-coupon {
    display: block;
    font-family: "Audiowide", cursive;
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 212, 0, 0.06);
    margin-top: auto;
}

.hs-bento-promo-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

.hs-bento-promo-btn:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 212, 0, 0.3);
}

/* -- Alt Stat Kartları -- */

.hs-bento-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.hs-bento-stat {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-speed) ease;
}

.hs-bento-stat:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.hs-bento-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hs-bento-stat strong {
    display: block;
    font-family: "Audiowide", cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hs-bento-stat span {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ===========================================
   HOSTING — Billing Toggle
   =========================================== */

.hs-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}

.hs-billing-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: color var(--transition-speed) ease;
    user-select: none;
}

.hs-billing-label--active {
    color: var(--text-dark);
    font-weight: 600;
}

.hs-billing-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--border-color);
    border: none;
    border-radius: 13px;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-speed) ease;
}

.hs-billing-switch.active {
    background: var(--primary-color);
}

.hs-billing-switch-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform var(--transition-speed) ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hs-billing-switch.active .hs-billing-switch-dot {
    transform: translateX(22px);
}

.hs-billing-save {
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #16a34a;
    background: rgba(22, 163, 106, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ===========================================
   HOSTING — Demo Cards + Support Banner
   =========================================== */

.hs-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.hs-demo-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border-color);
}

.hs-demo-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hs-demo-content {
    flex: 1;
}

.hs-demo-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.hs-demo-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 16px;
}

.hs-demo-btn {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 18px;
    border: 1.5px solid;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.hs-demo-btn:hover {
    opacity: 0.8;
}

/* Support Banner */
.hs-support-banner {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.hs-support-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    clip-path: polygon(0 30%, 100% 100%, 0 100%);
}

.hs-support-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hs-support-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.hs-support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-support-sub {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2px;
}

.hs-support-title {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hs-support-right {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.hs-support-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1.5px solid;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    background: #ffffff;
}

.hs-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hs-support-btn strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    line-height: 1.3;
}

.hs-support-btn span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    color: var(--text-gray);
}

.hs-support-btn--whatsapp {
    border-color: #25d366;
}

.hs-support-btn--whatsapp strong {
    color: #25d366;
}

.hs-support-btn--chat {
    border-color: #ef6c28;
    color: #ef6c28;
}

.hs-support-btn--chat strong {
    color: #ef6c28;
}

/* ===========================================
   HOSTING — Pricing Cards (.hs-)
   =========================================== */

.hs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.hs-pricing-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

.hs-pricing-grid--6 {
    max-width: 1200px;
}

.hs-pricing-card {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 36px 28px;
    background: #ffffff;
    text-align: center;
    position: relative;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

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

.hs-pricing-card--featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 212, 0, 0.15);
}

.hs-pricing-card--featured:hover {
    box-shadow: 0 8px 32px rgba(255, 212, 0, 0.2);
}

.hs-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hs-card-name {
    font-family: "Audiowide", cursive;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hs-card-price {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hs-card-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
}

.hs-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex: 1;
}

.hs-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.hs-card-feature:last-child {
    border-bottom: none;
}

.hs-card-feature svg {
    flex-shrink: 0;
    color: #16a34a;
}

.hs-card-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
}

.hs-card-btn:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

.hs-card-btn--outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
}

.hs-card-btn--outline:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #ffffff;
}

/* --- Document Cards --- */
.ds-doc-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.ds-doc-card-header {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ds-doc-card-header h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.ds-doc-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    flex-shrink: 0;
}

.ds-doc-badge--bireysel {
    background: rgba(255, 212, 0, 0.15);
    color: #b8860b;
}

.ds-doc-badge--kurumsal {
    background: rgba(40, 40, 40, 0.08);
    color: var(--text-gray);
}

.ds-doc-badge--belgesiz {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ds-doc-badge--mesleki {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ds-doc-card-body {
    padding: 20px;
}

.ds-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ds-doc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.ds-doc-list-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.ds-doc-list-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-hover);
}

/* --- Auction List --- */
.ds-auction-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ds-auction-list {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ds-auction-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
    transition: background var(--transition-speed) ease;
}

.ds-auction-item:last-child {
    border-bottom: none;
}

.ds-auction-item:hover {
    background: #f8fafc;
}

.ds-auction-domain {
    font-family: "Audiowide", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    min-width: 180px;
}

.ds-auction-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 120px;
}

.ds-auction-meta {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 140px;
}

.ds-auction-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    transition: background var(--transition-speed) ease;
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.ds-auction-btn:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

/* =========================================
   MOBILE MENU TOGGLE
   ========================================= */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   RESELLER HOSTING — CONFIGURATOR & SECTIONS
   ========================================= */

/* -- Configurator Layout -- */
.rs-configurator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.rs-config-features {
    padding: 32px;
    background: #fafafa;
    border-right: 1px solid var(--border-color);
}

.rs-config-features h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.rs-config-features .rs-config-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.rs-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.rs-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-dark);
}

.rs-feature-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
}

.rs-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
}

.rs-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.rs-feature-list li:last-child {
    border-bottom: none;
}

.rs-feature-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.rs-config-panel {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rs-config-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* -- Location Toggle -- */
.rs-location-toggle {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.rs-location-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rs-location-btn.active {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* -- Site Selector -- */
.rs-site-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-site-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rs-site-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color var(--transition-speed) ease;
}

.rs-site-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* -- Price Display -- */
.rs-price-display {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding: 16px 0;
}

.rs-price-left {
    flex: 1;
}

.rs-price-old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.rs-price-amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.rs-price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
}

.rs-price-badge {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b8860b;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.rs-price-period {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

.rs-config-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    text-decoration: none;
}

.rs-config-btn:hover {
    background: #e6bf00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.3);
}

/* -- Steps Section (3 Adımda) -- */
.rs-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.rs-step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.rs-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.rs-step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rs-step-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* -- Benefits Grid (Neden Reseller) -- */
.rs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.rs-benefit-card {
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.rs-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.rs-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.rs-benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rs-benefit-card p {
    font-size: 0.82rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* -- Tech Grid -- */
.rs-tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.rs-tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.rs-tech-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rs-tech-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* -- Extras Grid (4 cards) -- */
.rs-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.rs-extra-card {
    padding: 28px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.rs-extra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    color: inherit;
}

.rs-extra-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
}

.rs-extra-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.rs-extra-card p {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin: 0;
}

/* -- WHM Showcase -- */
.rs-whm-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.rs-whm-visual {
    background: #f5f5f5;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #94a3b8;
    text-align: center;
    padding: 24px;
}

.rs-whm-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.rs-whm-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.rs-whm-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rs-whm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}

.rs-whm-features li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* -- Testimonials -- */
.rs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.rs-testimonial-card {
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    transition: all var(--transition-speed) ease;
}

.rs-testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.rs-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.rs-testimonial-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

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

.rs-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.rs-testimonial-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.rs-testimonial-info span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* -- Migration Banner -- */
.rs-migration-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: var(--text-dark);
    border-radius: 12px;
    gap: 24px;
}

.rs-migration-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rs-migration-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 212, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.rs-migration-left strong {
    font-size: 1rem;
    color: #fff;
    display: block;
}

.rs-migration-left span {
    font-size: 0.82rem;
    color: #94a3b8;
}

.rs-migration-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-speed) ease;
}

.rs-migration-btn:hover {
    background: #e6bf00;
    color: var(--text-dark);
}

/* =========================================
   VDS SUNUCU — Period Toggle, Features & Panel
   ========================================= */

/* 4-Period Toggle */
.vds-period-toggle {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.vds-period-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.vds-period-btn:hover {
    color: var(--text-dark);
}

.vds-period-btn.active {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.vds-period-discount {
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Features Grid (3x2) */
.vds-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.vds-feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all var(--transition-speed) ease;
}

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

.vds-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.vds-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vds-feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Panel Showcase (2-col) */
.vds-panel-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.vds-panel-visual {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #94a3b8;
    padding: 32px;
}

.vds-panel-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.vds-panel-content > p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.vds-panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vds-panel-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.vds-panel-features li:last-child {
    border-bottom: none;
}

.vds-panel-features li svg {
    flex-shrink: 0;
    color: #16a34a;
}

/* =========================================
   10. RESPONSIVE - TABLET (max-width: 991px)
   ========================================= */
@media (max-width: 991.98px) {
    /* -- Hosting Bento Hero -- */
    .hs-bento-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* -- 4 Paketlik Grid (tablet) -- */
    .hs-pricing-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    /* -- VDS Period Toggle & Features Tablet -- */
    .vds-period-toggle {
        max-width: 500px;
    }
    .vds-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vds-panel-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* -- Reseller Configurator Tablet -- */
    .rs-configurator {
        grid-template-columns: 1fr;
    }

    .rs-config-features {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .rs-whm-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .rs-migration-banner {
        flex-direction: column;
        text-align: center;
    }

    /* -- 6 Paketlik Grid (tablet) -- */
    .hs-pricing-grid--6 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    /* -- Topbar -- */
    .topbar-area {
        height: auto;
        padding: 8px 0;
        font-size: 12px;
    }

    .topbar-area .d-flex {
        flex-wrap: wrap;
        gap: 6px;
    }

    .separator {
        margin: 0 8px;
    }

    /* -- Header -- */
    .h4-nav-row {
        height: 56px;
    }

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

    /* -- Mobile Nav -- */
    .main-nav.show {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 100;
        padding: 80px 24px 40px;
        overflow-y: auto;
    }

    .main-nav.show .nav-menu {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .main-nav.show .nav-link-custom {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border-color);
    }

    /* -- Megamenu Accordion (Mobil) -- */
    .main-nav.show .megamenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
    }

    .main-nav.show .nav-item-mega.submenu-open .megamenu {
        max-height: 1200px;
    }

    .main-nav.show .megamenu .m4-layout {
        flex-direction: column;
    }

    .main-nav.show .megamenu .m4-featured {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 0;
    }

    .main-nav.show .megamenu .m4-links-area {
        padding: 8px 0 16px;
    }

    .main-nav.show .megamenu .m4-links-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .main-nav.show .megamenu .m4-link {
        padding: 12px 4px;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .main-nav.show .megamenu .m4-link:last-child {
        border-bottom: none;
    }

    .main-nav.show .nav-item-mega .nav-arrow {
        transition: transform 0.3s ease;
    }

    .main-nav.show .nav-item-mega.submenu-open .nav-arrow {
        transform: rotate(180deg);
    }

    /* -- Cart -- */
    .corporate-cart {
        padding-left: 12px;
        border-left: none;
    }

    .cart-icon-wrapper {
        background-color: #f1f5f9;
        border-radius: 6px;
    }

    .cart-text-group {
        display: none;
    }

    /* -- DS Hero -- */
    .ds-hero-title {
        font-size: 2rem;
    }

    .ds-hero-subtitle {
        font-size: 0.9rem;
    }

    .ds-search-wrap {
        max-width: 100%;
    }

    /* -- Search Hero -- */
    .ds-hero--search .ds-hero-title {
        font-size: 2.2rem;
    }

    .ds-hero--search .ds-search-wrap {
        max-width: 100%;
    }

    /* -- Trust Badges -- */
    .ds-trust-badges-inner {
        gap: 24px;
    }

    .ds-trust-label {
        font-size: 0.8rem;
    }

    /* -- Discount Strip -- */
    .ds-discount-card {
        flex: 0 0 155px;
    }

    .ds-section-title {
        font-size: 1.6rem;
    }

    /* -- DS Transfer -- */
    .ds-transfer-banner {
        padding: 32px;
    }

    .ds-transfer-title {
        font-size: 1.4rem;
    }

    /* -- DS Steps -- */
    .ds-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* -- DS Auction -- */
    .ds-auction-domain {
        min-width: 140px;
        font-size: 0.9rem;
    }

    .ds-auction-meta {
        min-width: 110px;
    }

    /* -- Section Spacing -- */
    .section-spacing {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .custom-container {
        padding: 0 16px;
    }

    /* -- Hero Bento -- */
    .bento-title-lg {
        font-size: 1.75rem;
    }

    .bento-desc-lg {
        font-size: 1rem;
        max-width: 100%;
    }

    .bento-visual {
        min-height: 280px !important;
    }

    /* -- CTA Banner -- */
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* =========================================
   11. RESPONSIVE - MOBILE (max-width: 767px)
   ========================================= */
@media (max-width: 767.98px) {
    /* -- VDS Period Toggle & Features Mobile -- */
    .vds-period-toggle {
        flex-wrap: wrap;
        max-width: 360px;
    }
    .vds-period-btn {
        flex: 1 1 calc(50% - 4px);
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .vds-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .vds-panel-visual {
        min-height: 260px;
    }

    /* -- Reseller Configurator Mobile -- */
    .rs-config-features,
    .rs-config-panel {
        padding: 24px 16px;
    }

    .rs-feature-grid {
        grid-template-columns: 1fr;
    }

    .rs-feature-item:nth-child(odd) {
        border-right: none;
    }

    .rs-price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rs-price-amount {
        font-size: 2.2rem;
    }

    .rs-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rs-step-card {
        padding: 24px 16px;
    }

    .rs-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rs-extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .rs-whm-visual {
        min-height: 200px;
    }

    .rs-migration-banner {
        padding: 20px;
    }

    /* -- Hosting Bento Hero -- */
    .hs-bento-promo {
        padding: 24px 20px;
    }

    .hs-bento-promo-title {
        font-size: 1.3rem;
    }

    .hs-promo-timer-wrap {
        padding: 10px 20px;
    }

    .hs-promo-timer-box {
        width: 38px;
    }

    .hs-promo-timer-box strong {
        font-size: 0.9rem;
    }

    .hs-promo-coupon {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hs-bento-stat {
        padding: 18px;
        gap: 12px;
    }

    .hs-bento-stat strong {
        font-size: 1.25rem;
    }

    .hs-bento-stat-icon {
        width: 38px;
        height: 38px;
    }

    /* -- Demo Cards + Support -- */
    .hs-demo-grid {
        grid-template-columns: 1fr;
    }

    .hs-demo-card {
        padding: 20px;
        gap: 16px;
    }

    .hs-demo-logo {
        width: 90px;
        height: 90px;
    }

    .hs-support-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px 28px;
    }

    .hs-support-left {
        flex-direction: column;
    }

    .hs-support-right {
        flex-direction: column;
        width: 100%;
    }

    .hs-support-btn {
        justify-content: center;
        width: 100%;
    }

    /* -- Topbar -- */
    .topbar-area {
        font-size: 11px;
    }

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

    .separator {
        margin: 0 6px;
    }

    /* -- Header -- */
    .h4-nav-row {
        height: 52px;
    }

    .header-logo img {
        height: 26px;
    }

    /* -- DS Hero -- */
    .ds-hero-title {
        font-size: 1.6rem;
    }

    .ds-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .ds-search-bar {
        height: 52px;
        padding: 5px 5px 5px 18px;
    }

    .ds-search-input {
        font-size: 14px;
    }

    .ds-search-btn {
        width: 40px;
        height: 40px;
    }

    .ds-search-btn svg {
        width: 18px;
        height: 18px;
    }

    .ds-tld-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ds-section-title {
        font-size: 1.4rem;
    }

    .ds-section-subtitle {
        font-size: 0.85rem;
    }

    .ds-tld-card {
        padding: 22px 16px;
    }

    .ds-tld-card-ext {
        font-size: 1.3rem;
    }

    .ds-tld-card-price {
        font-size: 1.35rem;
    }

    /* -- DS Search Results -- */
    .ds-result-row {
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .ds-result-domain {
        width: 100%;
        margin-bottom: 6px;
        font-size: 0.88rem;
    }

    .ds-result-price {
        min-width: auto;
    }

    .ds-result-btn {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    /* -- Search Hero Mobile -- */
    .ds-hero--search .ds-hero-title {
        font-size: 1.6rem;
    }

    .ds-hero--search .ds-hero-subtitle {
        font-size: 0.85rem;
    }

    .ds-hero--search .ds-search-bar {
        height: 56px;
        border-radius: 10px;
    }

    .ds-hero--search .ds-search-btn {
        height: 42px;
        padding: 0 16px;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .ds-hero--search .ds-search-btn svg {
        display: none;
    }

    .ds-breadcrumb {
        margin-bottom: 20px;
        font-size: 0.75rem;
    }

    /* -- Trust Badges Mobile -- */
    .ds-trust-badges-inner {
        flex-direction: column;
        gap: 12px;
    }

    .ds-trust-divider {
        width: 60px;
        height: 1px;
    }

    /* -- Loading Card Mobile -- */
    .ds-loading-card {
        padding: 40px 24px;
    }

    .ds-loading-title {
        font-size: 1.2rem;
    }

    .ds-loading-subtitle {
        font-size: 0.85rem;
    }

    /* -- Results Section Mobile -- */
    .ds-results-section {
        padding: 24px 0;
    }

    .ds-results-header {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .ds-inline-promo {
        padding: 12px 16px;
        gap: 10px;
    }

    .ds-inline-promo-icon {
        width: 32px;
        height: 32px;
    }

    .ds-inline-promo-text {
        font-size: 0.82rem;
    }

    /* -- Discount Strip Mobile -- */
    .ds-discount-scroll {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ds-discount-card {
        flex: 0 0 150px;
        padding: 18px 14px 16px;
    }

    .ds-discount-tld {
        font-size: 1.1rem;
    }

    .ds-discount-new {
        font-size: 1.1rem;
    }

    /* -- DS Transfer -- */
    .ds-transfer-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .ds-transfer-desc {
        max-width: 100%;
    }

    .ds-transfer-title {
        font-size: 1.3rem;
    }

    /* -- DS FAQ -- */
    .ds-faq-btn {
        font-size: 0.88rem;
        padding: 16px 0;
    }

    .ds-faq-body {
        font-size: 0.82rem;
    }

    /* -- DS Steps -- */
    .ds-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ds-step-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* -- DS Whois -- */
    .ds-whois-label {
        width: 140px;
        font-size: 0.8rem;
        padding: 12px 14px;
    }

    .ds-whois-value {
        font-size: 0.8rem;
        padding: 12px 14px;
    }

    /* -- DS Transfer Form -- */
    .ds-transfer-input-group {
        height: 50px;
        padding: 5px 5px 5px 16px;
    }

    /* -- DS Bulk -- */
    .ds-bulk-textarea {
        min-height: 110px;
        font-size: 13px;
    }

    .ds-bulk-result-item {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 10px;
    }

    /* -- DS Price Table -- */
    .ds-price-th,
    .ds-price-td {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
    .ds-price-search-wrap {
        max-width: 100%;
    }
    .ds-price-action-btn {
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    /* -- Hosting Pricing Cards -- */
    .hs-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hs-pricing-card--featured {
        order: -1;
    }

    /* -- DS Auction -- */
    .ds-auction-item {
        flex-wrap: wrap;
        padding: 14px 16px;
        gap: 12px;
    }

    .ds-auction-domain {
        min-width: 100%;
        font-size: 0.95rem;
    }

    .ds-auction-price {
        font-size: 1rem;
        min-width: auto;
    }

    .ds-auction-meta {
        min-width: auto;
    }

    /* -- DS Doc Card -- */
    .ds-doc-card-header h5 {
        font-size: 1rem;
    }

    .ds-doc-list-item {
        font-size: 0.8rem;
    }

    /* -- Section Spacing -- */
    .section-spacing {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .custom-container {
        padding: 0 12px;
    }

    /* -- Hero Bento -- */
    .bento-title-lg {
        font-size: 1.4rem;
    }

    .bento-desc-lg {
        font-size: 0.9rem;
    }

    .bento-title-sm {
        font-size: 1.1rem;
    }

    .bento-desc-sm {
        font-size: 0.85rem;
    }

    .bento-visual {
        min-height: 200px !important;
    }

    .bento-btn {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    /* -- Feature Strip heading -- */
    .section-spacing h2 {
        font-size: 1.4rem !important;
    }

    .t6-card {
        padding: 18px;
    }

    .t6-text {
        font-size: 0.8rem;
    }

    /* -- Testimonials horizontal scroll -- */
    .testimonial-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .testimonial-scroll::-webkit-scrollbar {
        display: none;
    }

    .testimonial-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-scroll > [class*="col"] {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    /* -- CTA Banner -- */
    [style*="max-width: 800px"] {
        padding: 32px 20px !important;
    }

    [style*="max-width: 800px"] h2 {
        font-size: 1.4rem !important;
    }

    [style*="max-width: 800px"] p {
        font-size: 0.85rem !important;
    }

    /* -- Footer -- */
    footer .custom-container {
        text-align: center;
    }

    footer .d-flex.gap-3 {
        justify-content: center;
    }

    footer h6 {
        margin-top: 8px;
    }

    footer ul {
        text-align: center;
    }

    /* -- Marquee -- */
    .marquee-track {
        gap: 40px;
    }

    .marquee-logo {
        height: 22px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 30px;
    }

    /* -- Feature strip config -- */
    [style*="padding-top: 80px"] {
        padding-top: 36px !important;
    }

    /* -- Marquee section -- */
    .marquee-section {
        margin-top: 36px !important;
        padding: 24px 0 !important;
    }
}

/* =========================================
   12. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .topbar-area .d-flex > div:last-child {
        display: none;
    }

    /* -- Hosting Bento Hero Small Mobile -- */
    .hs-bento-promo {
        padding: 20px 16px;
    }

    .hs-bento-promo-title {
        font-size: 1.15rem;
    }

    .hs-bento-promo-desc {
        font-size: 0.78rem;
    }

    .hs-promo-timer-wrap {
        padding: 10px 16px;
    }

    .hs-promo-timer-box {
        width: 34px;
    }

    .hs-promo-timer-box strong {
        font-size: 0.82rem;
    }

    .hs-promo-timer-box span {
        font-size: 0.48rem;
    }

    .hs-promo-timer-sep {
        font-size: 0.7rem;
    }

    .hs-promo-coupon {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding: 7px;
    }

    .hs-bento-promo-btn {
        margin-top: 8px;
    }

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

    .hs-bento-stat {
        padding: 16px;
    }

    .hs-bento-stat strong {
        font-size: 1.15rem;
    }

    .hs-bento-stat span {
        font-size: 0.78rem;
    }

    /* -- Demo + Support Small Mobile -- */
    .hs-demo-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .hs-demo-logo {
        width: 80px;
        height: 80px;
    }

    .hs-demo-title {
        font-size: 0.95rem;
    }

    .hs-demo-desc {
        font-size: 0.78rem;
    }

    .hs-support-title {
        font-size: 0.95rem;
    }

    .hs-support-sub {
        font-size: 0.75rem;
    }

    .hs-support-btn {
        padding: 10px 14px;
    }

    .hs-support-btn strong {
        font-size: 0.8rem;
    }

    /* -- DS Hero -- */
    .ds-hero-title {
        font-size: 1.3rem;
    }

    .ds-hero-subtitle {
        font-size: 0.8rem;
    }

    .ds-hero-label {
        font-size: 10px;
        padding: 3px 10px;
    }

    /* -- Search Hero Small Mobile -- */
    .ds-hero--search .ds-hero-title {
        font-size: 1.3rem;
    }

    .ds-hero--search .ds-search-bar {
        height: 50px;
        padding: 4px 4px 4px 14px;
    }

    .ds-hero--search .ds-search-btn {
        height: 40px;
        padding: 0 14px;
        font-size: 0.72rem;
    }

    .ds-breadcrumb {
        margin-bottom: 16px;
    }

    /* -- Discount Strip Small Mobile -- */
    .ds-discount-card {
        flex: 0 0 140px;
        padding: 16px 12px 14px;
    }

    .ds-discount-tld {
        font-size: 1rem;
    }

    .ds-discount-new {
        font-size: 1rem;
    }

    .ds-discount-btn {
        padding: 6px 14px;
        font-size: 0.68rem;
    }

    .ds-search-bar {
        height: 48px;
        padding: 4px 4px 4px 14px;
    }

    .ds-search-btn {
        width: 38px;
        height: 38px;
    }

    .ds-tld-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .ds-section-title {
        font-size: 1.2rem;
    }

    /* -- DS Price Table Small Mobile -- */
    .ds-price-th:nth-child(4),
    .ds-price-td:nth-child(4) {
        display: none;
    }

    /* -- Hosting Cards Small Mobile -- */
    .hs-pricing-card {
        padding: 28px 20px;
    }

    .hs-card-price {
        font-size: 2rem;
    }

    .ds-tld-card-ext {
        font-size: 1.15rem;
    }

    .ds-tld-card-price {
        font-size: 1.2rem;
    }

    .ds-tld-card-btn {
        padding: 7px 20px;
        font-size: 12px;
    }

    .ds-transfer-title {
        font-size: 1.2rem;
    }

    .ds-transfer-desc {
        font-size: 0.82rem;
    }

    /* -- DS Steps -- */
    .ds-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ds-step-card {
        padding: 16px 12px;
    }

    /* -- DS Auction -- */
    .ds-auction-btn {
        width: 100%;
        justify-content: center;
    }

    .bento-title-lg {
        font-size: 1.2rem;
    }

    .bento-title-sm {
        font-size: 1rem;
    }

    .section-spacing h2 {
        font-size: 1.2rem !important;
    }

    .t6-card {
        padding: 16px;
    }

    [style*="max-width: 800px"] h2 {
        font-size: 1.2rem !important;
    }
}

/* =========================================
   ABOUT PAGE — Hero Banner
   ========================================= */
.about-hero {
    padding: 44px 0 20px;
    position: relative;
}

.about-hero-inner {
    background: #282828;
    border-radius: 12px;
    padding: 40px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.about-hero-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-hero-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-hero-icon svg {
    width: 24px;
    height: 24px;
    stroke: #282828;
    fill: none;
}

.about-hero-title {
    font-family: "Audiowide", cursive;
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 4px 0 0;
}

.about-hero-logo {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
}

.about-hero-logo img {
    height: 80px;
    width: auto;
}

/* =========================================
   ABOUT PAGE — Content Card
   ========================================= */
.about-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.about-content-heading {
    font-family: "Audiowide", cursive;
    font-size: 1.15rem;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.about-section {
    margin-bottom: 28px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-section p {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* =========================================
   ABOUT PAGE — Quick Menu Sidebar
   ========================================= */
.about-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.about-sidebar-title {
    font-family: "Audiowide", cursive;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.about-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-sidebar-nav li {
    border-bottom: 1px solid var(--border-color);
}

.about-sidebar-nav li:last-child {
    border-bottom: none;
}

.about-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: var(--text-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.about-sidebar-link:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 28px;
}

.about-sidebar-link.active {
    background: rgba(255, 212, 0, 0.06);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 21px;
}

.about-sidebar-link svg {
    width: 16px;
    height: 16px;
    opacity: 0.3;
    flex-shrink: 0;
    transition: all var(--transition-speed) ease;
}

.about-sidebar-link:hover svg,
.about-sidebar-link.active svg {
    opacity: 0.8;
    color: var(--primary-color);
}

/* =========================================
   ABOUT PAGE — Contact Info Bar
   ========================================= */
.about-contact-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-contact-item {
    background: var(--bg-black);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-speed) ease;
}

.about-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 212, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-contact-icon svg {
    stroke: var(--primary-color);
    width: 22px;
    height: 22px;
    fill: none;
}

.about-contact-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 2px;
    display: block;
}

.about-contact-value {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
}

.about-contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-contact-value a:hover {
    color: var(--primary-color);
}

/* =========================================
   ABOUT PAGE — Responsive
   ========================================= */
@media (max-width: 991.98px) {
    .about-sidebar {
        position: static;
    }

    .about-contact-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 20px 0;
    }

    .about-hero-inner {
        padding: 28px 24px;
    }

    .about-hero-title {
        font-size: 1.1rem;
    }

    .about-hero-logo {
        display: none;
    }

    .about-content {
        padding: 24px;
    }

    .about-content-heading {
        font-size: 1rem;
    }

    .about-sidebar-link {
        padding: 12px 20px;
    }

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

    .about-contact-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 20px 16px;
    }

    .about-content-heading {
        font-size: 0.95rem;
    }

    .about-section h3 {
        font-size: 0.9rem;
    }

    .about-section p {
        font-size: 0.85rem;
    }

    .about-hero-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .about-hero-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* =========================================
   EMAIL PAGE — Hero Section
   ========================================= */
.email-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.email-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.email-hero-content {
    flex: 1;
    min-width: 0;
}

.email-hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #282828;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.email-hero-title {
    font-family: "Audiowide", cursive;
    font-size: 2.4rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.email-hero-title span {
    color: var(--primary-color);
}

.email-hero-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

.email-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.email-hero-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    fill: none;
    flex-shrink: 0;
}

.email-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #282828;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.email-hero-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 212, 0, 0.3);
    color: #282828;
}

.email-hero-visual {
    flex-shrink: 0;
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-hero-visual svg {
    opacity: 0.15;
}

/* =========================================
   EMAIL PAGE — Setup Steps
   ========================================= */
.email-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.email-step {
    text-align: center;
    position: relative;
    padding: 32px 24px;
}

.email-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #282828;
    font-family: "Audiowide", cursive;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.email-step-title {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.email-step-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.email-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 58px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

/* =========================================
   EMAIL PAGE — Horizontal Feature Cards
   ========================================= */
.email-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.email-showcase-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 32px;
    transition: all var(--transition-speed) ease;
}

.email-showcase-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.email-showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-showcase-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    fill: none;
}

.email-showcase-body {
    flex: 1;
    min-width: 0;
}

.email-showcase-title {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.email-showcase-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   EMAIL PAGE — Benefits Grid
   ========================================= */
.email-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.email-benefit {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-speed) ease;
}

.email-benefit:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.email-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-benefit-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    fill: none;
}

.email-benefit-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* =========================================
   EMAIL PAGE — Responsive
   ========================================= */
@media (max-width: 991.98px) {
    .email-hero {
        padding: 60px 0;
    }

    .email-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .email-hero-visual {
        width: 100%;
        max-width: 320px;
    }

    .email-hero-title {
        font-size: 1.8rem;
    }

    .email-steps {
        gap: 20px;
    }

    .email-step:not(:last-child)::after {
        display: none;
    }

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

@media (max-width: 767.98px) {
    .email-hero {
        padding: 48px 0;
    }

    .email-hero-title {
        font-size: 1.4rem;
    }

    .email-hero-desc {
        font-size: 0.85rem;
    }

    .email-hero-visual {
        display: none;
    }

    .email-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .email-step {
        padding: 24px 16px;
    }

    .email-showcase-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .email-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .email-hero-title {
        font-size: 1.2rem;
    }

    .email-hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================================================
   E-POSTA PRICING — Cenuta-Inspired Cards (.ep-*)
   ======================================================================== */

.ep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Card Base --- */
.ep-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed) ease;
    position: relative;
}

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

.ep-card--featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(255, 212, 0, 0.15);
}

.ep-card--featured:hover {
    box-shadow: 0 8px 36px rgba(255, 212, 0, 0.22);
}

/* --- Card Header (storage info) --- */
.ep-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-black);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.ep-card-header svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* --- Card Body --- */
.ep-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* --- Plan Name --- */
.ep-card-name {
    font-family: "Audiowide", cursive;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

/* --- Location Badge --- */
.ep-card-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 14px;
}

.ep-card-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* --- Badges Row --- */
.ep-card-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ep-card-badge {
    font-family: "Poppins", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    background: var(--primary-color);
    color: var(--text-dark);
}

.ep-card-badge--outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-gray);
}

/* --- Price Section --- */
.ep-card-price-wrapper {
    text-align: center;
    margin-bottom: 6px;
}

.ep-card-price-old {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.ep-card-price-new {
    font-family: "Poppins", sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.ep-card-price-new span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
}

/* --- Target Audience --- */
.ep-card-audience {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    padding: 0;
}

/* --- CTA Button --- */
.ep-card-cta {
    display: block;
    width: 100%;
    padding: 13px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
}

.ep-card-cta:hover {
    background: var(--primary-hover);
    color: var(--text-dark);
}

.ep-card-cta--outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
}

.ep-card-cta--outline:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #ffffff;
}

/* --- Renew Text --- */
.ep-card-renew {
    display: block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #16a34a;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* --- Features Section --- */
.ep-card-features {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    width: 100%;
}

.ep-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(40, 40, 40, 0.05);
}

.ep-feature:last-child {
    border-bottom: none;
}

.ep-feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ep-feature-icon--green {
    background: rgba(22, 163, 74, 0.1);
}

.ep-feature-icon--green svg {
    stroke: #16a34a;
}

.ep-feature-icon--blue {
    background: rgba(6, 182, 212, 0.1);
}

.ep-feature-icon--blue svg {
    stroke: #06b6d4;
}

.ep-feature-icon--purple {
    background: rgba(139, 92, 246, 0.1);
}

.ep-feature-icon--purple svg {
    stroke: #8b5cf6;
}

.ep-feature-icon--orange {
    background: rgba(249, 115, 22, 0.1);
}

.ep-feature-icon--orange svg {
    stroke: #f97316;
}

.ep-feature-icon--red {
    background: rgba(239, 68, 68, 0.1);
}

.ep-feature-icon--red svg {
    stroke: #ef4444;
}

.ep-feature-icon--yellow {
    background: rgba(255, 212, 0, 0.1);
}

.ep-feature-icon--yellow svg {
    stroke: var(--primary-hover);
}

.ep-feature-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ep-feature-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ep-feature-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* --- EP Responsive --- */
@media (max-width: 991.98px) {
    .ep-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .ep-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

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

    .ep-card-price-new {
        font-size: 2.2rem;
    }
}

/* ═══════════════════════════════════════════════════
   CHECKOUT SHARED STYLES
   (configure.html, cart.html, checkout.html, order-success.html)
═══════════════════════════════════════════════════ */

/* ── CHECKOUT HEADER ── */
.checkout-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
}
.checkout-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-header .logo img { height: 36px; }
.checkout-header .help-link {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.checkout-header .help-link:hover { color: #282828; }

/* ── PROGRESS BAR ── */
.progress-bar-wrap {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}
.progress-steps {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.progress-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}
.progress-steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    height: 2px;
    background: #e2e8f0;
}
.progress-steps .step.done:not(:last-child)::after { background: #22c55e; }
.progress-steps .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    z-index: 1;
    transition: all .2s;
}
.progress-steps .step.active .step-circle {
    background: #ffd400;
    border-color: #ffd400;
    color: #282828;
}
.progress-steps .step.done .step-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    font-size: 14px;
}
.progress-steps .step-label {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
}
.progress-steps .step.active .step-label { color: #282828; font-weight: 600; }
.progress-steps .step.done .step-label { color: #22c55e; }

/* ── SHARED TOAST SYSTEM ── */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.vpr-toast {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #282828;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    transform: translateY(8px);
    min-width: 240px;
    max-width: 320px;
}
.vpr-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.vpr-toast.toast-success { border-left: 4px solid #22c55e; }
.vpr-toast.toast-error   { border-left: 4px solid #ef4444; }
.vpr-toast.toast-info    { border-left: 4px solid #3b82f6; }
.vpr-toast i { font-size: 16px; }
.vpr-toast.toast-success i { color: #22c55e; }
.vpr-toast.toast-error   i { color: #ef4444; }
.vpr-toast.toast-info    i { color: #3b82f6; }

/* ── SHARED ANIMATIONS ── */
@keyframes co-fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes co-shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
@keyframes co-priceFlash {
    0%   { background: #ffd400; border-radius: 4px; }
    100% { background: transparent; }
}
.co-shake  { animation: co-shake .4s ease; }
.co-fade-in { animation: co-fadeIn .2s ease; }
.co-price-flash { animation: co-priceFlash .5s ease forwards; display: inline-block; padding: 0 4px; }
