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

:root {
    /* Ana Tasarım Değişkenleri */
    --blue: #0118ca;
    --blue-d: #01119b;
    --navy: #0d0f2d;
    --navy-m: #141640;
    --blue-l: #e6e8fa;
    --blue-ll: #f0f2fb;
    --white: #ffffff;
    --bg: #f8f9fc;
    --g1: #f7f8fb;
    --g2: #eef0f8;
    --g3: #dde0f0;
    --g4: #8890b8;
    --g5: #565e8a;
    --g6: #2d3460;
    --text: #0d0f2d;
    --bdr: #d4d8ee;
    --orange: #f59e0b;

    /* Hero/Slide Renkleri */
    --wp-color: #0118ca;
    --n8n-color: #ff3e00;
    --ui-color: #8b5cf6;
    --dp-color: #10b981;

    /* Diğer */
    --sh: 0 1px 3px rgba(13, 15, 45, 0.07);
    --r: 10px;
}

.zebra-even {
    background: #f8f9fc;
}

.zebra-odd {
    background: white;
}

/* HEADER EXTENSIONS */
.h-cart {
    position: relative;
    color: var(--navy);
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--blue);
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.h-sep {
    height: 24px;
    width: 1px;
    background: var(--bdr);
    margin: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* 2026 UNIFIED PREMIUM HEADER SYSTEM */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 84px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.header-main.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom-color: rgba(13, 15, 45, 0.05);
}

.header-main.dark-nav .h-nav-link,
.header-main.dark-nav .h-user-name,
.header-main.dark-nav .h-action-btn {
    color: white !important;
}

.header-main.dark-nav .h-user-trigger {
    background: rgba(255, 255, 255, 0.1);
}

.header-main.dark-nav .h-logo img {
    filter: brightness(0) invert(1);
}

.header-main.dark-nav .h-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.h-logo img {
    height: 42px;
    width: auto;
    transition: transform 0.3s;
}

.h-logo:hover img {
    transform: scale(1.02);
}

/* MAIN NAV */
.h-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 60px;
}

.h-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.h-nav-link:hover {
    background: rgba(26, 26, 255, 0.05);
    color: var(--blue);
}

/* MEGA MENU & DROPDOWN ENGINE */
.h-nav-item {
    position: relative;
}

.h-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 680px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(13, 15, 45, 0.2);
    border: 1px solid rgba(13, 15, 45, 0.05);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.h-nav-item:hover .h-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mega-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    transition: all 0.2s;
}

.mega-card:hover {
    background: var(--blue-ll);
}

.mega-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-icon.medical {
    background: #e0f2fe;
    color: #0ea5e9;
}

.mega-icon.legal {
    background: #fef3c7;
    color: #d97706;
}

.mega-icon.ecommerce {
    background: #dcfce7;
    color: #16a34a;
}

.mega-icon.tech {
    background: #e0e7ff;
    color: #4f46e5;
}

.mega-title {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 2px;
}

.mega-desc {
    display: block;
    font-size: 13px;
    color: var(--g5);
    line-height: 1.4;
}

/* USER DROPDOWN */
.h-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(13, 15, 45, 0.15);
    padding: 12px;
    border: 1px solid rgba(13, 15, 45, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s;
}

.h-nav-item:hover .h-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.h-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--g5);
    transition: all 0.2s;
}

.h-dropdown-menu a:hover {
    background: var(--blue-ll);
    color: var(--blue);
}

.h-menu-sep {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 8px 12px;
}

.h-dropdown-menu a.logout {
    color: #f43f5e;
}

/* ACTIONS AREA */
.h-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    position: relative;
}

.h-action-btn:hover {
    background: rgba(13, 15, 45, 0.05);
    color: var(--blue);
}

.cart-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--blue);
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-user-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    background: #f1f4f9;
    cursor: pointer;
    transition: all 0.2s;
}

.h-user-trigger:hover {
    background: #e8ecf3;
}

.h-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--g4);
}

.h-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.h-btn-cta {
    background: var(--blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(26, 26, 255, 0.25);
    margin-left: 12px;
    transition: all 0.3s;
}

.h-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26, 26, 255, 0.35);
    background: var(--blue-d);
}

.mn-arrow {
    font-size: 15px;
    opacity: 0.5;
    transition: transform .2s;
}

.mn-item:hover .mn-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.mega-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--bdr);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(13, 15, 45, 0.13);
    padding: 24px;
    min-width: 520px;
    opacity: 0;
    visibility: hidden;
    transition: all .22s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
    margin-top: 4px;
}

.mn-item:hover .mega-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-drop.drop-wide {
    min-width: 680px;
}

.mega-drop-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--g4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bdr);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

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

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: background .15s;
    cursor: pointer;
}

.mega-item:hover {
    background: var(--blue-l);
}

.mega-item:hover .mega-item-name {
    color: var(--navy);
}

.mega-ico {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.mega-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1px;
}

.mega-item-sub {
    font-size: 15px;
    color: var(--g4);
    line-height: 1.4;
}

.simple-drop {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--bdr);
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(13, 15, 45, 0.11);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
    margin-top: 4px;
}

.mn-item:hover .simple-drop {
    opacity: 1;
    visibility: visible;
}

.sdrop-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--g6);
    transition: all .15s;
    cursor: pointer;
}

.sdrop-item:hover {
    background: var(--blue-l);
    color: var(--navy);
}

.nb {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.nb-g {
    background: var(--blue);
    color: white;
}

.nb-f {
    background: var(--navy);
    color: white;
}

.nb-o {
    background: var(--orange);
    color: white;
}

/* HERO */
.hero {
    background: linear-gradient(130deg, var(--navy) 0%, #0a0c28 50%, #141680 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 100% at 78% 50%, rgba(26, 26, 255, 0.1) 0%, transparent 65%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-blue-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    z-index: 2;
}

/* HERO SLIDER 2026 */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #020410;
}

/* Background Wireframe Elementi (Profesyonel Çizgiler) */
.hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    transform: perspective(600px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: wireframeGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes wireframeGrid {
    0% {
        transform: perspective(600px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(600px) rotateX(60deg) translateY(80px) translateZ(-200px);
    }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(26, 26, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #020410 20%, rgba(2, 4, 16, 0.8) 50%, rgba(2, 4, 16, 0.4) 100%);
    z-index: 3;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    color: white;
}

.slide-pill {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s 0.2s;
}

.slide.active .slide-pill {
    transform: translateY(0);
    opacity: 1;
}

.slide h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    letter-spacing: -2px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s 0.3s;
}

.slide.active h1 {
    transform: translateY(0);
    opacity: 1;
}

.slide h1 span {
    color: var(--active-color);
}

.slide-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s 0.4s;
}

.slide.active .slide-desc {
    transform: translateY(0);
    opacity: 1;
}

.slide-actions {
    display: flex;
    gap: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s 0.5s;
}

.slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* SLIDER NAV (TURK TELEKOM STYLE) */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    padding: 12px 24px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background: white;
    color: black;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* THEME SPECIFICS */
.slide-wp {
    --active-color: var(--wp-color);
}

.slide-n8n {
    --active-color: var(--n8n-color);
}

.slide-ui {
    --active-color: var(--ui-color);
}

.slide-dp {
    --active-color: var(--dp-color);
}

.bg-anim {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--active-color) 0%, transparent 70%);
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 5;
    transition: all 1.5s ease;
}

.slide.active .bg-anim {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    animation: rise 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img-floating {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 1;
    filter: blur(40px);
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 26, 255, 0.1);
    border: 1px solid rgba(26, 26, 255, 0.18);
    color: #7a9fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .9px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hero-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero h1 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: white;
    letter-spacing: -.8px;
    line-height: 1.18;
    margin-bottom: 12px;
}

.hero h1 span {
    color: #7a9fff;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    line-height: 1.72;
    margin-bottom: 24px;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.hbtn-p {
    background: var(--blue);
    color: white;
}

.hbtn-p:hover {
    background: var(--blue-d);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 26, 255, 0.25);
}

.hbtn-g {
    background: rgba(255, 255, 255, 0.09);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.hbtn-g:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.ht-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
}

.ht-item strong {
    color: rgba(255, 255, 255, 0.72);
}

/* HERO CARD */
.hpc {
    background: white;
    border-radius: 14px;
    padding: 24px 22px;
    width: 260px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
    flex-shrink: 0;
}

.hpc-bdg {
    display: inline-block;
    background: var(--blue-l);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid rgba(26, 26, 255, 0.15);
}

.hpc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--g4);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hpc-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 3px;
}

.hpc-bill {
    font-size: 15px;
    color: var(--g4);
    margin-bottom: 14px;
}

.hpc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.hpc-list li {
    font-size: 15px;
    color: var(--g6);
    display: flex;
    gap: 7px;
    align-items: flex-start;
    line-height: 1.4;
}

.hpc-list li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hpc-btn {
    display: block;
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    transition: background .2s;
}

.hpc-btn:hover {
    background: var(--blue-d);
}

/* MAIN */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 272px;
    gap: 18px;
    align-items: start;
}

/* CARD */
.card {
    background: white;
    border-radius: var(--r);
    border: 1px solid var(--bdr);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--sh);
}

.card-hdr {
    padding: 16px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.card-ttl {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.card-lnk {
    font-size: 15px;
    color: var(--blue-d);
    font-weight: 500;
}

.card-lnk:hover {
    text-decoration: underline;
}

/* STATS */
.stats {
    background: var(--navy);
    border-radius: var(--r);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px;
}

.stat {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat:last-child {
    border-right: none;
}

.stat-v {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 3px;
}

.stat-v em {
    color: var(--blue);
    font-style: normal;
}

.stat-l {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.3);
}

/* PREMIUM SECTORS */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sec-item {
    background: white;
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid var(--bdr);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sec-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(13, 15, 45, 0.1);
    border-color: var(--blue);
}

.sec-ico-box {
    width: 60px;
    height: 60px;
    background: var(--blue-l);
    color: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.sec-item:hover .sec-ico-box {
    background: var(--blue);
    color: white;
    transform: rotate(-5deg);
}

.sec-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sec-desc {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.6;
}

/* PROCESS STEPS */
.process-section {
    padding: 80px 0;
    background: var(--white);
    border-bottom: 1px solid var(--bdr);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.step-item {
    position: relative;
    padding: 24px;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--blue-l);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.5;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.step-desc {
    font-size: 15px;
    color: var(--g5);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 64px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--blue-l);
}

/* PRODUCT GRID */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bdr);
    border-top: 1px solid var(--bdr);
}

.prod {
    background: white;
    padding: 22px 20px;
    transition: background .18s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.prod:hover {
    background: var(--blue-ll);
}

.prod:hover .prod-arr {
    opacity: 1;
}

.prod-arr {
    position: absolute;
    top: 14px;
    right: 14px;
    color: var(--blue);
    opacity: 0;
    transition: all .18s;
    font-size: 15px;
}

.prod-bdg {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    align-self: flex-start;
}

.pb-g {
    background: var(--blue);
    color: white;
}

.pb-f {
    background: var(--navy);
    color: white;
}

.pb-o {
    background: var(--orange);
    color: white;
}

.prod-ico {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 11px;
}

.ic-g {
    background: #d1fae5;
}

.ic-f {
    background: var(--blue-l);
}

.ic-o {
    background: #fff7ed;
}

.ic-p {
    background: #ede9fe;
}

.ic-t {
    background: #ccfbf1;
}

.ic-r {
    background: #f0fdf4;
}

.prod-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.prod-desc {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.prod-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.prod-btn {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-d);
    border: 1px solid rgba(26, 26, 255, 0.18);
    padding: 4px 10px;
    border-radius: 5px;
    transition: all .18s;
    background: white;
}

.prod:hover .prod-btn {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* HOW */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bdr);
    border-top: 1px solid var(--bdr);
}

.how-item {
    background: white;
    padding: 22px 18px;
}

.how-n {
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 11px;
}

.how-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.how-item p {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.5;
}

/* PRICING */
.ptbl {
    padding: 0 20px 20px;
}

.pt-hdr {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 0;
    border-bottom: 2px solid var(--bdr);
}

.pt-hdr>span {
    font-size: 15px;
    font-weight: 700;
    color: var(--g4);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pt-hdr>span:not(:first-child) {
    text-align: center;
}

.pt-pl {
    text-align: center;
    padding: 6px 4px;
    border-radius: 6px;
}

.pt-pl.ft {
    background: var(--navy);
    color: white;
}

.pt-pn {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.pt-pp {
    font-size: 16px;
    font-weight: 800;
    display: block;
    letter-spacing: -.5px;
}

.pt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid var(--g2);
    align-items: center;
    transition: background .15s;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pt-row:hover {
    background: var(--g1);
}

.pt-fn {
    font-size: 15px;
    font-weight: 500;
}

.pt-fs {
    font-size: 15px;
    color: var(--g4);
}

.pt-c {
    text-align: center;
    font-size: 15px;
}

.chk {
    color: var(--blue);
    font-weight: 700;
}

.crs {
    color: var(--g3);
}

.ptxt {
    color: var(--g5);
    font-weight: 500;
    font-size: 15px;
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bdr);
    border-top: 1px solid var(--bdr);
}

.testi {
    background: white;
    padding: 22px 20px;
}

.testi-stars {
    color: var(--orange);
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    color: var(--g6);
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 32px;
    height: 32px;
    background: var(--blue-l);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.testi-name {
    font-size: 15px;
    font-weight: 700;
}

.testi-role {
    font-size: 15px;
    color: var(--g4);
}

/* SIDEBAR */
.sbc {
    background: white;
    border-radius: var(--r);
    border: 1px solid var(--bdr);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--sh);
}

.sbh {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bdr);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 7px;
}

.sbh .dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.form {
    padding: 13px 15px;
}

.fg {
    margin-bottom: 9px;
}

.fg label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--g5);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 9px 11px;
    background: var(--g1);
    border: 1.5px solid var(--bdr);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    outline: none;
    transition: all .18s;
    appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 26, 255, 0.08);
}

.fg textarea {
    resize: vertical;
    min-height: 66px;
}

.fbtn {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background .2s;
}

.fbtn:hover {
    background: var(--blue-d);
}

.ql-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid var(--g2);
    transition: all .15s;
    cursor: pointer;
}

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

.ql-item:hover {
    background: var(--blue-l);
}

.ql-l {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ql-name {
    font-weight: 600;
    font-size: 15px;
}

.ql-sub {
    font-size: 15px;
    color: var(--g4);
    display: block;
}

.ql-arr {
    color: var(--g4);
    font-size: 15px;
}

.promo {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
    border-radius: var(--r);
    padding: 20px 16px;
    margin-bottom: 14px;
    text-align: center;
}

.promo-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.promo-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.promo-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 14px;
}

.promo-btn {
    display: block;
    background: white;
    color: var(--navy);
    text-align: center;
    padding: 9px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    transition: all .2s;
}

.promo-btn:hover {
    background: var(--blue-l);
}

.trust-inner {
    padding: 16px 15px;
    text-align: center;
}

.trust-ico {
    font-size: 26px;
    margin-bottom: 6px;
}

.trust-t {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-d {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.5;
    margin-bottom: 12px;
}

.bdgs {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.bdg {
    background: var(--g2);
    color: var(--g6);
    font-size: 15px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
}

.faqm-item {
    padding: 11px 15px;
    border-bottom: 1px solid var(--g2);
}

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

.faqm-q {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.faqm-q span {
    color: var(--g4);
}

.faqm-a {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.5;
}

/* FIGMA UI MOCKUP */
.figma-container {
    perspective: 1000px;
    padding: 20px;
}

.figma-wrap {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    transform: rotateX(2deg) rotateY(-5deg);
    transition: transform 0.6s;
}

.figma-wrap:hover {
    transform: rotateX(0) rotateY(0) scale(1.02);
}

.fig-top {
    height: 40px;
    background: #2c2c2c;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
}

.fig-tools {
    display: flex;
    gap: 15px;
}

.fig-tool {
    width: 14px;
    height: 14px;
    background: #444;
    border-radius: 2px;
}

.fig-main {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.fig-sidebar {
    width: 200px;
    background: #2c2c2c;
    border-right: 1px solid #444;
    padding: 15px;
}

.fig-canvas {
    flex: 1;
    background: #1e1e1e;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fig-artboard {
    width: 90%;
    height: 90%;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 2px;
}

.fig-props {
    width: 200px;
    background: #2c2c2c;
    border-left: 1px solid #444;
}

.fig-layer {
    height: 8px;
    background: #444;
    border-radius: 2px;
    margin-bottom: 8px;
    width: 80%;
}

.fig-layer.active {
    background: var(--blue);
    width: 60%;
}

/* FAQ ANIMATION */
.faq-card.active .faq-q svg {
    transform: rotate(180deg);
}

.faq-q svg {
    transition: transform 0.3s;
}

/* PREMIUM HOSTING ADDITIONAL */
.host-features-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.host-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--g5);
}

.host-card.featured .host-features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.val-check {
    color: var(--blue);
    font-weight: 800;
}

.host-card.featured .val-check {
    color: white;
}

/* WIREFRAME 2.0 */
.wf-container {
    perspective: 1000px;
    padding: 20px;
}

.wf-wrap {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--bdr);
    box-shadow: 0 40px 100px rgba(13, 15, 45, 0.12);
    overflow: hidden;
    transform: rotateX(2deg) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wf-wrap:hover {
    transform: rotateX(0) rotateY(0) scale(1.02);
}

.wf-browser-bar {
    height: 50px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 10px;
}

.wf-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.wf-dot.red {
    background: #ff5f57;
}

.wf-dot.yellow {
    background: #febc2e;
}

.wf-dot.green {
    background: #28c840;
}

.wf-body {
    padding: 32px;
}

.wf-sidebar {
    width: 60px;
    height: 200px;
    background: #f1f5f9;
    border-radius: 12px;
    margin-bottom: 20px;
}

.wf-main-content {
    flex: 1;
}

.wf-rect {
    background: #f1f5f9;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.wf-rect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    animation: sweep 2.5s infinite;
}

/* HOSTING PROFESSIONAL */
.host-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.host-card {
    background: white;
    border-radius: 24px;
    padding: 56px 40px;
    border: 1px solid var(--bdr);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
}

.host-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(13, 15, 45, 0.1);
    border-color: var(--blue);
}

.host-card.featured {
    background: var(--navy);
    color: white;
    border: none;
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(13, 15, 45, 0.25);
}

.host-card.featured .host-p {
    color: white;
}

.host-card.featured .host-p span {
    color: rgba(255, 255, 255, 0.4);
}

.host-card.featured .icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.host-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.host-p {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin: 24px 0;
    letter-spacing: -1px;
}

.host-p span {
    font-size: 16px;
    color: var(--g4);
    font-weight: 500;
}

.host-list {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.host-list li {
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--g5);
}

.host-card.featured .host-list li {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ MODERN */
.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-card.active {
    border-color: var(--blue);
    box-shadow: 0 10px 30px rgba(26, 26, 255, 0.05);
}

.faq-q {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.faq-a {
    padding: 0 30px 24px;
    color: var(--g5);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid transparent;
    display: none;
}

.faq-card.active .faq-a {
    display: block;
    border-top-color: var(--g2);
}

/* PRICING COMPARISON */
.comp-table-wrap {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--bdr);
    overflow-x: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.comp-table th,
.comp-table td {
    padding: 24px;
    border-bottom: 1px solid var(--g2);
    text-align: center;
}

.comp-table th {
    background: #f8f9fc;
    font-size: 13px;
    font-weight: 800;
    color: var(--g4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-table th.featured {
    background: var(--blue-l);
    color: var(--blue);
}

.comp-table td:first-child,
.comp-table th:first-child {
    text-align: left;
    padding-left: 32px;
    width: 280px;
}

.comp-table td {
    font-size: 15px;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table .row-title {
    font-weight: 700;
    color: var(--navy);
}

.price-box {
    display: block;
    margin-top: 10px;
}

.price-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
}

.price-tag {
    font-size: 14px;
    color: var(--g4);
}

/* DIGITAL PRODUCTS */
.dp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dp-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bdr);
    transition: all 0.2s;
}

.dp-card:hover {
    border-color: var(--blue);
    transform: scale(1.02);
}

.dp-img {
    height: 160px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.dp-info {
    padding: 15px;
}

.dp-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
}

.dp-price {
    color: var(--blue);
    font-weight: 800;
}

.footer {
    background: #ffffff;
    margin-top: 24px;
    border-top: 1px solid var(--bdr);
    color: var(--navy);
}

.footer-blue-bar {
    height: 4px;
    background: var(--blue);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.f-brand-txt {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
}

.f-logo-wrap {
    margin-bottom: 15px;
}

.f-logo-wrap img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.f-tag {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.f-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 10px;
    transition: color .2s;
}

.f-contact a:hover {
    color: var(--blue);
}

.f-ct {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.f-lnks {
    list-style: none;
}

.f-lnks li {
    margin-bottom: 12px;
}

.f-lnks a {
    color: var(--g5);
    font-size: 15px;
    transition: color .2s;
    font-weight: 500;
}

.f-lnks a:hover {
    color: var(--blue);
}

.f-trust-p {
    font-size: 13px;
    color: var(--g5);
    margin-bottom: 15px;
}

.f-badge {
    background: var(--bg);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    border: 1px solid var(--bdr);
}

.f-badge span {
    font-size: 12px;
    margin-left: 6px;
    font-weight: 700;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    color: var(--g4);
    transition: color 0.3s, transform 0.3s;
}

.f-socials a:hover {
    color: var(--blue);
    transform: translateY(-2px);
}

.footer-bot {
    border-top: 1px solid var(--bdr);
    padding: 20px 24px;
    background: var(--bg);
}

.bot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-inner p {
    font-size: 14px;
    color: var(--g5);
    margin: 0;
}

.footer-bot-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bot-right a {
    color: var(--g5);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-bot-right a:hover {
    color: var(--blue);
}

/* HABERLER SECTION */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.n-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--bdr);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.n-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
}

.n-img {
    height: 180px;
    background: var(--blue-ll);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.n-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.n-date {
    font-size: 12px;
    color: var(--g4);
    font-weight: 700;
    margin-bottom: 8px;
}

.n-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.n-desc {
    font-size: 14px;
    color: var(--g5);
    margin-bottom: 20px;
    flex: 1;
}

.n-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* TURK TELEKOM STYLE COMPONENTS (2026 SALES UI) */
.tt-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.tt-promo-banner {
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-items: stretch;
}

.tt-promo-banner.full {
    grid-column: 1 / -1;
}

.tt-promo-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tt-promo-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28c840;
    margin-right: 8px;
}

.tt-promo-badge.green .pulse-dot {
    background: #0ea5e9;
}

.tt-promo-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.tt-promo-content p {
    font-size: 14px;
    color: var(--g5);
    margin-bottom: 24px;
    line-height: 1.6;
}

.tt-btn-dark {
    background: var(--navy);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    transition: all 0.3s;
}

.tt-btn-dark:hover {
    background: var(--blue);
}

.tt-promo-img {
    width: 40%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TT STYLE TABS */
.tt-tabs {
    display: flex;
    background: #e2e8f0;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.tt-tabs.dark {
    background: rgba(255, 255, 255, 0.1);
    border: rgba(255, 255, 255, 0.1);
    max-width: 100%;
    margin-bottom: 0;
}

.tt-tab {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 16px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.tt-tabs.dark .tt-tab {
    color: rgba(255, 255, 255, 0.6);
}

.tt-tab.active {
    background: #fff;
    color: var(--navy);
    border-bottom: 3px solid #f97316;
}

.tt-tabs.dark .tt-tab.active {
    background: #fff;
    color: var(--navy);
    border-bottom-color: #f97316;
}

/* TT PRICING GRID */
.tt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tt-price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.tt-price-card:hover {
    transform: translateY(-5px);
}

.tt-card-top {
    padding: 40px 30px 30px;
    color: #fff;
    position: relative;
    text-align: center;
}

.green-grad {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.green-grad-2 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blue-grad {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.tt-badge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tt-tarif {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.9;
}

.tt-big-val {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.tt-sub-vals {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    gap: 15px;
}

.tt-sub-vals div {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tt-sub-vals div:last-child {
    border: none;
}

.tt-card-bottom {
    padding: 30px;
    background: #fff;
}

.tt-extra-f {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--g2);
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tt-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tt-price-info {
    display: flex;
    flex-direction: column;
}

.tt-taahhut {
    font-size: 13px;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 5px;
}

.tt-price-fig {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}

.tt-price-fig span {
    font-size: 18px;
    margin-left: 2px;
}

.tt-per {
    font-size: 12px;
    font-weight: 600;
    color: var(--g4);
    margin-top: 5px;
}

.tt-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.tt-circle-btn:hover {
    background: var(--navy);
    color: #fff;
}

/* BLUE SECTION (DİJİTAL ÜRÜNLER) */
.tt-blue-section {
    background: #0056b3;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 24px;
}

.tt-blue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.tt-blue-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.tt-blue-info {
    width: 350px;
    flex-shrink: 0;
}

.tt-blue-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tt-blue-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.tt-arrows {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.tt-circ-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.tt-circ-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tt-btn-white {
    background: #fff;
    color: #0056b3;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s;
}

.tt-star-shape {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.tt-blue-cards {
    display: flex;
    gap: 24px;
    flex: 1;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.tt-blue-cards::-webkit-scrollbar {
    display: none;
}

.tt-w-card {
    background: #fff;
    border-radius: 16px;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--navy);
    display: flex;
    flex-direction: column;
}

.tt-w-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-w-img.w-bot {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
}

.tt-w-img.w-crm {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.tt-w-img.w-theme {
    background: linear-gradient(135deg, #fef9c3, #fef3c7);
    color: #d97706;
}

.tt-w-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tt-w-content h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.tt-w-content p {
    font-size: 14px;
    color: var(--g5);
    margin-bottom: 24px;
    line-height: 1.5;
    flex: 1;
}

.tt-w-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--g2);
    padding-top: 15px;
}

.tt-w-meta small {
    color: var(--g4);
    font-weight: 700;
    font-size: 12px;
}

.tt-w-meta strong {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
}

.tt-link {
    color: #0ea5e9;
    font-weight: 800;
    font-size: 15px;
}

@media (max-width: 960px) {

    /* HEADER MOBILE */
    .h-search-compact,
    .h-desktop-only,
    .user-dropdown {
        display: none !important;
    }

    .h-nav {
        display: none;
    }

    .h-mobile-btn {
        display: block;
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        /* Modaldan yukarıda kalması için */
    }

    .header-main:not(.dark-nav) .h-mobile-btn,
    .header-main.scrolled .h-mobile-btn {
        color: var(--navy);
    }

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

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

    .h-actions {
        gap: 10px;
    }

    /* Yeni Mobil Menü Full Screen Stilleri */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 80px 24px 40px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        transform: translateY(-20px);
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mob-menu-link {
        font-size: 22px;
        font-weight: 800;
        color: var(--navy);
        padding: 15px 0;
        border-bottom: 1px solid var(--bdr);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mob-menu-link:hover {
        color: var(--blue);
    }

    .mob-sub-menu {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .mob-sub-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 0;
        color: var(--g5);
        font-weight: 600;
    }

    .mob-sub-link svg {
        color: var(--blue);
    }

    .mob-menu-actions {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mob-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
        border-radius: 8px;
        font-weight: 800;
    }

    .mob-btn-dark {
        background: var(--navy);
        color: white;
    }

    .mob-btn-blue {
        background: var(--blue-ll);
        color: var(--blue);
    }

    /* HERO MOBILE */
    .hero-slider {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .slide-content {
        padding: 0 15px;
        text-align: center;
    }

    .slide-pill {
        margin-top: 15px;
    }

    .slide h1 {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .slide-desc {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .slide-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .h-hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .h-hero-vis {
        display: none;
    }

    .slide-content>div:last-child {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .slider-nav {
        bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* GRID & LAYOUT MOBILE */
    .sector-grid,
    .host-grid,
    .dp-grid,
    .comp-table-wrap,
    .faq-grid,
    .tt-promo-grid,
    .tt-pricing-grid,
    .tt-blue-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .tt-promo-banner {
        flex-direction: column;
    }

    .tt-promo-content {
        padding: 24px;
        text-align: center;
        align-items: center;
        flex: none;
    }

    .tt-promo-img {
        width: 100%;
        min-height: 180px;
        height: auto;
        padding: 20px 0;
    }

    .tt-tabs {
        flex-wrap: wrap;
    }

    .tt-blue-section {
        margin: 0;
        border-radius: 0;
    }

    .tt-blue-info {
        width: 100%;
        text-align: center;
    }

    .tt-arrows {
        justify-content: center;
    }

    /* UX/UI SPLIT */
    #uxui>div {
        flex-direction: column;
        text-align: center;
        gap: 40px !important;
    }

    #uxui>div>div:first-child div {
        justify-content: center;
    }

    /* TABLE */
    .comp-table-wrap {
        overflow-x: auto;
        border-radius: 12px;
    }

    .comp-table th,
    .comp-table td {
        padding: 15px 10px;
        font-size: 13px;
    }

    .comp-table td:first-child,
    .comp-table th:first-child {
        min-width: 150px;
        padding-left: 15px;
    }

    /* HOST CARD MOBILE */
    .host-card.featured {
        transform: scale(1);
    }

    /* FOOTER MOBILE */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .f-contact a {
        justify-content: center;
    }

    .f-logo-wrap {
        margin-bottom: 20px;
    }

    .footer-bot>div {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bot-right {
        justify-content: center;
    }
}

/* HERO 2 COLUMN WIREFRAME STYLES */
.h-hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.h-hero-txt {
    flex: 1;
}

.h-hero-vis {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.hero-wireframe-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--active-color);
}

.slide.active .hero-wireframe-box {
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }
}

/* Base mobile hiding for desktop layout */
@media (min-width: 961px) {

    .h-mobile-btn,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ========================================================= */
/* WOOCOMMERCE DASHBOARD OVERHAUL (PREMIUM UX/UI)
/* ========================================================= */

.woocommerce-account .page-container {
    max-width: 1300px !important;
}

.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 24px 12px;
    border: 1px solid var(--bdr);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 5px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--g5);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--blue-l);
    color: var(--navy);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--blue);
    color: white;
    box-shadow: 0 6px 15px rgba(26, 26, 255, 0.2);
}

/* Main Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid var(--bdr);
    min-width: 0;
}

.woocommerce-MyAccount-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bdr);
}

/* Tables in Dashboard */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content table th {
    text-align: left;
    padding: 16px 20px;
    background: #f8f9fa;
    color: var(--g4);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 8px 8px 0 0;
}

.woocommerce-MyAccount-content table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--g2);
    font-size: 15px;
    color: var(--text);
    vertical-align: middle;
}

.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none;
}

/* Fixed Buttons in Dashboard */
.woocommerce-MyAccount-content .button,
.woocommerce-Button.button,
.button.view {
    background: var(--blue) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    text-decoration: none;
    font-size: 15px;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-Button.button:hover,
.button.view:hover {
    background: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--bdr);
    background: #f8f9fa;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: all 0.2s;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px var(--blue-l);
}

.woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

/* Responsive Dashboard */
@media (max-width: 960px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 24px;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
        padding: 16px;
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 5px;
        /* Hides scrollbar in webkit */
        scrollbar-width: none;
    }

    .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        display: none;
    }

    .woocommerce-MyAccount-navigation ul li {
        margin: 0;
    }

    .woocommerce-MyAccount-navigation ul li a {
        white-space: nowrap;
        padding: 10px 16px;
    }

    .woocommerce-MyAccount-content {
        padding: 24px 20px;
        width: 100%;
    }

    /* Responsive Table Settings */
    .woocommerce-MyAccount-content table,
    .woocommerce-MyAccount-content thead,
    .woocommerce-MyAccount-content tbody,
    .woocommerce-MyAccount-content th,
    .woocommerce-MyAccount-content td,
    .woocommerce-MyAccount-content tr {
        display: block;
    }

    .woocommerce-MyAccount-content table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .woocommerce-MyAccount-content table tr {
        border: 1px solid var(--bdr);
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
    }

    .woocommerce-MyAccount-content table td {
        border: none;
        border-bottom: 1px solid var(--g2);
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    .woocommerce-MyAccount-content table td:before {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 700;
        color: var(--navy);
        content: attr(data-title);
    }
}